gitextract_6vwfdfgt/ ├── .gitignore ├── CHANGES ├── MANIFEST.in ├── README.txt ├── build_cmap.py ├── cmaprsrc/ │ ├── README.txt │ ├── cid2code_Adobe_CNS1.txt │ ├── cid2code_Adobe_GB1.txt │ ├── cid2code_Adobe_Japan1.txt │ └── cid2code_Adobe_Korea1.txt ├── docs/ │ ├── cid.obj │ ├── index.html │ ├── layout.obj │ ├── objrel.obj │ ├── programming.html │ └── style.css ├── pdfminer/ │ ├── __init__.py │ ├── arcfour.py │ ├── ascii85.py │ ├── cmap/ │ │ └── __init__.py │ ├── cmapdb.py │ ├── converter.py │ ├── encodingdb.py │ ├── fontmetrics.py │ ├── glyphlist.py │ ├── latin_enc.py │ ├── layout.py │ ├── lzw.py │ ├── pdfcolor.py │ ├── pdfdevice.py │ ├── pdffont.py │ ├── pdfinterp.py │ ├── pdfparser.py │ ├── pdftypes.py │ ├── pslexer.py │ ├── psparser.py │ ├── rijndael.py │ ├── runlength.py │ └── utils.py ├── samples/ │ ├── Makefile │ ├── README │ ├── jo.html.ref │ ├── jo.tex │ ├── jo.txt.ref │ ├── jo.xml.ref │ ├── nonfree/ │ │ ├── dmca.html.ref │ │ ├── dmca.txt.ref │ │ ├── dmca.xml.ref │ │ ├── f1040nr.html.ref │ │ ├── f1040nr.txt.ref │ │ ├── f1040nr.xml.ref │ │ ├── i1040nr.html.ref │ │ ├── i1040nr.txt.ref │ │ ├── i1040nr.xml.ref │ │ ├── kampo.html.ref │ │ ├── kampo.txt.ref │ │ ├── kampo.xml.ref │ │ ├── naacl06-shinyama.html.ref │ │ ├── naacl06-shinyama.txt.ref │ │ ├── naacl06-shinyama.xml.ref │ │ ├── nlp2004slides.html.ref │ │ ├── nlp2004slides.txt.ref │ │ └── nlp2004slides.xml.ref │ ├── simple1.html.ref │ ├── simple1.txt.ref │ ├── simple1.xml.ref │ ├── simple2.html.ref │ ├── simple2.txt.ref │ ├── simple2.xml.ref │ ├── simple3.html.ref │ ├── simple3.txt.ref │ └── simple3.xml.ref ├── setup.py ├── tests/ │ ├── __init__.py │ ├── layout_test.py │ ├── parser_test.py │ ├── samples_test.py │ ├── support_test.py │ └── util.py └── tools/ ├── conv_afm.py ├── conv_cmap.py ├── conv_glyphlist.py ├── dumppdf.py ├── latin2ascii.py ├── pdf2html.cgi ├── pdf2txt.py ├── pdfexplore.py ├── prof.py └── runapp.py