├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.rst ├── docs ├── Makefile ├── build │ ├── doctrees │ │ ├── changelog.doctree │ │ ├── environment.pickle │ │ ├── functions.doctree │ │ ├── index.doctree │ │ ├── installation.doctree │ │ ├── multiple.doctree │ │ ├── overview.doctree │ │ ├── packing.doctree │ │ ├── quickstart.doctree │ │ └── specification.doctree │ └── html │ │ ├── .buildinfo │ │ ├── _images │ │ ├── example_plot.png │ │ ├── example_plot2.png │ │ ├── excel_data.png │ │ ├── multi_page.png │ │ ├── notepad_title.png │ │ ├── packing_plot.png │ │ ├── pickle_1.png │ │ ├── pickle_2.png │ │ ├── pickle_3.png │ │ └── venn-diagram2.svg │ │ ├── _sources │ │ ├── changelog.rst.txt │ │ ├── functions.rst.txt │ │ ├── index.rst.txt │ │ ├── installation.rst.txt │ │ ├── multiple.rst.txt │ │ ├── overview.rst.txt │ │ ├── packing.rst.txt │ │ ├── quickstart.rst.txt │ │ └── specification.rst.txt │ │ ├── _static │ │ ├── basic.css │ │ ├── css │ │ │ ├── badge_only.css │ │ │ ├── fonts │ │ │ │ ├── Roboto-Slab-Bold.woff │ │ │ │ ├── Roboto-Slab-Bold.woff2 │ │ │ │ ├── Roboto-Slab-Regular.woff │ │ │ │ ├── Roboto-Slab-Regular.woff2 │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ ├── lato-bold-italic.woff │ │ │ │ ├── lato-bold-italic.woff2 │ │ │ │ ├── lato-bold.woff │ │ │ │ ├── lato-bold.woff2 │ │ │ │ ├── lato-normal-italic.woff │ │ │ │ ├── lato-normal-italic.woff2 │ │ │ │ ├── lato-normal.woff │ │ │ │ └── lato-normal.woff2 │ │ │ └── theme.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── example.pdf │ │ ├── example_plot.png │ │ ├── example_plot2.png │ │ ├── excel_data.png │ │ ├── file.png │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── Lato │ │ │ │ ├── lato-bold.eot │ │ │ │ ├── lato-bold.ttf │ │ │ │ ├── lato-bold.woff │ │ │ │ ├── lato-bold.woff2 │ │ │ │ ├── lato-bolditalic.eot │ │ │ │ ├── lato-bolditalic.ttf │ │ │ │ ├── lato-bolditalic.woff │ │ │ │ ├── lato-bolditalic.woff2 │ │ │ │ ├── lato-italic.eot │ │ │ │ ├── lato-italic.ttf │ │ │ │ ├── lato-italic.woff │ │ │ │ ├── lato-italic.woff2 │ │ │ │ ├── lato-regular.eot │ │ │ │ ├── lato-regular.ttf │ │ │ │ ├── lato-regular.woff │ │ │ │ └── lato-regular.woff2 │ │ │ ├── Roboto-Slab-Bold.woff │ │ │ ├── Roboto-Slab-Bold.woff2 │ │ │ ├── Roboto-Slab-Light.woff │ │ │ ├── Roboto-Slab-Light.woff2 │ │ │ ├── Roboto-Slab-Regular.woff │ │ │ ├── Roboto-Slab-Regular.woff2 │ │ │ ├── Roboto-Slab-Thin.woff │ │ │ ├── Roboto-Slab-Thin.woff2 │ │ │ ├── RobotoSlab │ │ │ │ ├── roboto-slab-v7-bold.eot │ │ │ │ ├── roboto-slab-v7-bold.ttf │ │ │ │ ├── roboto-slab-v7-bold.woff │ │ │ │ ├── roboto-slab-v7-bold.woff2 │ │ │ │ ├── roboto-slab-v7-regular.eot │ │ │ │ ├── roboto-slab-v7-regular.ttf │ │ │ │ ├── roboto-slab-v7-regular.woff │ │ │ │ └── roboto-slab-v7-regular.woff2 │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── lato-bold-italic.woff │ │ │ ├── lato-bold-italic.woff2 │ │ │ ├── lato-bold.woff │ │ │ ├── lato-bold.woff2 │ │ │ ├── lato-normal-italic.woff │ │ │ ├── lato-normal-italic.woff2 │ │ │ ├── lato-normal.woff │ │ │ └── lato-normal.woff2 │ │ ├── jquery-3.4.1.js │ │ ├── jquery.js │ │ ├── js │ │ │ ├── badge_only.js │ │ │ ├── html5shiv-printshiv.min.js │ │ │ ├── html5shiv.min.js │ │ │ ├── modernizr.min.js │ │ │ └── theme.js │ │ ├── language_data.js │ │ ├── minus.png │ │ ├── multi_page.png │ │ ├── notepad_title.png │ │ ├── packing_plot.png │ │ ├── pickle_1.png │ │ ├── pickle_2.png │ │ ├── pickle_3.png │ │ ├── plot.png │ │ ├── plot2.png │ │ ├── plot_pdf.png │ │ ├── plot_pdf2.png │ │ ├── plot_pdf3.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── script.png │ │ ├── searchtools.js │ │ ├── underscore-1.3.1.js │ │ ├── underscore.js │ │ └── venn-diagram2.svg │ │ ├── changelog.html │ │ ├── functions.html │ │ ├── genindex.html │ │ ├── index.html │ │ ├── installation.html │ │ ├── multiple.html │ │ ├── objects.inv │ │ ├── overview.html │ │ ├── packing.html │ │ ├── quickstart.html │ │ ├── search.html │ │ ├── searchindex.js │ │ └── specification.html ├── legacy │ ├── classes.rst │ ├── functions.rst │ └── quickstart.rst ├── make.bat └── source │ ├── _static │ ├── example.pdf │ ├── example_plot.png │ ├── example_plot2.png │ ├── excel_data.png │ ├── multi_page.png │ ├── notepad_title.png │ ├── packing_plot.png │ ├── pickle_1.png │ ├── pickle_2.png │ ├── pickle_3.png │ ├── plot.png │ ├── plot2.png │ ├── plot_pdf.png │ ├── plot_pdf2.png │ ├── plot_pdf3.png │ ├── script.png │ └── venn-diagram2.svg │ ├── changelog.rst │ ├── conf.py │ ├── functions.rst │ ├── index.rst │ ├── installation.rst │ ├── multiple.rst │ ├── overview.rst │ ├── packing.rst │ ├── quickstart.rst │ └── specification.rst ├── examples.zip ├── examples ├── 1. simple │ ├── 1. simple.zip │ └── example.py ├── 2. packing │ ├── 2. packing.zip │ ├── data.xlsx │ ├── packing.py │ └── title.txt ├── 3. unpacking │ ├── 3. unpacking.zip │ ├── README.txt │ └── unpacking.pdf ├── 4. multiple plots - pickle │ ├── 4. multiple plots - pickle.zip │ └── pickling.py ├── 5. multiple plots - pages │ ├── 5. multiple plots - pages.zip │ └── multi-page.py └── 6. fix pypdf │ ├── 6. fix pypdf.zip │ ├── fix_pypdf.py │ └── severed_pypdf.pdf ├── logo ├── adobe-pdf-icon.svg ├── pypdfplot.svg └── python-logo-inkscape.svg ├── pypdfplot ├── __init__.py ├── _version.py ├── backend │ ├── __init__.py │ ├── backend_pypdf.py │ └── unpack.py ├── classes.py ├── cli.py └── functions.py ├── setup.py └── specification ├── 5002.EPSF_Spec.pdf ├── Filters and Reusable Streams.pdf ├── ISO_32000_2_2017_EN.pdf.pdf ├── PDF32000_2008.pdf ├── PDFReference.pdf └── js_api_reference.pdf /.gitattributes: -------------------------------------------------------------------------------- 1 | 2 | eol=lf 3 | *.pdf binary -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/build/doctrees/changelog.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/doctrees/changelog.doctree -------------------------------------------------------------------------------- /docs/build/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/build/doctrees/functions.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/doctrees/functions.doctree -------------------------------------------------------------------------------- /docs/build/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/doctrees/index.doctree -------------------------------------------------------------------------------- /docs/build/doctrees/installation.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/doctrees/installation.doctree -------------------------------------------------------------------------------- /docs/build/doctrees/multiple.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/doctrees/multiple.doctree -------------------------------------------------------------------------------- /docs/build/doctrees/overview.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/doctrees/overview.doctree -------------------------------------------------------------------------------- /docs/build/doctrees/packing.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/doctrees/packing.doctree -------------------------------------------------------------------------------- /docs/build/doctrees/quickstart.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/doctrees/quickstart.doctree -------------------------------------------------------------------------------- /docs/build/doctrees/specification.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/doctrees/specification.doctree -------------------------------------------------------------------------------- /docs/build/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/.buildinfo -------------------------------------------------------------------------------- /docs/build/html/_images/example_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_images/example_plot.png -------------------------------------------------------------------------------- /docs/build/html/_images/example_plot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_images/example_plot2.png -------------------------------------------------------------------------------- /docs/build/html/_images/excel_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_images/excel_data.png -------------------------------------------------------------------------------- /docs/build/html/_images/multi_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_images/multi_page.png -------------------------------------------------------------------------------- /docs/build/html/_images/notepad_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_images/notepad_title.png -------------------------------------------------------------------------------- /docs/build/html/_images/packing_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_images/packing_plot.png -------------------------------------------------------------------------------- /docs/build/html/_images/pickle_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_images/pickle_1.png -------------------------------------------------------------------------------- /docs/build/html/_images/pickle_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_images/pickle_2.png -------------------------------------------------------------------------------- /docs/build/html/_images/pickle_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_images/pickle_3.png -------------------------------------------------------------------------------- /docs/build/html/_images/venn-diagram2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_images/venn-diagram2.svg -------------------------------------------------------------------------------- /docs/build/html/_sources/changelog.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_sources/changelog.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/functions.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_sources/functions.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/installation.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_sources/installation.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/multiple.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_sources/multiple.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/overview.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_sources/overview.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/packing.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_sources/packing.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/quickstart.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_sources/quickstart.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/specification.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_sources/specification.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/basic.css -------------------------------------------------------------------------------- /docs/build/html/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/css/badge_only.css -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/Roboto-Slab-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/css/fonts/Roboto-Slab-Bold.woff -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/Roboto-Slab-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/css/fonts/Roboto-Slab-Bold.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/Roboto-Slab-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/css/fonts/Roboto-Slab-Regular.woff -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/Roboto-Slab-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/css/fonts/Roboto-Slab-Regular.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/css/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/css/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/css/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/css/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/css/fonts/lato-bold.woff -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/css/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/css/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/lato-normal-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/css/fonts/lato-normal-italic.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/css/fonts/lato-normal.woff -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/css/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/css/theme.css -------------------------------------------------------------------------------- /docs/build/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/build/html/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/build/html/_static/example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/example.pdf -------------------------------------------------------------------------------- /docs/build/html/_static/example_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/example_plot.png -------------------------------------------------------------------------------- /docs/build/html/_static/example_plot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/example_plot2.png -------------------------------------------------------------------------------- /docs/build/html/_static/excel_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/excel_data.png -------------------------------------------------------------------------------- /docs/build/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/file.png -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/Lato/lato-bold.eot -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/Lato/lato-bold.ttf -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/Lato/lato-bold.woff -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/Lato/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/Lato/lato-bolditalic.eot -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/Lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/Lato/lato-bolditalic.woff -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-bolditalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/Lato/lato-bolditalic.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/Lato/lato-italic.eot -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/Lato/lato-italic.ttf -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/Lato/lato-italic.woff -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/Lato/lato-italic.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/Lato/lato-regular.eot -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/Lato/lato-regular.ttf -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/Lato/lato-regular.woff -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/Lato/lato-regular.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Roboto-Slab-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/Roboto-Slab-Bold.woff -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Roboto-Slab-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/Roboto-Slab-Bold.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Roboto-Slab-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/Roboto-Slab-Light.woff -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Roboto-Slab-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/Roboto-Slab-Light.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Roboto-Slab-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/Roboto-Slab-Regular.woff -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Roboto-Slab-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/Roboto-Slab-Regular.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Roboto-Slab-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/Roboto-Slab-Thin.woff -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Roboto-Slab-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/Roboto-Slab-Thin.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/lato-bold.woff -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/lato-normal-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/lato-normal-italic.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/lato-normal.woff -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/jquery-3.4.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/jquery-3.4.1.js -------------------------------------------------------------------------------- /docs/build/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/jquery.js -------------------------------------------------------------------------------- /docs/build/html/_static/js/badge_only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/js/badge_only.js -------------------------------------------------------------------------------- /docs/build/html/_static/js/html5shiv-printshiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/js/html5shiv-printshiv.min.js -------------------------------------------------------------------------------- /docs/build/html/_static/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/js/html5shiv.min.js -------------------------------------------------------------------------------- /docs/build/html/_static/js/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/js/modernizr.min.js -------------------------------------------------------------------------------- /docs/build/html/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/js/theme.js -------------------------------------------------------------------------------- /docs/build/html/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/language_data.js -------------------------------------------------------------------------------- /docs/build/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/minus.png -------------------------------------------------------------------------------- /docs/build/html/_static/multi_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/multi_page.png -------------------------------------------------------------------------------- /docs/build/html/_static/notepad_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/notepad_title.png -------------------------------------------------------------------------------- /docs/build/html/_static/packing_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/packing_plot.png -------------------------------------------------------------------------------- /docs/build/html/_static/pickle_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/pickle_1.png -------------------------------------------------------------------------------- /docs/build/html/_static/pickle_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/pickle_2.png -------------------------------------------------------------------------------- /docs/build/html/_static/pickle_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/pickle_3.png -------------------------------------------------------------------------------- /docs/build/html/_static/plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/plot.png -------------------------------------------------------------------------------- /docs/build/html/_static/plot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/plot2.png -------------------------------------------------------------------------------- /docs/build/html/_static/plot_pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/plot_pdf.png -------------------------------------------------------------------------------- /docs/build/html/_static/plot_pdf2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/plot_pdf2.png -------------------------------------------------------------------------------- /docs/build/html/_static/plot_pdf3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/plot_pdf3.png -------------------------------------------------------------------------------- /docs/build/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/plus.png -------------------------------------------------------------------------------- /docs/build/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/build/html/_static/script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/script.png -------------------------------------------------------------------------------- /docs/build/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/build/html/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/build/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/underscore.js -------------------------------------------------------------------------------- /docs/build/html/_static/venn-diagram2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/_static/venn-diagram2.svg -------------------------------------------------------------------------------- /docs/build/html/changelog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/changelog.html -------------------------------------------------------------------------------- /docs/build/html/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/functions.html -------------------------------------------------------------------------------- /docs/build/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/genindex.html -------------------------------------------------------------------------------- /docs/build/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/index.html -------------------------------------------------------------------------------- /docs/build/html/installation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/installation.html -------------------------------------------------------------------------------- /docs/build/html/multiple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/multiple.html -------------------------------------------------------------------------------- /docs/build/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/objects.inv -------------------------------------------------------------------------------- /docs/build/html/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/overview.html -------------------------------------------------------------------------------- /docs/build/html/packing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/packing.html -------------------------------------------------------------------------------- /docs/build/html/quickstart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/quickstart.html -------------------------------------------------------------------------------- /docs/build/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/search.html -------------------------------------------------------------------------------- /docs/build/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/searchindex.js -------------------------------------------------------------------------------- /docs/build/html/specification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/build/html/specification.html -------------------------------------------------------------------------------- /docs/legacy/classes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/legacy/classes.rst -------------------------------------------------------------------------------- /docs/legacy/functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/legacy/functions.rst -------------------------------------------------------------------------------- /docs/legacy/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/legacy/quickstart.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_static/example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/source/_static/example.pdf -------------------------------------------------------------------------------- /docs/source/_static/example_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/source/_static/example_plot.png -------------------------------------------------------------------------------- /docs/source/_static/example_plot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/source/_static/example_plot2.png -------------------------------------------------------------------------------- /docs/source/_static/excel_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/source/_static/excel_data.png -------------------------------------------------------------------------------- /docs/source/_static/multi_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/source/_static/multi_page.png -------------------------------------------------------------------------------- /docs/source/_static/notepad_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/source/_static/notepad_title.png -------------------------------------------------------------------------------- /docs/source/_static/packing_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/source/_static/packing_plot.png -------------------------------------------------------------------------------- /docs/source/_static/pickle_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/source/_static/pickle_1.png -------------------------------------------------------------------------------- /docs/source/_static/pickle_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/source/_static/pickle_2.png -------------------------------------------------------------------------------- /docs/source/_static/pickle_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/source/_static/pickle_3.png -------------------------------------------------------------------------------- /docs/source/_static/plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/source/_static/plot.png -------------------------------------------------------------------------------- /docs/source/_static/plot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/source/_static/plot2.png -------------------------------------------------------------------------------- /docs/source/_static/plot_pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/source/_static/plot_pdf.png -------------------------------------------------------------------------------- /docs/source/_static/plot_pdf2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/source/_static/plot_pdf2.png -------------------------------------------------------------------------------- /docs/source/_static/plot_pdf3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/source/_static/plot_pdf3.png -------------------------------------------------------------------------------- /docs/source/_static/script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/source/_static/script.png -------------------------------------------------------------------------------- /docs/source/_static/venn-diagram2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/source/_static/venn-diagram2.svg -------------------------------------------------------------------------------- /docs/source/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/source/changelog.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/source/functions.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/source/multiple.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/source/multiple.rst -------------------------------------------------------------------------------- /docs/source/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/source/overview.rst -------------------------------------------------------------------------------- /docs/source/packing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/source/packing.rst -------------------------------------------------------------------------------- /docs/source/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/source/quickstart.rst -------------------------------------------------------------------------------- /docs/source/specification.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/docs/source/specification.rst -------------------------------------------------------------------------------- /examples.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/examples.zip -------------------------------------------------------------------------------- /examples/1. simple/1. simple.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/examples/1. simple/1. simple.zip -------------------------------------------------------------------------------- /examples/1. simple/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/examples/1. simple/example.py -------------------------------------------------------------------------------- /examples/2. packing/2. packing.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/examples/2. packing/2. packing.zip -------------------------------------------------------------------------------- /examples/2. packing/data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/examples/2. packing/data.xlsx -------------------------------------------------------------------------------- /examples/2. packing/packing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/examples/2. packing/packing.py -------------------------------------------------------------------------------- /examples/2. packing/title.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/examples/2. packing/title.txt -------------------------------------------------------------------------------- /examples/3. unpacking/3. unpacking.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/examples/3. unpacking/3. unpacking.zip -------------------------------------------------------------------------------- /examples/3. unpacking/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/examples/3. unpacking/README.txt -------------------------------------------------------------------------------- /examples/3. unpacking/unpacking.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/examples/3. unpacking/unpacking.pdf -------------------------------------------------------------------------------- /examples/4. multiple plots - pickle/4. multiple plots - pickle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/examples/4. multiple plots - pickle/4. multiple plots - pickle.zip -------------------------------------------------------------------------------- /examples/4. multiple plots - pickle/pickling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/examples/4. multiple plots - pickle/pickling.py -------------------------------------------------------------------------------- /examples/5. multiple plots - pages/5. multiple plots - pages.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/examples/5. multiple plots - pages/5. multiple plots - pages.zip -------------------------------------------------------------------------------- /examples/5. multiple plots - pages/multi-page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/examples/5. multiple plots - pages/multi-page.py -------------------------------------------------------------------------------- /examples/6. fix pypdf/6. fix pypdf.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/examples/6. fix pypdf/6. fix pypdf.zip -------------------------------------------------------------------------------- /examples/6. fix pypdf/fix_pypdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/examples/6. fix pypdf/fix_pypdf.py -------------------------------------------------------------------------------- /examples/6. fix pypdf/severed_pypdf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/examples/6. fix pypdf/severed_pypdf.pdf -------------------------------------------------------------------------------- /logo/adobe-pdf-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/logo/adobe-pdf-icon.svg -------------------------------------------------------------------------------- /logo/pypdfplot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/logo/pypdfplot.svg -------------------------------------------------------------------------------- /logo/python-logo-inkscape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/logo/python-logo-inkscape.svg -------------------------------------------------------------------------------- /pypdfplot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/pypdfplot/__init__.py -------------------------------------------------------------------------------- /pypdfplot/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.6.5' 2 | -------------------------------------------------------------------------------- /pypdfplot/backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/pypdfplot/backend/__init__.py -------------------------------------------------------------------------------- /pypdfplot/backend/backend_pypdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/pypdfplot/backend/backend_pypdf.py -------------------------------------------------------------------------------- /pypdfplot/backend/unpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/pypdfplot/backend/unpack.py -------------------------------------------------------------------------------- /pypdfplot/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/pypdfplot/classes.py -------------------------------------------------------------------------------- /pypdfplot/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/pypdfplot/cli.py -------------------------------------------------------------------------------- /pypdfplot/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/pypdfplot/functions.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/setup.py -------------------------------------------------------------------------------- /specification/5002.EPSF_Spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/specification/5002.EPSF_Spec.pdf -------------------------------------------------------------------------------- /specification/Filters and Reusable Streams.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/specification/Filters and Reusable Streams.pdf -------------------------------------------------------------------------------- /specification/ISO_32000_2_2017_EN.pdf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/specification/ISO_32000_2_2017_EN.pdf.pdf -------------------------------------------------------------------------------- /specification/PDF32000_2008.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/specification/PDF32000_2008.pdf -------------------------------------------------------------------------------- /specification/PDFReference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/specification/PDFReference.pdf -------------------------------------------------------------------------------- /specification/js_api_reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmvdbekerom/pypdfplot/HEAD/specification/js_api_reference.pdf --------------------------------------------------------------------------------