Initial commit
This commit is contained in:
11
extract/templates/one_page_ru.py
Normal file
11
extract/templates/one_page_ru.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Any, Dict
|
||||
|
||||
from tg_resume_db.extract.templates.one_page import parse_resume as _parse
|
||||
|
||||
|
||||
def parse_resume(clean_text: str, sections: Dict[str, str] | None = None) -> Dict[str, Any]:
|
||||
out = _parse(clean_text, sections)
|
||||
out["parse_method"] = "one_page_ru"
|
||||
return out
|
||||
Reference in New Issue
Block a user