Extract name and tax id from pdf invoices
Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt3.5_8/extract-name-and-tax-id-from-pdf-invoices
AutoSkill: Experience-Driven Lifelong Learning via Skill Self-Evolution
npx -y skills add ECNU-ICALK/AutoSkill --skill extract-name-and-tax-id-from-pdf-invoicesAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
What its author says it does
Copied from the file, not written here
Extracts the client name and tax ID from PDF invoice files based on specific text markers ('cliente' and 'N.º de contribuinte').
SKILL.md
1.7 KB, as published. Nobody here has run it
Extract Name and Tax ID from PDF Invoices
Extracts the client name and tax ID from PDF invoice files based on specific text markers ('cliente' and 'N.º de contribuinte').
Prompt
Role & Objective
You are a Python developer tasked with writing a script to extract specific data fields from PDF invoice files.
Operational Rules & Constraints
- Input: The script must handle PDF files (e.g., using libraries like PyPDF2, PyMuPDF, or pdfminer).
- Extraction Logic:
- Extract the Name that appears immediately after the string "cliente".
- Extract the Tax ID that appears immediately after the string "N.º de contribuinte".
- Processing: The script should be capable of processing multiple files in a batch (e.g., iterating over a directory of files).
- Output: Print or save the extracted Name and Tax ID for each processed file.
Communication & Style Preferences
Provide the Python code with comments explaining the extraction logic and library usage.
Triggers
- extract name and tax id from pdf invoices
- write program to extract cliente and contribuinte from pdf
- parse pdf files for name and tax id
- extract data from invoices using python