diff --git a/any_parser/any_parser.py b/any_parser/any_parser.py index bf06a45..00ac450 100644 --- a/any_parser/any_parser.py +++ b/any_parser/any_parser.py @@ -189,7 +189,7 @@ def extract_key_value( else: return f"Error: {response.status_code} {response.text}", None - def resume_extract( + def extract_resume_key_value( self, file_path: str, ) -> Tuple[str, str]: diff --git a/examples/extract_resume_key_value.ipynb b/examples/extract_resume_key_value.ipynb index 0375ebc..df76300 100644 --- a/examples/extract_resume_key_value.ipynb +++ b/examples/extract_resume_key_value.ipynb @@ -37,7 +37,7 @@ "outputs": [], "source": [ "file_path = \"./sample_data/resume_1.pdf\"\n", - "json_result = ap.resume_extract(file_path)" + "json_result = ap.extract_resume_key_value(file_path)" ] }, {