pdfx
Extract text, metadata and references (pdf, url, doi, arxiv) from PDF. Optionally download all referenced PDFs.
File Explorer
Download Latest Version (.zip)- lint-and-test.yml
- publish-to-pypi.yml
- settings.json
- __init__.py
- xmp.py
- __init__.py
- backends.py
- cli.py
- colorprint.py
- downloader.py
- exceptions.py
- extractor.py
- threadpool.py
- i14doc1.pdf
- i14doc2.pdf
- invalid.pdf
- valid.pdf
- test_cli.py
- test_pdfx.py
- .gitignore
- CONTRIBUTORS
- LICENSE
- Makefile
- MANIFEST.in
- README.md
- requirements.txt
- requirements_dev.txt
- setup.cfg
- setup.py
# Installation Guide
git clone https://github.com/metachris/pdfx
Downloads the entire project code from GitHub to your computer.
cd pdfx
Moves into the project folder you just downloaded.
2. Python
Easy Recommendedpython3 -m venv
Runs the Python script (or module).
pip install -e .
Installs the Python libraries listed in requirements.txt (or similar).
pip install -r requirements_dev.txt
Installs the Python libraries listed in requirements.txt (or similar).
Pulled directly from this repo's README.
3. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make test
Compiles the code based on the generated build configuration to produce an executable.
make lint
Compiles the code based on the generated build configuration to produce an executable.
make check
Compiles the code based on the generated build configuration to produce an executable.
make format
Compiles the code based on the generated build configuration to produce an executable.
Pulled directly from this repo's README.
