├── .gitignore ├── .travis.yml ├── CHANGES.txt ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── appveyor.yml ├── dev_requirements.txt ├── dist ├── pdfquery-0.1.0.tar.gz ├── pdfquery-0.1.1.tar.gz ├── pdfquery-0.1.2.tar.gz ├── pdfquery-0.1.3.tar.gz ├── pdfquery-0.2.1.tar.gz ├── pdfquery-0.2.2.tar.gz ├── pdfquery-0.2.3.tar.gz ├── pdfquery-0.2.4.tar.gz ├── pdfquery-0.2.5.tar.gz ├── pdfquery-0.2.6.tar.gz ├── pdfquery-0.2.7.tar.gz ├── pdfquery-0.2.tar.gz ├── pdfquery-0.3.0.tar.gz ├── pdfquery-0.3.1.tar.gz ├── pdfquery-0.4.0.tar.gz ├── pdfquery-0.4.1.tar.gz ├── pdfquery-0.4.2.tar.gz └── pdfquery-0.4.3.tar.gz ├── pdfquery.egg-info └── pbr.json ├── pdfquery ├── __init__.py ├── cache.py ├── pdfquery.py └── pdftranslator.py ├── requirements_py2.txt ├── requirements_py3.txt ├── setup.py └── tests ├── __init__.py ├── samples ├── IRS_1040A.pdf ├── bug11.pdf ├── bug15.pdf ├── bug17.pdf ├── bug18.pdf ├── bug28.pdf ├── bug37.pdf ├── bug39.pdf └── bug42.pdf ├── saved_output ├── IRS_1040A_output.xml └── bug28_output.xml ├── test_main.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/README.rst -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/appveyor.yml -------------------------------------------------------------------------------- /dev_requirements.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | -------------------------------------------------------------------------------- /dist/pdfquery-0.1.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/dist/pdfquery-0.1.0.tar.gz -------------------------------------------------------------------------------- /dist/pdfquery-0.1.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/dist/pdfquery-0.1.1.tar.gz -------------------------------------------------------------------------------- /dist/pdfquery-0.1.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/dist/pdfquery-0.1.2.tar.gz -------------------------------------------------------------------------------- /dist/pdfquery-0.1.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/dist/pdfquery-0.1.3.tar.gz -------------------------------------------------------------------------------- /dist/pdfquery-0.2.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/dist/pdfquery-0.2.1.tar.gz -------------------------------------------------------------------------------- /dist/pdfquery-0.2.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/dist/pdfquery-0.2.2.tar.gz -------------------------------------------------------------------------------- /dist/pdfquery-0.2.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/dist/pdfquery-0.2.3.tar.gz -------------------------------------------------------------------------------- /dist/pdfquery-0.2.4.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/dist/pdfquery-0.2.4.tar.gz -------------------------------------------------------------------------------- /dist/pdfquery-0.2.5.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/dist/pdfquery-0.2.5.tar.gz -------------------------------------------------------------------------------- /dist/pdfquery-0.2.6.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/dist/pdfquery-0.2.6.tar.gz -------------------------------------------------------------------------------- /dist/pdfquery-0.2.7.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/dist/pdfquery-0.2.7.tar.gz -------------------------------------------------------------------------------- /dist/pdfquery-0.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/dist/pdfquery-0.2.tar.gz -------------------------------------------------------------------------------- /dist/pdfquery-0.3.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/dist/pdfquery-0.3.0.tar.gz -------------------------------------------------------------------------------- /dist/pdfquery-0.3.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/dist/pdfquery-0.3.1.tar.gz -------------------------------------------------------------------------------- /dist/pdfquery-0.4.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/dist/pdfquery-0.4.0.tar.gz -------------------------------------------------------------------------------- /dist/pdfquery-0.4.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/dist/pdfquery-0.4.1.tar.gz -------------------------------------------------------------------------------- /dist/pdfquery-0.4.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/dist/pdfquery-0.4.2.tar.gz -------------------------------------------------------------------------------- /dist/pdfquery-0.4.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/dist/pdfquery-0.4.3.tar.gz -------------------------------------------------------------------------------- /pdfquery.egg-info/pbr.json: -------------------------------------------------------------------------------- 1 | {"is_release": false, "git_version": "6e7907c"} -------------------------------------------------------------------------------- /pdfquery/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/pdfquery/__init__.py -------------------------------------------------------------------------------- /pdfquery/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/pdfquery/cache.py -------------------------------------------------------------------------------- /pdfquery/pdfquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/pdfquery/pdfquery.py -------------------------------------------------------------------------------- /pdfquery/pdftranslator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/pdfquery/pdftranslator.py -------------------------------------------------------------------------------- /requirements_py2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/requirements_py2.txt -------------------------------------------------------------------------------- /requirements_py3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/requirements_py3.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/samples/IRS_1040A.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/tests/samples/IRS_1040A.pdf -------------------------------------------------------------------------------- /tests/samples/bug11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/tests/samples/bug11.pdf -------------------------------------------------------------------------------- /tests/samples/bug15.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/tests/samples/bug15.pdf -------------------------------------------------------------------------------- /tests/samples/bug17.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/tests/samples/bug17.pdf -------------------------------------------------------------------------------- /tests/samples/bug18.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/tests/samples/bug18.pdf -------------------------------------------------------------------------------- /tests/samples/bug28.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/tests/samples/bug28.pdf -------------------------------------------------------------------------------- /tests/samples/bug37.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/tests/samples/bug37.pdf -------------------------------------------------------------------------------- /tests/samples/bug39.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/tests/samples/bug39.pdf -------------------------------------------------------------------------------- /tests/samples/bug42.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/tests/samples/bug42.pdf -------------------------------------------------------------------------------- /tests/saved_output/IRS_1040A_output.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/tests/saved_output/IRS_1040A_output.xml -------------------------------------------------------------------------------- /tests/saved_output/bug28_output.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/tests/saved_output/bug28_output.xml -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/tests/test_main.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcushman/pdfquery/HEAD/tests/utils.py --------------------------------------------------------------------------------