├── Procfile ├── README.md ├── __pycache__ └── config.cpython-34.pyc ├── app ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-34.pyc │ ├── forms.cpython-34.pyc │ └── views.cpython-34.pyc ├── model │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-34.pyc │ │ ├── alpha_cnn_predict.cpython-34.pyc │ │ └── preprocessor.cpython-34.pyc │ ├── alpha_cnn_predict.py │ ├── alpha_weights.pkl │ └── preprocessor.py ├── static │ ├── analytics.js │ ├── bootstrap-theme.min.css │ ├── bootstrap.min.css │ ├── bootstrap.min.js │ ├── css │ ├── img │ │ ├── cnn_ocr.png │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ ├── python.ico │ │ ├── python.png │ │ ├── recognized_o.png │ │ └── recognized_q.png │ ├── jquery.min.js │ ├── js │ │ ├── MathJax.js │ │ ├── bootstrap.min.js │ │ └── ocr_canvas.js │ └── style.css ├── templates │ ├── base.html │ └── index.html └── views.py ├── config.py ├── dataset.txt ├── flask ├── bin │ ├── __pycache__ │ │ ├── createfontdatachunk.cpython-34.pyc │ │ ├── enhancer.cpython-34.pyc │ │ ├── explode.cpython-34.pyc │ │ ├── gifmaker.cpython-34.pyc │ │ ├── painter.cpython-34.pyc │ │ ├── pilconvert.cpython-34.pyc │ │ ├── pildriver.cpython-34.pyc │ │ ├── pilfile.cpython-34.pyc │ │ ├── pilfont.cpython-34.pyc │ │ ├── pilprint.cpython-34.pyc │ │ ├── player.cpython-34.pyc │ │ ├── thresholder.cpython-34.pyc │ │ └── viewer.cpython-34.pyc │ ├── activate │ ├── activate.csh │ ├── activate.fish │ ├── coverage │ ├── coverage-3.4 │ ├── coverage3 │ ├── createfontdatachunk.py │ ├── easy_install │ ├── easy_install-3.4 │ ├── enhancer.py │ ├── explode.py │ ├── f2py │ ├── gifmaker.py │ ├── painter.py │ ├── pilconvert.py │ ├── pildriver.py │ ├── pilfile.py │ ├── pilfont.py │ ├── pilprint.py │ ├── pip │ ├── pip3 │ ├── pip3.4 │ ├── player.py │ ├── pybabel │ ├── python │ ├── python3 │ ├── thresholder.py │ └── viewer.py ├── lib │ └── python3.4 │ │ └── site-packages │ │ ├── Babel-2.1.1.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ ├── metadata.json │ │ └── top_level.txt │ │ ├── Flask-0.10.1-py3.4.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── installed-files.txt │ │ ├── not-zip-safe │ │ ├── requires.txt │ │ └── top_level.txt │ │ ├── Flask_Babel-0.9-py3.4.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── installed-files.txt │ │ ├── not-zip-safe │ │ ├── requires.txt │ │ └── top_level.txt │ │ ├── Flask_WTF-0.12-py3.4.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── installed-files.txt │ │ ├── not-zip-safe │ │ ├── requires.txt │ │ └── top_level.txt │ │ ├── Jinja2-2.8.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ ├── metadata.json │ │ └── top_level.txt │ │ ├── MarkupSafe-0.23-py3.4.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── installed-files.txt │ │ ├── not-zip-safe │ │ └── top_level.txt │ │ ├── PIL │ │ ├── .dylibs │ │ │ ├── libfreetype.6.dylib │ │ │ ├── libjpeg.9.dylib │ │ │ ├── liblcms2.2.dylib │ │ │ ├── libpng16.16.dylib │ │ │ ├── libtiff.5.dylib │ │ │ ├── libwebp.5.dylib │ │ │ ├── libwebpdemux.1.dylib │ │ │ ├── libwebpmux.1.dylib │ │ │ └── libz.1.2.8.dylib │ │ ├── BdfFontFile.py │ │ ├── BmpImagePlugin.py │ │ ├── BufrStubImagePlugin.py │ │ ├── ContainerIO.py │ │ ├── CurImagePlugin.py │ │ ├── DcxImagePlugin.py │ │ ├── EpsImagePlugin.py │ │ ├── ExifTags.py │ │ ├── FitsStubImagePlugin.py │ │ ├── FliImagePlugin.py │ │ ├── FontFile.py │ │ ├── FpxImagePlugin.py │ │ ├── GbrImagePlugin.py │ │ ├── GdImageFile.py │ │ ├── GifImagePlugin.py │ │ ├── GimpGradientFile.py │ │ ├── GimpPaletteFile.py │ │ ├── GribStubImagePlugin.py │ │ ├── Hdf5StubImagePlugin.py │ │ ├── IcnsImagePlugin.py │ │ ├── IcoImagePlugin.py │ │ ├── ImImagePlugin.py │ │ ├── Image.py │ │ ├── ImageChops.py │ │ ├── ImageCms.py │ │ ├── ImageColor.py │ │ ├── ImageDraw.py │ │ ├── ImageDraw2.py │ │ ├── ImageEnhance.py │ │ ├── ImageFile.py │ │ ├── ImageFilter.py │ │ ├── ImageFont.py │ │ ├── ImageGrab.py │ │ ├── ImageMath.py │ │ ├── ImageMode.py │ │ ├── ImageMorph.py │ │ ├── ImageOps.py │ │ ├── ImagePalette.py │ │ ├── ImagePath.py │ │ ├── ImageQt.py │ │ ├── ImageSequence.py │ │ ├── ImageShow.py │ │ ├── ImageStat.py │ │ ├── ImageTk.py │ │ ├── ImageTransform.py │ │ ├── ImageWin.py │ │ ├── ImtImagePlugin.py │ │ ├── IptcImagePlugin.py │ │ ├── Jpeg2KImagePlugin.py │ │ ├── JpegImagePlugin.py │ │ ├── JpegPresets.py │ │ ├── McIdasImagePlugin.py │ │ ├── MicImagePlugin.py │ │ ├── MpegImagePlugin.py │ │ ├── MpoImagePlugin.py │ │ ├── MspImagePlugin.py │ │ ├── OleFileIO-README.md │ │ ├── OleFileIO.py │ │ ├── PSDraw.py │ │ ├── PaletteFile.py │ │ ├── PalmImagePlugin.py │ │ ├── PcdImagePlugin.py │ │ ├── PcfFontFile.py │ │ ├── PcxImagePlugin.py │ │ ├── PdfImagePlugin.py │ │ ├── PixarImagePlugin.py │ │ ├── PngImagePlugin.py │ │ ├── PpmImagePlugin.py │ │ ├── PsdImagePlugin.py │ │ ├── PyAccess.py │ │ ├── SgiImagePlugin.py │ │ ├── SpiderImagePlugin.py │ │ ├── SunImagePlugin.py │ │ ├── TarIO.py │ │ ├── TgaImagePlugin.py │ │ ├── TiffImagePlugin.py │ │ ├── TiffTags.py │ │ ├── WalImageFile.py │ │ ├── WebPImagePlugin.py │ │ ├── WmfImagePlugin.py │ │ ├── XVThumbImagePlugin.py │ │ ├── XbmImagePlugin.py │ │ ├── XpmImagePlugin.py │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── BdfFontFile.cpython-34.pyc │ │ │ ├── BmpImagePlugin.cpython-34.pyc │ │ │ ├── BufrStubImagePlugin.cpython-34.pyc │ │ │ ├── ContainerIO.cpython-34.pyc │ │ │ ├── CurImagePlugin.cpython-34.pyc │ │ │ ├── DcxImagePlugin.cpython-34.pyc │ │ │ ├── EpsImagePlugin.cpython-34.pyc │ │ │ ├── ExifTags.cpython-34.pyc │ │ │ ├── FitsStubImagePlugin.cpython-34.pyc │ │ │ ├── FliImagePlugin.cpython-34.pyc │ │ │ ├── FontFile.cpython-34.pyc │ │ │ ├── FpxImagePlugin.cpython-34.pyc │ │ │ ├── GbrImagePlugin.cpython-34.pyc │ │ │ ├── GdImageFile.cpython-34.pyc │ │ │ ├── GifImagePlugin.cpython-34.pyc │ │ │ ├── GimpGradientFile.cpython-34.pyc │ │ │ ├── GimpPaletteFile.cpython-34.pyc │ │ │ ├── GribStubImagePlugin.cpython-34.pyc │ │ │ ├── Hdf5StubImagePlugin.cpython-34.pyc │ │ │ ├── IcnsImagePlugin.cpython-34.pyc │ │ │ ├── IcoImagePlugin.cpython-34.pyc │ │ │ ├── ImImagePlugin.cpython-34.pyc │ │ │ ├── Image.cpython-34.pyc │ │ │ ├── ImageChops.cpython-34.pyc │ │ │ ├── ImageCms.cpython-34.pyc │ │ │ ├── ImageColor.cpython-34.pyc │ │ │ ├── ImageDraw.cpython-34.pyc │ │ │ ├── ImageDraw2.cpython-34.pyc │ │ │ ├── ImageEnhance.cpython-34.pyc │ │ │ ├── ImageFile.cpython-34.pyc │ │ │ ├── ImageFilter.cpython-34.pyc │ │ │ ├── ImageFont.cpython-34.pyc │ │ │ ├── ImageGrab.cpython-34.pyc │ │ │ ├── ImageMath.cpython-34.pyc │ │ │ ├── ImageMode.cpython-34.pyc │ │ │ ├── ImageMorph.cpython-34.pyc │ │ │ ├── ImageOps.cpython-34.pyc │ │ │ ├── ImagePalette.cpython-34.pyc │ │ │ ├── ImagePath.cpython-34.pyc │ │ │ ├── ImageQt.cpython-34.pyc │ │ │ ├── ImageSequence.cpython-34.pyc │ │ │ ├── ImageShow.cpython-34.pyc │ │ │ ├── ImageStat.cpython-34.pyc │ │ │ ├── ImageTk.cpython-34.pyc │ │ │ ├── ImageTransform.cpython-34.pyc │ │ │ ├── ImageWin.cpython-34.pyc │ │ │ ├── ImtImagePlugin.cpython-34.pyc │ │ │ ├── IptcImagePlugin.cpython-34.pyc │ │ │ ├── Jpeg2KImagePlugin.cpython-34.pyc │ │ │ ├── JpegImagePlugin.cpython-34.pyc │ │ │ ├── JpegPresets.cpython-34.pyc │ │ │ ├── McIdasImagePlugin.cpython-34.pyc │ │ │ ├── MicImagePlugin.cpython-34.pyc │ │ │ ├── MpegImagePlugin.cpython-34.pyc │ │ │ ├── MpoImagePlugin.cpython-34.pyc │ │ │ ├── MspImagePlugin.cpython-34.pyc │ │ │ ├── OleFileIO.cpython-34.pyc │ │ │ ├── PSDraw.cpython-34.pyc │ │ │ ├── PaletteFile.cpython-34.pyc │ │ │ ├── PalmImagePlugin.cpython-34.pyc │ │ │ ├── PcdImagePlugin.cpython-34.pyc │ │ │ ├── PcfFontFile.cpython-34.pyc │ │ │ ├── PcxImagePlugin.cpython-34.pyc │ │ │ ├── PdfImagePlugin.cpython-34.pyc │ │ │ ├── PixarImagePlugin.cpython-34.pyc │ │ │ ├── PngImagePlugin.cpython-34.pyc │ │ │ ├── PpmImagePlugin.cpython-34.pyc │ │ │ ├── PsdImagePlugin.cpython-34.pyc │ │ │ ├── PyAccess.cpython-34.pyc │ │ │ ├── SgiImagePlugin.cpython-34.pyc │ │ │ ├── SpiderImagePlugin.cpython-34.pyc │ │ │ ├── SunImagePlugin.cpython-34.pyc │ │ │ ├── TarIO.cpython-34.pyc │ │ │ ├── TgaImagePlugin.cpython-34.pyc │ │ │ ├── TiffImagePlugin.cpython-34.pyc │ │ │ ├── TiffTags.cpython-34.pyc │ │ │ ├── WalImageFile.cpython-34.pyc │ │ │ ├── WebPImagePlugin.cpython-34.pyc │ │ │ ├── WmfImagePlugin.cpython-34.pyc │ │ │ ├── XVThumbImagePlugin.cpython-34.pyc │ │ │ ├── XbmImagePlugin.cpython-34.pyc │ │ │ ├── XpmImagePlugin.cpython-34.pyc │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── _binary.cpython-34.pyc │ │ │ ├── _util.cpython-34.pyc │ │ │ └── features.cpython-34.pyc │ │ ├── _binary.py │ │ ├── _imaging.so │ │ ├── _imagingcms.so │ │ ├── _imagingft.so │ │ ├── _imagingmath.so │ │ ├── _imagingmorph.so │ │ ├── _imagingtk.so │ │ ├── _util.py │ │ ├── _webp.so │ │ └── features.py │ │ ├── Pillow-3.0.0.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ ├── top_level.txt │ │ └── zip-safe │ │ ├── WTForms-2.0.2.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ └── top_level.txt │ │ ├── Werkzeug-0.10.4.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ └── top_level.txt │ │ ├── __pycache__ │ │ ├── easy_install.cpython-34.pyc │ │ ├── flipflop.cpython-34.pyc │ │ ├── itsdangerous.cpython-34.pyc │ │ ├── pkg_resources.cpython-34.pyc │ │ └── speaklater.cpython-34.pyc │ │ ├── _markerlib │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ └── markers.cpython-34.pyc │ │ └── markers.py │ │ ├── babel │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── _compat.cpython-34.pyc │ │ │ ├── core.cpython-34.pyc │ │ │ ├── dates.cpython-34.pyc │ │ │ ├── localedata.cpython-34.pyc │ │ │ ├── numbers.cpython-34.pyc │ │ │ ├── plural.cpython-34.pyc │ │ │ ├── support.cpython-34.pyc │ │ │ └── util.cpython-34.pyc │ │ ├── _compat.py │ │ ├── core.py │ │ ├── dates.py │ │ ├── global.dat │ │ ├── localedata.py │ │ ├── localedata │ │ │ ├── aa.dat │ │ │ ├── aa_DJ.dat │ │ │ ├── aa_ER.dat │ │ │ ├── aa_ET.dat │ │ │ ├── af.dat │ │ │ ├── af_NA.dat │ │ │ ├── af_ZA.dat │ │ │ ├── agq.dat │ │ │ ├── agq_CM.dat │ │ │ ├── ak.dat │ │ │ ├── ak_GH.dat │ │ │ ├── am.dat │ │ │ ├── am_ET.dat │ │ │ ├── ar.dat │ │ │ ├── ar_001.dat │ │ │ ├── ar_AE.dat │ │ │ ├── ar_BH.dat │ │ │ ├── ar_DJ.dat │ │ │ ├── ar_DZ.dat │ │ │ ├── ar_EG.dat │ │ │ ├── ar_EH.dat │ │ │ ├── ar_ER.dat │ │ │ ├── ar_IL.dat │ │ │ ├── ar_IQ.dat │ │ │ ├── ar_JO.dat │ │ │ ├── ar_KM.dat │ │ │ ├── ar_KW.dat │ │ │ ├── ar_LB.dat │ │ │ ├── ar_LY.dat │ │ │ ├── ar_MA.dat │ │ │ ├── ar_MR.dat │ │ │ ├── ar_OM.dat │ │ │ ├── ar_PS.dat │ │ │ ├── ar_QA.dat │ │ │ ├── ar_SA.dat │ │ │ ├── ar_SD.dat │ │ │ ├── ar_SO.dat │ │ │ ├── ar_SY.dat │ │ │ ├── ar_TD.dat │ │ │ ├── ar_TN.dat │ │ │ ├── ar_YE.dat │ │ │ ├── as.dat │ │ │ ├── as_IN.dat │ │ │ ├── asa.dat │ │ │ ├── asa_TZ.dat │ │ │ ├── ast.dat │ │ │ ├── ast_ES.dat │ │ │ ├── az.dat │ │ │ ├── az_Cyrl.dat │ │ │ ├── az_Cyrl_AZ.dat │ │ │ ├── az_Latn.dat │ │ │ ├── az_Latn_AZ.dat │ │ │ ├── bas.dat │ │ │ ├── bas_CM.dat │ │ │ ├── be.dat │ │ │ ├── be_BY.dat │ │ │ ├── bem.dat │ │ │ ├── bem_ZM.dat │ │ │ ├── bez.dat │ │ │ ├── bez_TZ.dat │ │ │ ├── bg.dat │ │ │ ├── bg_BG.dat │ │ │ ├── bm.dat │ │ │ ├── bm_ML.dat │ │ │ ├── bn.dat │ │ │ ├── bn_BD.dat │ │ │ ├── bn_IN.dat │ │ │ ├── bo.dat │ │ │ ├── bo_CN.dat │ │ │ ├── bo_IN.dat │ │ │ ├── br.dat │ │ │ ├── br_FR.dat │ │ │ ├── brx.dat │ │ │ ├── brx_IN.dat │ │ │ ├── bs.dat │ │ │ ├── bs_Cyrl.dat │ │ │ ├── bs_Cyrl_BA.dat │ │ │ ├── bs_Latn.dat │ │ │ ├── bs_Latn_BA.dat │ │ │ ├── byn.dat │ │ │ ├── byn_ER.dat │ │ │ ├── ca.dat │ │ │ ├── ca_AD.dat │ │ │ ├── ca_ES.dat │ │ │ ├── cgg.dat │ │ │ ├── cgg_UG.dat │ │ │ ├── chr.dat │ │ │ ├── chr_US.dat │ │ │ ├── cs.dat │ │ │ ├── cs_CZ.dat │ │ │ ├── cy.dat │ │ │ ├── cy_GB.dat │ │ │ ├── da.dat │ │ │ ├── da_DK.dat │ │ │ ├── dav.dat │ │ │ ├── dav_KE.dat │ │ │ ├── de.dat │ │ │ ├── de_AT.dat │ │ │ ├── de_BE.dat │ │ │ ├── de_CH.dat │ │ │ ├── de_DE.dat │ │ │ ├── de_LI.dat │ │ │ ├── de_LU.dat │ │ │ ├── dje.dat │ │ │ ├── dje_NE.dat │ │ │ ├── dua.dat │ │ │ ├── dua_CM.dat │ │ │ ├── dyo.dat │ │ │ ├── dyo_SN.dat │ │ │ ├── dz.dat │ │ │ ├── dz_BT.dat │ │ │ ├── ebu.dat │ │ │ ├── ebu_KE.dat │ │ │ ├── ee.dat │ │ │ ├── ee_GH.dat │ │ │ ├── ee_TG.dat │ │ │ ├── el.dat │ │ │ ├── el_CY.dat │ │ │ ├── el_GR.dat │ │ │ ├── en.dat │ │ │ ├── en_150.dat │ │ │ ├── en_AG.dat │ │ │ ├── en_AS.dat │ │ │ ├── en_AU.dat │ │ │ ├── en_BB.dat │ │ │ ├── en_BE.dat │ │ │ ├── en_BM.dat │ │ │ ├── en_BS.dat │ │ │ ├── en_BW.dat │ │ │ ├── en_BZ.dat │ │ │ ├── en_CA.dat │ │ │ ├── en_CM.dat │ │ │ ├── en_DM.dat │ │ │ ├── en_Dsrt.dat │ │ │ ├── en_Dsrt_US.dat │ │ │ ├── en_FJ.dat │ │ │ ├── en_FM.dat │ │ │ ├── en_GB.dat │ │ │ ├── en_GD.dat │ │ │ ├── en_GG.dat │ │ │ ├── en_GH.dat │ │ │ ├── en_GI.dat │ │ │ ├── en_GM.dat │ │ │ ├── en_GU.dat │ │ │ ├── en_GY.dat │ │ │ ├── en_HK.dat │ │ │ ├── en_IE.dat │ │ │ ├── en_IM.dat │ │ │ ├── en_IN.dat │ │ │ ├── en_JE.dat │ │ │ ├── en_JM.dat │ │ │ ├── en_KE.dat │ │ │ ├── en_KI.dat │ │ │ ├── en_KN.dat │ │ │ ├── en_KY.dat │ │ │ ├── en_LC.dat │ │ │ ├── en_LR.dat │ │ │ ├── en_LS.dat │ │ │ ├── en_MG.dat │ │ │ ├── en_MH.dat │ │ │ ├── en_MP.dat │ │ │ ├── en_MT.dat │ │ │ ├── en_MU.dat │ │ │ ├── en_MW.dat │ │ │ ├── en_NA.dat │ │ │ ├── en_NG.dat │ │ │ ├── en_NZ.dat │ │ │ ├── en_PG.dat │ │ │ ├── en_PH.dat │ │ │ ├── en_PK.dat │ │ │ ├── en_PR.dat │ │ │ ├── en_PW.dat │ │ │ ├── en_SB.dat │ │ │ ├── en_SC.dat │ │ │ ├── en_SG.dat │ │ │ ├── en_SL.dat │ │ │ ├── en_SS.dat │ │ │ ├── en_SZ.dat │ │ │ ├── en_TC.dat │ │ │ ├── en_TO.dat │ │ │ ├── en_TT.dat │ │ │ ├── en_TZ.dat │ │ │ ├── en_UG.dat │ │ │ ├── en_UM.dat │ │ │ ├── en_US.dat │ │ │ ├── en_US_POSIX.dat │ │ │ ├── en_VC.dat │ │ │ ├── en_VG.dat │ │ │ ├── en_VI.dat │ │ │ ├── en_VU.dat │ │ │ ├── en_WS.dat │ │ │ ├── en_ZA.dat │ │ │ ├── en_ZM.dat │ │ │ ├── en_ZW.dat │ │ │ ├── eo.dat │ │ │ ├── es.dat │ │ │ ├── es_419.dat │ │ │ ├── es_AR.dat │ │ │ ├── es_BO.dat │ │ │ ├── es_CL.dat │ │ │ ├── es_CO.dat │ │ │ ├── es_CR.dat │ │ │ ├── es_CU.dat │ │ │ ├── es_DO.dat │ │ │ ├── es_EA.dat │ │ │ ├── es_EC.dat │ │ │ ├── es_ES.dat │ │ │ ├── es_GQ.dat │ │ │ ├── es_GT.dat │ │ │ ├── es_HN.dat │ │ │ ├── es_IC.dat │ │ │ ├── es_MX.dat │ │ │ ├── es_NI.dat │ │ │ ├── es_PA.dat │ │ │ ├── es_PE.dat │ │ │ ├── es_PH.dat │ │ │ ├── es_PR.dat │ │ │ ├── es_PY.dat │ │ │ ├── es_SV.dat │ │ │ ├── es_US.dat │ │ │ ├── es_UY.dat │ │ │ ├── es_VE.dat │ │ │ ├── et.dat │ │ │ ├── et_EE.dat │ │ │ ├── eu.dat │ │ │ ├── eu_ES.dat │ │ │ ├── ewo.dat │ │ │ ├── ewo_CM.dat │ │ │ ├── fa.dat │ │ │ ├── fa_AF.dat │ │ │ ├── fa_IR.dat │ │ │ ├── ff.dat │ │ │ ├── ff_SN.dat │ │ │ ├── fi.dat │ │ │ ├── fi_FI.dat │ │ │ ├── fil.dat │ │ │ ├── fil_PH.dat │ │ │ ├── fo.dat │ │ │ ├── fo_FO.dat │ │ │ ├── fr.dat │ │ │ ├── fr_BE.dat │ │ │ ├── fr_BF.dat │ │ │ ├── fr_BI.dat │ │ │ ├── fr_BJ.dat │ │ │ ├── fr_BL.dat │ │ │ ├── fr_CA.dat │ │ │ ├── fr_CD.dat │ │ │ ├── fr_CF.dat │ │ │ ├── fr_CG.dat │ │ │ ├── fr_CH.dat │ │ │ ├── fr_CI.dat │ │ │ ├── fr_CM.dat │ │ │ ├── fr_DJ.dat │ │ │ ├── fr_DZ.dat │ │ │ ├── fr_FR.dat │ │ │ ├── fr_GA.dat │ │ │ ├── fr_GF.dat │ │ │ ├── fr_GN.dat │ │ │ ├── fr_GP.dat │ │ │ ├── fr_GQ.dat │ │ │ ├── fr_HT.dat │ │ │ ├── fr_KM.dat │ │ │ ├── fr_LU.dat │ │ │ ├── fr_MA.dat │ │ │ ├── fr_MC.dat │ │ │ ├── fr_MF.dat │ │ │ ├── fr_MG.dat │ │ │ ├── fr_ML.dat │ │ │ ├── fr_MQ.dat │ │ │ ├── fr_MR.dat │ │ │ ├── fr_MU.dat │ │ │ ├── fr_NC.dat │ │ │ ├── fr_NE.dat │ │ │ ├── fr_PF.dat │ │ │ ├── fr_RE.dat │ │ │ ├── fr_RW.dat │ │ │ ├── fr_SC.dat │ │ │ ├── fr_SN.dat │ │ │ ├── fr_SY.dat │ │ │ ├── fr_TD.dat │ │ │ ├── fr_TG.dat │ │ │ ├── fr_TN.dat │ │ │ ├── fr_VU.dat │ │ │ ├── fr_YT.dat │ │ │ ├── fur.dat │ │ │ ├── fur_IT.dat │ │ │ ├── ga.dat │ │ │ ├── ga_IE.dat │ │ │ ├── gd.dat │ │ │ ├── gd_GB.dat │ │ │ ├── gl.dat │ │ │ ├── gl_ES.dat │ │ │ ├── gsw.dat │ │ │ ├── gsw_CH.dat │ │ │ ├── gu.dat │ │ │ ├── gu_IN.dat │ │ │ ├── guz.dat │ │ │ ├── guz_KE.dat │ │ │ ├── gv.dat │ │ │ ├── gv_GB.dat │ │ │ ├── ha.dat │ │ │ ├── ha_Latn.dat │ │ │ ├── ha_Latn_GH.dat │ │ │ ├── ha_Latn_NE.dat │ │ │ ├── ha_Latn_NG.dat │ │ │ ├── haw.dat │ │ │ ├── haw_US.dat │ │ │ ├── he.dat │ │ │ ├── he_IL.dat │ │ │ ├── hi.dat │ │ │ ├── hi_IN.dat │ │ │ ├── hr.dat │ │ │ ├── hr_BA.dat │ │ │ ├── hr_HR.dat │ │ │ ├── hu.dat │ │ │ ├── hu_HU.dat │ │ │ ├── hy.dat │ │ │ ├── hy_AM.dat │ │ │ ├── ia.dat │ │ │ ├── ia_FR.dat │ │ │ ├── id.dat │ │ │ ├── id_ID.dat │ │ │ ├── ig.dat │ │ │ ├── ig_NG.dat │ │ │ ├── ii.dat │ │ │ ├── ii_CN.dat │ │ │ ├── is.dat │ │ │ ├── is_IS.dat │ │ │ ├── it.dat │ │ │ ├── it_CH.dat │ │ │ ├── it_IT.dat │ │ │ ├── it_SM.dat │ │ │ ├── ja.dat │ │ │ ├── ja_JP.dat │ │ │ ├── jgo.dat │ │ │ ├── jgo_CM.dat │ │ │ ├── jmc.dat │ │ │ ├── jmc_TZ.dat │ │ │ ├── ka.dat │ │ │ ├── ka_GE.dat │ │ │ ├── kab.dat │ │ │ ├── kab_DZ.dat │ │ │ ├── kam.dat │ │ │ ├── kam_KE.dat │ │ │ ├── kde.dat │ │ │ ├── kde_TZ.dat │ │ │ ├── kea.dat │ │ │ ├── kea_CV.dat │ │ │ ├── khq.dat │ │ │ ├── khq_ML.dat │ │ │ ├── ki.dat │ │ │ ├── ki_KE.dat │ │ │ ├── kk.dat │ │ │ ├── kk_Cyrl.dat │ │ │ ├── kk_Cyrl_KZ.dat │ │ │ ├── kkj.dat │ │ │ ├── kkj_CM.dat │ │ │ ├── kl.dat │ │ │ ├── kl_GL.dat │ │ │ ├── kln.dat │ │ │ ├── kln_KE.dat │ │ │ ├── km.dat │ │ │ ├── km_KH.dat │ │ │ ├── kn.dat │ │ │ ├── kn_IN.dat │ │ │ ├── ko.dat │ │ │ ├── ko_KP.dat │ │ │ ├── ko_KR.dat │ │ │ ├── kok.dat │ │ │ ├── kok_IN.dat │ │ │ ├── ks.dat │ │ │ ├── ks_Arab.dat │ │ │ ├── ks_Arab_IN.dat │ │ │ ├── ksb.dat │ │ │ ├── ksb_TZ.dat │ │ │ ├── ksf.dat │ │ │ ├── ksf_CM.dat │ │ │ ├── ksh.dat │ │ │ ├── ksh_DE.dat │ │ │ ├── kw.dat │ │ │ ├── kw_GB.dat │ │ │ ├── ky.dat │ │ │ ├── ky_KG.dat │ │ │ ├── lag.dat │ │ │ ├── lag_TZ.dat │ │ │ ├── lg.dat │ │ │ ├── lg_UG.dat │ │ │ ├── ln.dat │ │ │ ├── ln_AO.dat │ │ │ ├── ln_CD.dat │ │ │ ├── ln_CF.dat │ │ │ ├── ln_CG.dat │ │ │ ├── lo.dat │ │ │ ├── lo_LA.dat │ │ │ ├── lt.dat │ │ │ ├── lt_LT.dat │ │ │ ├── lu.dat │ │ │ ├── lu_CD.dat │ │ │ ├── luo.dat │ │ │ ├── luo_KE.dat │ │ │ ├── luy.dat │ │ │ ├── luy_KE.dat │ │ │ ├── lv.dat │ │ │ ├── lv_LV.dat │ │ │ ├── mas.dat │ │ │ ├── mas_KE.dat │ │ │ ├── mas_TZ.dat │ │ │ ├── mer.dat │ │ │ ├── mer_KE.dat │ │ │ ├── mfe.dat │ │ │ ├── mfe_MU.dat │ │ │ ├── mg.dat │ │ │ ├── mg_MG.dat │ │ │ ├── mgh.dat │ │ │ ├── mgh_MZ.dat │ │ │ ├── mgo.dat │ │ │ ├── mgo_CM.dat │ │ │ ├── mk.dat │ │ │ ├── mk_MK.dat │ │ │ ├── ml.dat │ │ │ ├── ml_IN.dat │ │ │ ├── mn.dat │ │ │ ├── mn_Cyrl.dat │ │ │ ├── mn_Cyrl_MN.dat │ │ │ ├── mr.dat │ │ │ ├── mr_IN.dat │ │ │ ├── ms.dat │ │ │ ├── ms_Latn.dat │ │ │ ├── ms_Latn_BN.dat │ │ │ ├── ms_Latn_MY.dat │ │ │ ├── ms_Latn_SG.dat │ │ │ ├── mt.dat │ │ │ ├── mt_MT.dat │ │ │ ├── mua.dat │ │ │ ├── mua_CM.dat │ │ │ ├── my.dat │ │ │ ├── my_MM.dat │ │ │ ├── naq.dat │ │ │ ├── naq_NA.dat │ │ │ ├── nb.dat │ │ │ ├── nb_NO.dat │ │ │ ├── nd.dat │ │ │ ├── nd_ZW.dat │ │ │ ├── ne.dat │ │ │ ├── ne_IN.dat │ │ │ ├── ne_NP.dat │ │ │ ├── nl.dat │ │ │ ├── nl_AW.dat │ │ │ ├── nl_BE.dat │ │ │ ├── nl_CW.dat │ │ │ ├── nl_NL.dat │ │ │ ├── nl_SR.dat │ │ │ ├── nl_SX.dat │ │ │ ├── nmg.dat │ │ │ ├── nmg_CM.dat │ │ │ ├── nn.dat │ │ │ ├── nn_NO.dat │ │ │ ├── nnh.dat │ │ │ ├── nnh_CM.dat │ │ │ ├── nr.dat │ │ │ ├── nr_ZA.dat │ │ │ ├── nso.dat │ │ │ ├── nso_ZA.dat │ │ │ ├── nus.dat │ │ │ ├── nus_SD.dat │ │ │ ├── nyn.dat │ │ │ ├── nyn_UG.dat │ │ │ ├── om.dat │ │ │ ├── om_ET.dat │ │ │ ├── om_KE.dat │ │ │ ├── or.dat │ │ │ ├── or_IN.dat │ │ │ ├── os.dat │ │ │ ├── os_GE.dat │ │ │ ├── os_RU.dat │ │ │ ├── pa.dat │ │ │ ├── pa_Arab.dat │ │ │ ├── pa_Arab_PK.dat │ │ │ ├── pa_Guru.dat │ │ │ ├── pa_Guru_IN.dat │ │ │ ├── pl.dat │ │ │ ├── pl_PL.dat │ │ │ ├── ps.dat │ │ │ ├── ps_AF.dat │ │ │ ├── pt.dat │ │ │ ├── pt_AO.dat │ │ │ ├── pt_BR.dat │ │ │ ├── pt_CV.dat │ │ │ ├── pt_GW.dat │ │ │ ├── pt_MO.dat │ │ │ ├── pt_MZ.dat │ │ │ ├── pt_PT.dat │ │ │ ├── pt_ST.dat │ │ │ ├── pt_TL.dat │ │ │ ├── rm.dat │ │ │ ├── rm_CH.dat │ │ │ ├── rn.dat │ │ │ ├── rn_BI.dat │ │ │ ├── ro.dat │ │ │ ├── ro_MD.dat │ │ │ ├── ro_RO.dat │ │ │ ├── rof.dat │ │ │ ├── rof_TZ.dat │ │ │ ├── root.dat │ │ │ ├── ru.dat │ │ │ ├── ru_BY.dat │ │ │ ├── ru_KG.dat │ │ │ ├── ru_KZ.dat │ │ │ ├── ru_MD.dat │ │ │ ├── ru_RU.dat │ │ │ ├── ru_UA.dat │ │ │ ├── rw.dat │ │ │ ├── rw_RW.dat │ │ │ ├── rwk.dat │ │ │ ├── rwk_TZ.dat │ │ │ ├── sah.dat │ │ │ ├── sah_RU.dat │ │ │ ├── saq.dat │ │ │ ├── saq_KE.dat │ │ │ ├── sbp.dat │ │ │ ├── sbp_TZ.dat │ │ │ ├── se.dat │ │ │ ├── se_FI.dat │ │ │ ├── se_NO.dat │ │ │ ├── seh.dat │ │ │ ├── seh_MZ.dat │ │ │ ├── ses.dat │ │ │ ├── ses_ML.dat │ │ │ ├── sg.dat │ │ │ ├── sg_CF.dat │ │ │ ├── shi.dat │ │ │ ├── shi_Latn.dat │ │ │ ├── shi_Latn_MA.dat │ │ │ ├── shi_Tfng.dat │ │ │ ├── shi_Tfng_MA.dat │ │ │ ├── si.dat │ │ │ ├── si_LK.dat │ │ │ ├── sk.dat │ │ │ ├── sk_SK.dat │ │ │ ├── sl.dat │ │ │ ├── sl_SI.dat │ │ │ ├── sn.dat │ │ │ ├── sn_ZW.dat │ │ │ ├── so.dat │ │ │ ├── so_DJ.dat │ │ │ ├── so_ET.dat │ │ │ ├── so_KE.dat │ │ │ ├── so_SO.dat │ │ │ ├── sq.dat │ │ │ ├── sq_AL.dat │ │ │ ├── sq_MK.dat │ │ │ ├── sq_XK.dat │ │ │ ├── sr.dat │ │ │ ├── sr_Cyrl.dat │ │ │ ├── sr_Cyrl_BA.dat │ │ │ ├── sr_Cyrl_ME.dat │ │ │ ├── sr_Cyrl_RS.dat │ │ │ ├── sr_Cyrl_XK.dat │ │ │ ├── sr_Latn.dat │ │ │ ├── sr_Latn_BA.dat │ │ │ ├── sr_Latn_ME.dat │ │ │ ├── sr_Latn_RS.dat │ │ │ ├── sr_Latn_XK.dat │ │ │ ├── ss.dat │ │ │ ├── ss_SZ.dat │ │ │ ├── ss_ZA.dat │ │ │ ├── ssy.dat │ │ │ ├── ssy_ER.dat │ │ │ ├── st.dat │ │ │ ├── st_LS.dat │ │ │ ├── st_ZA.dat │ │ │ ├── sv.dat │ │ │ ├── sv_AX.dat │ │ │ ├── sv_FI.dat │ │ │ ├── sv_SE.dat │ │ │ ├── sw.dat │ │ │ ├── sw_KE.dat │ │ │ ├── sw_TZ.dat │ │ │ ├── sw_UG.dat │ │ │ ├── swc.dat │ │ │ ├── swc_CD.dat │ │ │ ├── ta.dat │ │ │ ├── ta_IN.dat │ │ │ ├── ta_LK.dat │ │ │ ├── ta_MY.dat │ │ │ ├── ta_SG.dat │ │ │ ├── te.dat │ │ │ ├── te_IN.dat │ │ │ ├── teo.dat │ │ │ ├── teo_KE.dat │ │ │ ├── teo_UG.dat │ │ │ ├── tg.dat │ │ │ ├── tg_Cyrl.dat │ │ │ ├── tg_Cyrl_TJ.dat │ │ │ ├── th.dat │ │ │ ├── th_TH.dat │ │ │ ├── ti.dat │ │ │ ├── ti_ER.dat │ │ │ ├── ti_ET.dat │ │ │ ├── tig.dat │ │ │ ├── tig_ER.dat │ │ │ ├── tn.dat │ │ │ ├── tn_BW.dat │ │ │ ├── tn_ZA.dat │ │ │ ├── to.dat │ │ │ ├── to_TO.dat │ │ │ ├── tr.dat │ │ │ ├── tr_CY.dat │ │ │ ├── tr_TR.dat │ │ │ ├── ts.dat │ │ │ ├── ts_ZA.dat │ │ │ ├── twq.dat │ │ │ ├── twq_NE.dat │ │ │ ├── tzm.dat │ │ │ ├── tzm_Latn.dat │ │ │ ├── tzm_Latn_MA.dat │ │ │ ├── uk.dat │ │ │ ├── uk_UA.dat │ │ │ ├── ur.dat │ │ │ ├── ur_IN.dat │ │ │ ├── ur_PK.dat │ │ │ ├── uz.dat │ │ │ ├── uz_Arab.dat │ │ │ ├── uz_Arab_AF.dat │ │ │ ├── uz_Cyrl.dat │ │ │ ├── uz_Cyrl_UZ.dat │ │ │ ├── uz_Latn.dat │ │ │ ├── uz_Latn_UZ.dat │ │ │ ├── vai.dat │ │ │ ├── vai_Latn.dat │ │ │ ├── vai_Latn_LR.dat │ │ │ ├── vai_Vaii.dat │ │ │ ├── vai_Vaii_LR.dat │ │ │ ├── ve.dat │ │ │ ├── ve_ZA.dat │ │ │ ├── vi.dat │ │ │ ├── vi_VN.dat │ │ │ ├── vo.dat │ │ │ ├── vun.dat │ │ │ ├── vun_TZ.dat │ │ │ ├── wae.dat │ │ │ ├── wae_CH.dat │ │ │ ├── wal.dat │ │ │ ├── wal_ET.dat │ │ │ ├── xh.dat │ │ │ ├── xh_ZA.dat │ │ │ ├── xog.dat │ │ │ ├── xog_UG.dat │ │ │ ├── yav.dat │ │ │ ├── yav_CM.dat │ │ │ ├── yo.dat │ │ │ ├── yo_NG.dat │ │ │ ├── zh.dat │ │ │ ├── zh_Hans.dat │ │ │ ├── zh_Hans_CN.dat │ │ │ ├── zh_Hans_HK.dat │ │ │ ├── zh_Hans_MO.dat │ │ │ ├── zh_Hans_SG.dat │ │ │ ├── zh_Hant.dat │ │ │ ├── zh_Hant_HK.dat │ │ │ ├── zh_Hant_MO.dat │ │ │ ├── zh_Hant_TW.dat │ │ │ ├── zu.dat │ │ │ └── zu_ZA.dat │ │ ├── localtime │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ ├── _unix.cpython-34.pyc │ │ │ │ └── _win32.cpython-34.pyc │ │ │ ├── _unix.py │ │ │ └── _win32.py │ │ ├── messages │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ ├── catalog.cpython-34.pyc │ │ │ │ ├── checkers.cpython-34.pyc │ │ │ │ ├── extract.cpython-34.pyc │ │ │ │ ├── frontend.cpython-34.pyc │ │ │ │ ├── jslexer.cpython-34.pyc │ │ │ │ ├── mofile.cpython-34.pyc │ │ │ │ ├── plurals.cpython-34.pyc │ │ │ │ └── pofile.cpython-34.pyc │ │ │ ├── catalog.py │ │ │ ├── checkers.py │ │ │ ├── extract.py │ │ │ ├── frontend.py │ │ │ ├── jslexer.py │ │ │ ├── mofile.py │ │ │ ├── plurals.py │ │ │ └── pofile.py │ │ ├── numbers.py │ │ ├── plural.py │ │ ├── support.py │ │ └── util.py │ │ ├── coverage-4.0.1-py3.4.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── entry_points.txt │ │ ├── installed-files.txt │ │ ├── not-zip-safe │ │ └── top_level.txt │ │ ├── coverage │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── __main__.cpython-34.pyc │ │ │ ├── annotate.cpython-34.pyc │ │ │ ├── backunittest.cpython-34.pyc │ │ │ ├── backward.cpython-34.pyc │ │ │ ├── bytecode.cpython-34.pyc │ │ │ ├── cmdline.cpython-34.pyc │ │ │ ├── collector.cpython-34.pyc │ │ │ ├── config.cpython-34.pyc │ │ │ ├── control.cpython-34.pyc │ │ │ ├── data.cpython-34.pyc │ │ │ ├── debug.cpython-34.pyc │ │ │ ├── env.cpython-34.pyc │ │ │ ├── execfile.cpython-34.pyc │ │ │ ├── files.cpython-34.pyc │ │ │ ├── html.cpython-34.pyc │ │ │ ├── misc.cpython-34.pyc │ │ │ ├── monkey.cpython-34.pyc │ │ │ ├── parser.cpython-34.pyc │ │ │ ├── phystokens.cpython-34.pyc │ │ │ ├── pickle2json.cpython-34.pyc │ │ │ ├── plugin.cpython-34.pyc │ │ │ ├── plugin_support.cpython-34.pyc │ │ │ ├── python.cpython-34.pyc │ │ │ ├── pytracer.cpython-34.pyc │ │ │ ├── report.cpython-34.pyc │ │ │ ├── results.cpython-34.pyc │ │ │ ├── summary.cpython-34.pyc │ │ │ ├── templite.cpython-34.pyc │ │ │ ├── test_helpers.cpython-34.pyc │ │ │ ├── version.cpython-34.pyc │ │ │ └── xmlreport.cpython-34.pyc │ │ ├── annotate.py │ │ ├── backunittest.py │ │ ├── backward.py │ │ ├── bytecode.py │ │ ├── cmdline.py │ │ ├── collector.py │ │ ├── config.py │ │ ├── control.py │ │ ├── data.py │ │ ├── debug.py │ │ ├── env.py │ │ ├── execfile.py │ │ ├── files.py │ │ ├── html.py │ │ ├── htmlfiles │ │ │ ├── coverage_html.js │ │ │ ├── index.html │ │ │ ├── jquery.debounce.min.js │ │ │ ├── jquery.hotkeys.js │ │ │ ├── jquery.isonscreen.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.tablesorter.min.js │ │ │ ├── keybd_closed.png │ │ │ ├── keybd_open.png │ │ │ ├── pyfile.html │ │ │ └── style.css │ │ ├── misc.py │ │ ├── monkey.py │ │ ├── parser.py │ │ ├── phystokens.py │ │ ├── pickle2json.py │ │ ├── plugin.py │ │ ├── plugin_support.py │ │ ├── python.py │ │ ├── pytracer.py │ │ ├── report.py │ │ ├── results.py │ │ ├── summary.py │ │ ├── templite.py │ │ ├── test_helpers.py │ │ ├── tracer.so │ │ ├── version.py │ │ └── xmlreport.py │ │ ├── easy_install.py │ │ ├── flask │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── _compat.cpython-34.pyc │ │ │ ├── app.cpython-34.pyc │ │ │ ├── blueprints.cpython-34.pyc │ │ │ ├── config.cpython-34.pyc │ │ │ ├── ctx.cpython-34.pyc │ │ │ ├── debughelpers.cpython-34.pyc │ │ │ ├── exthook.cpython-34.pyc │ │ │ ├── globals.cpython-34.pyc │ │ │ ├── helpers.cpython-34.pyc │ │ │ ├── json.cpython-34.pyc │ │ │ ├── logging.cpython-34.pyc │ │ │ ├── module.cpython-34.pyc │ │ │ ├── sessions.cpython-34.pyc │ │ │ ├── signals.cpython-34.pyc │ │ │ ├── templating.cpython-34.pyc │ │ │ ├── testing.cpython-34.pyc │ │ │ ├── views.cpython-34.pyc │ │ │ └── wrappers.cpython-34.pyc │ │ ├── _compat.py │ │ ├── app.py │ │ ├── blueprints.py │ │ ├── config.py │ │ ├── ctx.py │ │ ├── debughelpers.py │ │ ├── ext │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-34.pyc │ │ ├── exthook.py │ │ ├── globals.py │ │ ├── helpers.py │ │ ├── json.py │ │ ├── logging.py │ │ ├── module.py │ │ ├── sessions.py │ │ ├── signals.py │ │ ├── templating.py │ │ ├── testing.py │ │ ├── testsuite │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ ├── appctx.cpython-34.pyc │ │ │ │ ├── basic.cpython-34.pyc │ │ │ │ ├── blueprints.cpython-34.pyc │ │ │ │ ├── config.cpython-34.pyc │ │ │ │ ├── deprecations.cpython-34.pyc │ │ │ │ ├── examples.cpython-34.pyc │ │ │ │ ├── ext.cpython-34.pyc │ │ │ │ ├── helpers.cpython-34.pyc │ │ │ │ ├── regression.cpython-34.pyc │ │ │ │ ├── reqctx.cpython-34.pyc │ │ │ │ ├── signals.cpython-34.pyc │ │ │ │ ├── subclassing.cpython-34.pyc │ │ │ │ ├── templating.cpython-34.pyc │ │ │ │ ├── testing.cpython-34.pyc │ │ │ │ └── views.cpython-34.pyc │ │ │ ├── appctx.py │ │ │ ├── basic.py │ │ │ ├── blueprints.py │ │ │ ├── config.py │ │ │ ├── deprecations.py │ │ │ ├── examples.py │ │ │ ├── ext.py │ │ │ ├── helpers.py │ │ │ ├── regression.py │ │ │ ├── reqctx.py │ │ │ ├── signals.py │ │ │ ├── static │ │ │ │ └── index.html │ │ │ ├── subclassing.py │ │ │ ├── templates │ │ │ │ ├── _macro.html │ │ │ │ ├── context_template.html │ │ │ │ ├── escaping_template.html │ │ │ │ ├── mail.txt │ │ │ │ ├── nested │ │ │ │ │ └── nested.txt │ │ │ │ ├── simple_template.html │ │ │ │ ├── template_filter.html │ │ │ │ └── template_test.html │ │ │ ├── templating.py │ │ │ ├── test_apps │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── config_module_app.cpython-34.pyc │ │ │ │ │ ├── flask_newext_simple.cpython-34.pyc │ │ │ │ │ ├── importerror.cpython-34.pyc │ │ │ │ │ └── main_app.cpython-34.pyc │ │ │ │ ├── blueprintapp │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── __init__.cpython-34.pyc │ │ │ │ │ └── apps │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── __init__.cpython-34.pyc │ │ │ │ │ │ ├── admin │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ └── __init__.cpython-34.pyc │ │ │ │ │ │ ├── static │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ └── test.css │ │ │ │ │ │ │ └── test.txt │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── admin │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── frontend │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── __init__.cpython-34.pyc │ │ │ │ │ │ └── templates │ │ │ │ │ │ └── frontend │ │ │ │ │ │ └── index.html │ │ │ │ ├── config_module_app.py │ │ │ │ ├── config_package_app │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ └── __init__.cpython-34.pyc │ │ │ │ ├── flask_broken │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ │ │ └── b.cpython-34.pyc │ │ │ │ │ └── b.py │ │ │ │ ├── flask_newext_package │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ │ │ └── submodule.cpython-34.pyc │ │ │ │ │ └── submodule.py │ │ │ │ ├── flask_newext_simple.py │ │ │ │ ├── flaskext │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ │ │ └── oldext_simple.cpython-34.pyc │ │ │ │ │ ├── oldext_package │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ │ │ │ └── submodule.cpython-34.pyc │ │ │ │ │ │ └── submodule.py │ │ │ │ │ └── oldext_simple.py │ │ │ │ ├── importerror.py │ │ │ │ ├── lib │ │ │ │ │ └── python2.5 │ │ │ │ │ │ └── site-packages │ │ │ │ │ │ ├── SiteEgg.egg │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── site_app.cpython-34.pyc │ │ │ │ │ │ ├── site_app.py │ │ │ │ │ │ └── site_package │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ └── __init__.cpython-34.pyc │ │ │ │ ├── main_app.py │ │ │ │ ├── moduleapp │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── __init__.cpython-34.pyc │ │ │ │ │ └── apps │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── __init__.cpython-34.pyc │ │ │ │ │ │ ├── admin │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ └── __init__.cpython-34.pyc │ │ │ │ │ │ ├── static │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ └── test.css │ │ │ │ │ │ │ └── test.txt │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── frontend │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── __init__.cpython-34.pyc │ │ │ │ │ │ └── templates │ │ │ │ │ │ └── index.html │ │ │ │ ├── path │ │ │ │ │ └── installed_package │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ └── __init__.cpython-34.pyc │ │ │ │ └── subdomaintestmodule │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-34.pyc │ │ │ │ │ └── static │ │ │ │ │ └── hello.txt │ │ │ ├── testing.py │ │ │ └── views.py │ │ ├── views.py │ │ └── wrappers.py │ │ ├── flask_babel │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ └── _compat.cpython-34.pyc │ │ └── _compat.py │ │ ├── flask_wtf │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── _compat.cpython-34.pyc │ │ │ ├── csrf.cpython-34.pyc │ │ │ ├── file.cpython-34.pyc │ │ │ ├── form.cpython-34.pyc │ │ │ ├── html5.cpython-34.pyc │ │ │ └── i18n.cpython-34.pyc │ │ ├── _compat.py │ │ ├── csrf.py │ │ ├── file.py │ │ ├── form.py │ │ ├── html5.py │ │ ├── i18n.py │ │ └── recaptcha │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── fields.cpython-34.pyc │ │ │ ├── validators.cpython-34.pyc │ │ │ └── widgets.cpython-34.pyc │ │ │ ├── fields.py │ │ │ ├── validators.py │ │ │ └── widgets.py │ │ ├── flipflop-1.0-py3.4.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── installed-files.txt │ │ └── top_level.txt │ │ ├── flipflop.py │ │ ├── itsdangerous-0.24-py3.4.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── installed-files.txt │ │ ├── not-zip-safe │ │ └── top_level.txt │ │ ├── itsdangerous.py │ │ ├── jinja2 │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── _compat.cpython-34.pyc │ │ │ ├── _stringdefs.cpython-34.pyc │ │ │ ├── bccache.cpython-34.pyc │ │ │ ├── compiler.cpython-34.pyc │ │ │ ├── constants.cpython-34.pyc │ │ │ ├── debug.cpython-34.pyc │ │ │ ├── defaults.cpython-34.pyc │ │ │ ├── environment.cpython-34.pyc │ │ │ ├── exceptions.cpython-34.pyc │ │ │ ├── ext.cpython-34.pyc │ │ │ ├── filters.cpython-34.pyc │ │ │ ├── lexer.cpython-34.pyc │ │ │ ├── loaders.cpython-34.pyc │ │ │ ├── meta.cpython-34.pyc │ │ │ ├── nodes.cpython-34.pyc │ │ │ ├── optimizer.cpython-34.pyc │ │ │ ├── parser.cpython-34.pyc │ │ │ ├── runtime.cpython-34.pyc │ │ │ ├── sandbox.cpython-34.pyc │ │ │ ├── tests.cpython-34.pyc │ │ │ ├── utils.cpython-34.pyc │ │ │ └── visitor.cpython-34.pyc │ │ ├── _compat.py │ │ ├── _stringdefs.py │ │ ├── bccache.py │ │ ├── compiler.py │ │ ├── constants.py │ │ ├── debug.py │ │ ├── defaults.py │ │ ├── environment.py │ │ ├── exceptions.py │ │ ├── ext.py │ │ ├── filters.py │ │ ├── lexer.py │ │ ├── loaders.py │ │ ├── meta.py │ │ ├── nodes.py │ │ ├── optimizer.py │ │ ├── parser.py │ │ ├── runtime.py │ │ ├── sandbox.py │ │ ├── tests.py │ │ ├── utils.py │ │ └── visitor.py │ │ ├── markupsafe │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── _compat.cpython-34.pyc │ │ │ ├── _constants.cpython-34.pyc │ │ │ ├── _native.cpython-34.pyc │ │ │ └── tests.cpython-34.pyc │ │ ├── _compat.py │ │ ├── _constants.py │ │ ├── _native.py │ │ ├── _speedups.c │ │ ├── _speedups.so │ │ └── tests.py │ │ ├── numpy-1.10.1.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ └── top_level.txt │ │ ├── numpy │ │ ├── __config__.py │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __config__.cpython-34.pyc │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── _import_tools.cpython-34.pyc │ │ │ ├── add_newdocs.cpython-34.pyc │ │ │ ├── ctypeslib.cpython-34.pyc │ │ │ ├── dual.cpython-34.pyc │ │ │ ├── matlib.cpython-34.pyc │ │ │ ├── setup.cpython-34.pyc │ │ │ └── version.cpython-34.pyc │ │ ├── _import_tools.py │ │ ├── add_newdocs.py │ │ ├── compat │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ ├── _inspect.cpython-34.pyc │ │ │ │ ├── py3k.cpython-34.pyc │ │ │ │ └── setup.cpython-34.pyc │ │ │ ├── _inspect.py │ │ │ ├── py3k.py │ │ │ └── setup.py │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ ├── _internal.cpython-34.pyc │ │ │ │ ├── _methods.cpython-34.pyc │ │ │ │ ├── arrayprint.cpython-34.pyc │ │ │ │ ├── cversions.cpython-34.pyc │ │ │ │ ├── defchararray.cpython-34.pyc │ │ │ │ ├── fromnumeric.cpython-34.pyc │ │ │ │ ├── function_base.cpython-34.pyc │ │ │ │ ├── generate_numpy_api.cpython-34.pyc │ │ │ │ ├── getlimits.cpython-34.pyc │ │ │ │ ├── info.cpython-34.pyc │ │ │ │ ├── machar.cpython-34.pyc │ │ │ │ ├── memmap.cpython-34.pyc │ │ │ │ ├── numeric.cpython-34.pyc │ │ │ │ ├── numerictypes.cpython-34.pyc │ │ │ │ ├── records.cpython-34.pyc │ │ │ │ ├── setup.cpython-34.pyc │ │ │ │ ├── setup_common.cpython-34.pyc │ │ │ │ └── shape_base.cpython-34.pyc │ │ │ ├── _dummy.so │ │ │ ├── _internal.py │ │ │ ├── _methods.py │ │ │ ├── arrayprint.py │ │ │ ├── cversions.py │ │ │ ├── defchararray.py │ │ │ ├── fromnumeric.py │ │ │ ├── function_base.py │ │ │ ├── generate_numpy_api.py │ │ │ ├── getlimits.py │ │ │ ├── include │ │ │ │ └── numpy │ │ │ │ │ ├── __multiarray_api.h │ │ │ │ │ ├── __ufunc_api.h │ │ │ │ │ ├── _neighborhood_iterator_imp.h │ │ │ │ │ ├── _numpyconfig.h │ │ │ │ │ ├── arrayobject.h │ │ │ │ │ ├── arrayscalars.h │ │ │ │ │ ├── halffloat.h │ │ │ │ │ ├── multiarray_api.txt │ │ │ │ │ ├── ndarrayobject.h │ │ │ │ │ ├── ndarraytypes.h │ │ │ │ │ ├── noprefix.h │ │ │ │ │ ├── npy_1_7_deprecated_api.h │ │ │ │ │ ├── npy_3kcompat.h │ │ │ │ │ ├── npy_common.h │ │ │ │ │ ├── npy_cpu.h │ │ │ │ │ ├── npy_endian.h │ │ │ │ │ ├── npy_interrupt.h │ │ │ │ │ ├── npy_math.h │ │ │ │ │ ├── npy_no_deprecated_api.h │ │ │ │ │ ├── npy_os.h │ │ │ │ │ ├── numpyconfig.h │ │ │ │ │ ├── old_defines.h │ │ │ │ │ ├── oldnumeric.h │ │ │ │ │ ├── ufunc_api.txt │ │ │ │ │ ├── ufuncobject.h │ │ │ │ │ └── utils.h │ │ │ ├── info.py │ │ │ ├── lib │ │ │ │ ├── libnpymath.a │ │ │ │ └── npy-pkg-config │ │ │ │ │ ├── mlib.ini │ │ │ │ │ └── npymath.ini │ │ │ ├── machar.py │ │ │ ├── memmap.py │ │ │ ├── multiarray.so │ │ │ ├── multiarray_tests.so │ │ │ ├── numeric.py │ │ │ ├── numerictypes.py │ │ │ ├── operand_flag_tests.so │ │ │ ├── records.py │ │ │ ├── setup.py │ │ │ ├── setup_common.py │ │ │ ├── shape_base.py │ │ │ ├── struct_ufunc_test.so │ │ │ ├── test_rational.so │ │ │ ├── tests │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── test_abc.cpython-34.pyc │ │ │ │ │ ├── test_api.cpython-34.pyc │ │ │ │ │ ├── test_arrayprint.cpython-34.pyc │ │ │ │ │ ├── test_datetime.cpython-34.pyc │ │ │ │ │ ├── test_defchararray.cpython-34.pyc │ │ │ │ │ ├── test_deprecations.cpython-34.pyc │ │ │ │ │ ├── test_dtype.cpython-34.pyc │ │ │ │ │ ├── test_einsum.cpython-34.pyc │ │ │ │ │ ├── test_errstate.cpython-34.pyc │ │ │ │ │ ├── test_function_base.cpython-34.pyc │ │ │ │ │ ├── test_getlimits.cpython-34.pyc │ │ │ │ │ ├── test_half.cpython-34.pyc │ │ │ │ │ ├── test_indexerrors.cpython-34.pyc │ │ │ │ │ ├── test_indexing.cpython-34.pyc │ │ │ │ │ ├── test_item_selection.cpython-34.pyc │ │ │ │ │ ├── test_machar.cpython-34.pyc │ │ │ │ │ ├── test_memmap.cpython-34.pyc │ │ │ │ │ ├── test_multiarray.cpython-34.pyc │ │ │ │ │ ├── test_multiarray_assignment.cpython-34.pyc │ │ │ │ │ ├── test_nditer.cpython-34.pyc │ │ │ │ │ ├── test_numeric.cpython-34.pyc │ │ │ │ │ ├── test_numerictypes.cpython-34.pyc │ │ │ │ │ ├── test_print.cpython-34.pyc │ │ │ │ │ ├── test_records.cpython-34.pyc │ │ │ │ │ ├── test_regression.cpython-34.pyc │ │ │ │ │ ├── test_scalarinherit.cpython-34.pyc │ │ │ │ │ ├── test_scalarmath.cpython-34.pyc │ │ │ │ │ ├── test_scalarprint.cpython-34.pyc │ │ │ │ │ ├── test_shape_base.cpython-34.pyc │ │ │ │ │ ├── test_ufunc.cpython-34.pyc │ │ │ │ │ ├── test_umath.cpython-34.pyc │ │ │ │ │ ├── test_umath_complex.cpython-34.pyc │ │ │ │ │ └── test_unicode.cpython-34.pyc │ │ │ │ ├── data │ │ │ │ │ ├── astype_copy.pkl │ │ │ │ │ └── recarray_from_file.fits │ │ │ │ ├── test_abc.py │ │ │ │ ├── test_api.py │ │ │ │ ├── test_arrayprint.py │ │ │ │ ├── test_datetime.py │ │ │ │ ├── test_defchararray.py │ │ │ │ ├── test_deprecations.py │ │ │ │ ├── test_dtype.py │ │ │ │ ├── test_einsum.py │ │ │ │ ├── test_errstate.py │ │ │ │ ├── test_function_base.py │ │ │ │ ├── test_getlimits.py │ │ │ │ ├── test_half.py │ │ │ │ ├── test_indexerrors.py │ │ │ │ ├── test_indexing.py │ │ │ │ ├── test_item_selection.py │ │ │ │ ├── test_machar.py │ │ │ │ ├── test_memmap.py │ │ │ │ ├── test_multiarray.py │ │ │ │ ├── test_multiarray_assignment.py │ │ │ │ ├── test_nditer.py │ │ │ │ ├── test_numeric.py │ │ │ │ ├── test_numerictypes.py │ │ │ │ ├── test_print.py │ │ │ │ ├── test_records.py │ │ │ │ ├── test_regression.py │ │ │ │ ├── test_scalarinherit.py │ │ │ │ ├── test_scalarmath.py │ │ │ │ ├── test_scalarprint.py │ │ │ │ ├── test_shape_base.py │ │ │ │ ├── test_ufunc.py │ │ │ │ ├── test_umath.py │ │ │ │ ├── test_umath_complex.py │ │ │ │ └── test_unicode.py │ │ │ ├── umath.so │ │ │ └── umath_tests.so │ │ ├── ctypeslib.py │ │ ├── distutils │ │ │ ├── __config__.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __config__.cpython-34.pyc │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ ├── __version__.cpython-34.pyc │ │ │ │ ├── ccompiler.cpython-34.pyc │ │ │ │ ├── compat.cpython-34.pyc │ │ │ │ ├── conv_template.cpython-34.pyc │ │ │ │ ├── core.cpython-34.pyc │ │ │ │ ├── cpuinfo.cpython-34.pyc │ │ │ │ ├── environment.cpython-34.pyc │ │ │ │ ├── exec_command.cpython-34.pyc │ │ │ │ ├── extension.cpython-34.pyc │ │ │ │ ├── from_template.cpython-34.pyc │ │ │ │ ├── info.cpython-34.pyc │ │ │ │ ├── intelccompiler.cpython-34.pyc │ │ │ │ ├── lib2def.cpython-34.pyc │ │ │ │ ├── line_endings.cpython-34.pyc │ │ │ │ ├── log.cpython-34.pyc │ │ │ │ ├── mingw32ccompiler.cpython-34.pyc │ │ │ │ ├── misc_util.cpython-34.pyc │ │ │ │ ├── msvc9compiler.cpython-34.pyc │ │ │ │ ├── msvccompiler.cpython-34.pyc │ │ │ │ ├── npy_pkg_config.cpython-34.pyc │ │ │ │ ├── numpy_distribution.cpython-34.pyc │ │ │ │ ├── pathccompiler.cpython-34.pyc │ │ │ │ ├── setup.cpython-34.pyc │ │ │ │ ├── system_info.cpython-34.pyc │ │ │ │ └── unixccompiler.cpython-34.pyc │ │ │ ├── __version__.py │ │ │ ├── ccompiler.py │ │ │ ├── command │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ │ ├── autodist.cpython-34.pyc │ │ │ │ │ ├── bdist_rpm.cpython-34.pyc │ │ │ │ │ ├── build.cpython-34.pyc │ │ │ │ │ ├── build_clib.cpython-34.pyc │ │ │ │ │ ├── build_ext.cpython-34.pyc │ │ │ │ │ ├── build_py.cpython-34.pyc │ │ │ │ │ ├── build_scripts.cpython-34.pyc │ │ │ │ │ ├── build_src.cpython-34.pyc │ │ │ │ │ ├── config.cpython-34.pyc │ │ │ │ │ ├── config_compiler.cpython-34.pyc │ │ │ │ │ ├── develop.cpython-34.pyc │ │ │ │ │ ├── egg_info.cpython-34.pyc │ │ │ │ │ ├── install.cpython-34.pyc │ │ │ │ │ ├── install_clib.cpython-34.pyc │ │ │ │ │ ├── install_data.cpython-34.pyc │ │ │ │ │ ├── install_headers.cpython-34.pyc │ │ │ │ │ └── sdist.cpython-34.pyc │ │ │ │ ├── autodist.py │ │ │ │ ├── bdist_rpm.py │ │ │ │ ├── build.py │ │ │ │ ├── build_clib.py │ │ │ │ ├── build_ext.py │ │ │ │ ├── build_py.py │ │ │ │ ├── build_scripts.py │ │ │ │ ├── build_src.py │ │ │ │ ├── config.py │ │ │ │ ├── config_compiler.py │ │ │ │ ├── develop.py │ │ │ │ ├── egg_info.py │ │ │ │ ├── install.py │ │ │ │ ├── install_clib.py │ │ │ │ ├── install_data.py │ │ │ │ ├── install_headers.py │ │ │ │ └── sdist.py │ │ │ ├── compat.py │ │ │ ├── conv_template.py │ │ │ ├── core.py │ │ │ ├── cpuinfo.py │ │ │ ├── environment.py │ │ │ ├── exec_command.py │ │ │ ├── extension.py │ │ │ ├── fcompiler │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ │ ├── absoft.cpython-34.pyc │ │ │ │ │ ├── compaq.cpython-34.pyc │ │ │ │ │ ├── g95.cpython-34.pyc │ │ │ │ │ ├── gnu.cpython-34.pyc │ │ │ │ │ ├── hpux.cpython-34.pyc │ │ │ │ │ ├── ibm.cpython-34.pyc │ │ │ │ │ ├── intel.cpython-34.pyc │ │ │ │ │ ├── lahey.cpython-34.pyc │ │ │ │ │ ├── mips.cpython-34.pyc │ │ │ │ │ ├── nag.cpython-34.pyc │ │ │ │ │ ├── none.cpython-34.pyc │ │ │ │ │ ├── pathf95.cpython-34.pyc │ │ │ │ │ ├── pg.cpython-34.pyc │ │ │ │ │ ├── sun.cpython-34.pyc │ │ │ │ │ └── vast.cpython-34.pyc │ │ │ │ ├── absoft.py │ │ │ │ ├── compaq.py │ │ │ │ ├── g95.py │ │ │ │ ├── gnu.py │ │ │ │ ├── hpux.py │ │ │ │ ├── ibm.py │ │ │ │ ├── intel.py │ │ │ │ ├── lahey.py │ │ │ │ ├── mips.py │ │ │ │ ├── nag.py │ │ │ │ ├── none.py │ │ │ │ ├── pathf95.py │ │ │ │ ├── pg.py │ │ │ │ ├── sun.py │ │ │ │ └── vast.py │ │ │ ├── from_template.py │ │ │ ├── info.py │ │ │ ├── intelccompiler.py │ │ │ ├── lib2def.py │ │ │ ├── line_endings.py │ │ │ ├── log.py │ │ │ ├── mingw │ │ │ │ └── gfortran_vs2003_hack.c │ │ │ ├── mingw32ccompiler.py │ │ │ ├── misc_util.py │ │ │ ├── msvc9compiler.py │ │ │ ├── msvccompiler.py │ │ │ ├── npy_pkg_config.py │ │ │ ├── numpy_distribution.py │ │ │ ├── pathccompiler.py │ │ │ ├── setup.py │ │ │ ├── system_info.py │ │ │ ├── tests │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── setup.cpython-34.pyc │ │ │ │ │ ├── test_exec_command.cpython-34.pyc │ │ │ │ │ ├── test_fcompiler_gnu.cpython-34.pyc │ │ │ │ │ ├── test_fcompiler_intel.cpython-34.pyc │ │ │ │ │ ├── test_misc_util.cpython-34.pyc │ │ │ │ │ ├── test_npy_pkg_config.cpython-34.pyc │ │ │ │ │ └── test_system_info.cpython-34.pyc │ │ │ │ ├── f2py_ext │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ │ │ └── setup.cpython-34.pyc │ │ │ │ │ ├── setup.py │ │ │ │ │ ├── src │ │ │ │ │ │ ├── fib1.f │ │ │ │ │ │ └── fib2.pyf │ │ │ │ │ └── tests │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── test_fib2.cpython-34.pyc │ │ │ │ │ │ └── test_fib2.py │ │ │ │ ├── f2py_f90_ext │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ │ │ └── setup.cpython-34.pyc │ │ │ │ │ ├── include │ │ │ │ │ │ └── body.f90 │ │ │ │ │ ├── setup.py │ │ │ │ │ ├── src │ │ │ │ │ │ └── foo_free.f90 │ │ │ │ │ └── tests │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── test_foo.cpython-34.pyc │ │ │ │ │ │ └── test_foo.py │ │ │ │ ├── gen_ext │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ │ │ └── setup.cpython-34.pyc │ │ │ │ │ ├── setup.py │ │ │ │ │ └── tests │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── test_fib3.cpython-34.pyc │ │ │ │ │ │ └── test_fib3.py │ │ │ │ ├── pyrex_ext │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ │ │ └── setup.cpython-34.pyc │ │ │ │ │ ├── primes.pyx │ │ │ │ │ ├── setup.py │ │ │ │ │ └── tests │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── test_primes.cpython-34.pyc │ │ │ │ │ │ └── test_primes.py │ │ │ │ ├── setup.py │ │ │ │ ├── swig_ext │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ │ │ └── setup.cpython-34.pyc │ │ │ │ │ ├── setup.py │ │ │ │ │ ├── src │ │ │ │ │ │ ├── example.c │ │ │ │ │ │ ├── example.i │ │ │ │ │ │ ├── zoo.cc │ │ │ │ │ │ ├── zoo.h │ │ │ │ │ │ └── zoo.i │ │ │ │ │ └── tests │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── test_example.cpython-34.pyc │ │ │ │ │ │ └── test_example2.cpython-34.pyc │ │ │ │ │ │ ├── test_example.py │ │ │ │ │ │ └── test_example2.py │ │ │ │ ├── test_exec_command.py │ │ │ │ ├── test_fcompiler_gnu.py │ │ │ │ ├── test_fcompiler_intel.py │ │ │ │ ├── test_misc_util.py │ │ │ │ ├── test_npy_pkg_config.py │ │ │ │ └── test_system_info.py │ │ │ └── unixccompiler.py │ │ ├── doc │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ ├── basics.cpython-34.pyc │ │ │ │ ├── broadcasting.cpython-34.pyc │ │ │ │ ├── byteswapping.cpython-34.pyc │ │ │ │ ├── constants.cpython-34.pyc │ │ │ │ ├── creation.cpython-34.pyc │ │ │ │ ├── glossary.cpython-34.pyc │ │ │ │ ├── howtofind.cpython-34.pyc │ │ │ │ ├── indexing.cpython-34.pyc │ │ │ │ ├── internals.cpython-34.pyc │ │ │ │ ├── io.cpython-34.pyc │ │ │ │ ├── jargon.cpython-34.pyc │ │ │ │ ├── methods_vs_functions.cpython-34.pyc │ │ │ │ ├── misc.cpython-34.pyc │ │ │ │ ├── performance.cpython-34.pyc │ │ │ │ ├── structured_arrays.cpython-34.pyc │ │ │ │ ├── subclassing.cpython-34.pyc │ │ │ │ └── ufuncs.cpython-34.pyc │ │ │ ├── basics.py │ │ │ ├── broadcasting.py │ │ │ ├── byteswapping.py │ │ │ ├── constants.py │ │ │ ├── creation.py │ │ │ ├── glossary.py │ │ │ ├── howtofind.py │ │ │ ├── indexing.py │ │ │ ├── internals.py │ │ │ ├── io.py │ │ │ ├── jargon.py │ │ │ ├── methods_vs_functions.py │ │ │ ├── misc.py │ │ │ ├── performance.py │ │ │ ├── structured_arrays.py │ │ │ ├── subclassing.py │ │ │ └── ufuncs.py │ │ ├── dual.py │ │ ├── f2py │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ ├── __main__.cpython-34.pyc │ │ │ │ ├── __version__.cpython-34.pyc │ │ │ │ ├── auxfuncs.cpython-34.pyc │ │ │ │ ├── capi_maps.cpython-34.pyc │ │ │ │ ├── cb_rules.cpython-34.pyc │ │ │ │ ├── cfuncs.cpython-34.pyc │ │ │ │ ├── common_rules.cpython-34.pyc │ │ │ │ ├── crackfortran.cpython-34.pyc │ │ │ │ ├── diagnose.cpython-34.pyc │ │ │ │ ├── f2py2e.cpython-34.pyc │ │ │ │ ├── f2py_testing.cpython-34.pyc │ │ │ │ ├── f90mod_rules.cpython-34.pyc │ │ │ │ ├── func2subr.cpython-34.pyc │ │ │ │ ├── info.cpython-34.pyc │ │ │ │ ├── rules.cpython-34.pyc │ │ │ │ ├── setup.cpython-34.pyc │ │ │ │ └── use_rules.cpython-34.pyc │ │ │ ├── __version__.py │ │ │ ├── auxfuncs.py │ │ │ ├── capi_maps.py │ │ │ ├── cb_rules.py │ │ │ ├── cfuncs.py │ │ │ ├── common_rules.py │ │ │ ├── crackfortran.py │ │ │ ├── diagnose.py │ │ │ ├── f2py2e.py │ │ │ ├── f2py_testing.py │ │ │ ├── f90mod_rules.py │ │ │ ├── func2subr.py │ │ │ ├── info.py │ │ │ ├── rules.py │ │ │ ├── setup.py │ │ │ ├── src │ │ │ │ ├── fortranobject.c │ │ │ │ └── fortranobject.h │ │ │ ├── tests │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── test_array_from_pyobj.cpython-34.pyc │ │ │ │ │ ├── test_assumed_shape.cpython-34.pyc │ │ │ │ │ ├── test_callback.cpython-34.pyc │ │ │ │ │ ├── test_kind.cpython-34.pyc │ │ │ │ │ ├── test_mixed.cpython-34.pyc │ │ │ │ │ ├── test_regression.cpython-34.pyc │ │ │ │ │ ├── test_return_character.cpython-34.pyc │ │ │ │ │ ├── test_return_complex.cpython-34.pyc │ │ │ │ │ ├── test_return_integer.cpython-34.pyc │ │ │ │ │ ├── test_return_logical.cpython-34.pyc │ │ │ │ │ ├── test_return_real.cpython-34.pyc │ │ │ │ │ ├── test_size.cpython-34.pyc │ │ │ │ │ └── util.cpython-34.pyc │ │ │ │ ├── src │ │ │ │ │ ├── array_from_pyobj │ │ │ │ │ │ └── wrapmodule.c │ │ │ │ │ ├── assumed_shape │ │ │ │ │ │ ├── .f2py_f2cmap │ │ │ │ │ │ ├── foo_free.f90 │ │ │ │ │ │ ├── foo_mod.f90 │ │ │ │ │ │ ├── foo_use.f90 │ │ │ │ │ │ └── precision.f90 │ │ │ │ │ ├── kind │ │ │ │ │ │ └── foo.f90 │ │ │ │ │ ├── mixed │ │ │ │ │ │ ├── foo.f │ │ │ │ │ │ ├── foo_fixed.f90 │ │ │ │ │ │ └── foo_free.f90 │ │ │ │ │ ├── regression │ │ │ │ │ │ └── inout.f90 │ │ │ │ │ └── size │ │ │ │ │ │ └── foo.f90 │ │ │ │ ├── test_array_from_pyobj.py │ │ │ │ ├── test_assumed_shape.py │ │ │ │ ├── test_callback.py │ │ │ │ ├── test_kind.py │ │ │ │ ├── test_mixed.py │ │ │ │ ├── test_regression.py │ │ │ │ ├── test_return_character.py │ │ │ │ ├── test_return_complex.py │ │ │ │ ├── test_return_integer.py │ │ │ │ ├── test_return_logical.py │ │ │ │ ├── test_return_real.py │ │ │ │ ├── test_size.py │ │ │ │ └── util.py │ │ │ └── use_rules.py │ │ ├── fft │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ ├── fftpack.cpython-34.pyc │ │ │ │ ├── helper.cpython-34.pyc │ │ │ │ ├── info.cpython-34.pyc │ │ │ │ └── setup.cpython-34.pyc │ │ │ ├── fftpack.py │ │ │ ├── fftpack_lite.so │ │ │ ├── helper.py │ │ │ ├── info.py │ │ │ ├── setup.py │ │ │ └── tests │ │ │ │ ├── __pycache__ │ │ │ │ ├── test_fftpack.cpython-34.pyc │ │ │ │ └── test_helper.cpython-34.pyc │ │ │ │ ├── test_fftpack.py │ │ │ │ └── test_helper.py │ │ ├── lib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ ├── _datasource.cpython-34.pyc │ │ │ │ ├── _iotools.cpython-34.pyc │ │ │ │ ├── _version.cpython-34.pyc │ │ │ │ ├── arraypad.cpython-34.pyc │ │ │ │ ├── arraysetops.cpython-34.pyc │ │ │ │ ├── arrayterator.cpython-34.pyc │ │ │ │ ├── financial.cpython-34.pyc │ │ │ │ ├── format.cpython-34.pyc │ │ │ │ ├── function_base.cpython-34.pyc │ │ │ │ ├── index_tricks.cpython-34.pyc │ │ │ │ ├── info.cpython-34.pyc │ │ │ │ ├── nanfunctions.cpython-34.pyc │ │ │ │ ├── npyio.cpython-34.pyc │ │ │ │ ├── polynomial.cpython-34.pyc │ │ │ │ ├── recfunctions.cpython-34.pyc │ │ │ │ ├── scimath.cpython-34.pyc │ │ │ │ ├── setup.cpython-34.pyc │ │ │ │ ├── shape_base.cpython-34.pyc │ │ │ │ ├── stride_tricks.cpython-34.pyc │ │ │ │ ├── twodim_base.cpython-34.pyc │ │ │ │ ├── type_check.cpython-34.pyc │ │ │ │ ├── ufunclike.cpython-34.pyc │ │ │ │ ├── user_array.cpython-34.pyc │ │ │ │ └── utils.cpython-34.pyc │ │ │ ├── _datasource.py │ │ │ ├── _iotools.py │ │ │ ├── _version.py │ │ │ ├── arraypad.py │ │ │ ├── arraysetops.py │ │ │ ├── arrayterator.py │ │ │ ├── financial.py │ │ │ ├── format.py │ │ │ ├── function_base.py │ │ │ ├── index_tricks.py │ │ │ ├── info.py │ │ │ ├── nanfunctions.py │ │ │ ├── npyio.py │ │ │ ├── polynomial.py │ │ │ ├── recfunctions.py │ │ │ ├── scimath.py │ │ │ ├── setup.py │ │ │ ├── shape_base.py │ │ │ ├── stride_tricks.py │ │ │ ├── tests │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── test__datasource.cpython-34.pyc │ │ │ │ │ ├── test__iotools.cpython-34.pyc │ │ │ │ │ ├── test__version.cpython-34.pyc │ │ │ │ │ ├── test_arraypad.cpython-34.pyc │ │ │ │ │ ├── test_arraysetops.cpython-34.pyc │ │ │ │ │ ├── test_arrayterator.cpython-34.pyc │ │ │ │ │ ├── test_financial.cpython-34.pyc │ │ │ │ │ ├── test_format.cpython-34.pyc │ │ │ │ │ ├── test_function_base.cpython-34.pyc │ │ │ │ │ ├── test_index_tricks.cpython-34.pyc │ │ │ │ │ ├── test_io.cpython-34.pyc │ │ │ │ │ ├── test_nanfunctions.cpython-34.pyc │ │ │ │ │ ├── test_packbits.cpython-34.pyc │ │ │ │ │ ├── test_polynomial.cpython-34.pyc │ │ │ │ │ ├── test_recfunctions.cpython-34.pyc │ │ │ │ │ ├── test_regression.cpython-34.pyc │ │ │ │ │ ├── test_shape_base.cpython-34.pyc │ │ │ │ │ ├── test_stride_tricks.cpython-34.pyc │ │ │ │ │ ├── test_twodim_base.cpython-34.pyc │ │ │ │ │ ├── test_type_check.cpython-34.pyc │ │ │ │ │ ├── test_ufunclike.cpython-34.pyc │ │ │ │ │ └── test_utils.cpython-34.pyc │ │ │ │ ├── data │ │ │ │ │ ├── py2-objarr.npy │ │ │ │ │ ├── py2-objarr.npz │ │ │ │ │ ├── py3-objarr.npy │ │ │ │ │ ├── py3-objarr.npz │ │ │ │ │ ├── python3.npy │ │ │ │ │ └── win64python2.npy │ │ │ │ ├── test__datasource.py │ │ │ │ ├── test__iotools.py │ │ │ │ ├── test__version.py │ │ │ │ ├── test_arraypad.py │ │ │ │ ├── test_arraysetops.py │ │ │ │ ├── test_arrayterator.py │ │ │ │ ├── test_financial.py │ │ │ │ ├── test_format.py │ │ │ │ ├── test_function_base.py │ │ │ │ ├── test_index_tricks.py │ │ │ │ ├── test_io.py │ │ │ │ ├── test_nanfunctions.py │ │ │ │ ├── test_packbits.py │ │ │ │ ├── test_polynomial.py │ │ │ │ ├── test_recfunctions.py │ │ │ │ ├── test_regression.py │ │ │ │ ├── test_shape_base.py │ │ │ │ ├── test_stride_tricks.py │ │ │ │ ├── test_twodim_base.py │ │ │ │ ├── test_type_check.py │ │ │ │ ├── test_ufunclike.py │ │ │ │ └── test_utils.py │ │ │ ├── twodim_base.py │ │ │ ├── type_check.py │ │ │ ├── ufunclike.py │ │ │ ├── user_array.py │ │ │ └── utils.py │ │ ├── linalg │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ ├── info.cpython-34.pyc │ │ │ │ ├── linalg.cpython-34.pyc │ │ │ │ └── setup.cpython-34.pyc │ │ │ ├── _umath_linalg.so │ │ │ ├── info.py │ │ │ ├── lapack_lite.so │ │ │ ├── linalg.py │ │ │ ├── setup.py │ │ │ └── tests │ │ │ │ ├── __pycache__ │ │ │ │ ├── test_build.cpython-34.pyc │ │ │ │ ├── test_deprecations.cpython-34.pyc │ │ │ │ ├── test_linalg.cpython-34.pyc │ │ │ │ └── test_regression.cpython-34.pyc │ │ │ │ ├── test_build.py │ │ │ │ ├── test_deprecations.py │ │ │ │ ├── test_linalg.py │ │ │ │ └── test_regression.py │ │ ├── ma │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ ├── bench.cpython-34.pyc │ │ │ │ ├── core.cpython-34.pyc │ │ │ │ ├── extras.cpython-34.pyc │ │ │ │ ├── mrecords.cpython-34.pyc │ │ │ │ ├── setup.cpython-34.pyc │ │ │ │ ├── testutils.cpython-34.pyc │ │ │ │ ├── timer_comparison.cpython-34.pyc │ │ │ │ └── version.cpython-34.pyc │ │ │ ├── bench.py │ │ │ ├── core.py │ │ │ ├── extras.py │ │ │ ├── mrecords.py │ │ │ ├── setup.py │ │ │ ├── tests │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── test_core.cpython-34.pyc │ │ │ │ │ ├── test_extras.cpython-34.pyc │ │ │ │ │ ├── test_mrecords.cpython-34.pyc │ │ │ │ │ ├── test_old_ma.cpython-34.pyc │ │ │ │ │ ├── test_regression.cpython-34.pyc │ │ │ │ │ └── test_subclassing.cpython-34.pyc │ │ │ │ ├── test_core.py │ │ │ │ ├── test_extras.py │ │ │ │ ├── test_mrecords.py │ │ │ │ ├── test_old_ma.py │ │ │ │ ├── test_regression.py │ │ │ │ └── test_subclassing.py │ │ │ ├── testutils.py │ │ │ ├── timer_comparison.py │ │ │ └── version.py │ │ ├── matlib.py │ │ ├── matrixlib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ ├── defmatrix.cpython-34.pyc │ │ │ │ └── setup.cpython-34.pyc │ │ │ ├── defmatrix.py │ │ │ ├── setup.py │ │ │ └── tests │ │ │ │ ├── __pycache__ │ │ │ │ ├── test_defmatrix.cpython-34.pyc │ │ │ │ ├── test_multiarray.cpython-34.pyc │ │ │ │ ├── test_numeric.cpython-34.pyc │ │ │ │ └── test_regression.cpython-34.pyc │ │ │ │ ├── test_defmatrix.py │ │ │ │ ├── test_multiarray.py │ │ │ │ ├── test_numeric.py │ │ │ │ └── test_regression.py │ │ ├── polynomial │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ ├── _polybase.cpython-34.pyc │ │ │ │ ├── chebyshev.cpython-34.pyc │ │ │ │ ├── hermite.cpython-34.pyc │ │ │ │ ├── hermite_e.cpython-34.pyc │ │ │ │ ├── laguerre.cpython-34.pyc │ │ │ │ ├── legendre.cpython-34.pyc │ │ │ │ ├── polynomial.cpython-34.pyc │ │ │ │ ├── polyutils.cpython-34.pyc │ │ │ │ └── setup.cpython-34.pyc │ │ │ ├── _polybase.py │ │ │ ├── chebyshev.py │ │ │ ├── hermite.py │ │ │ ├── hermite_e.py │ │ │ ├── laguerre.py │ │ │ ├── legendre.py │ │ │ ├── polynomial.py │ │ │ ├── polyutils.py │ │ │ ├── setup.py │ │ │ └── tests │ │ │ │ ├── __pycache__ │ │ │ │ ├── test_chebyshev.cpython-34.pyc │ │ │ │ ├── test_classes.cpython-34.pyc │ │ │ │ ├── test_hermite.cpython-34.pyc │ │ │ │ ├── test_hermite_e.cpython-34.pyc │ │ │ │ ├── test_laguerre.cpython-34.pyc │ │ │ │ ├── test_legendre.cpython-34.pyc │ │ │ │ ├── test_polynomial.cpython-34.pyc │ │ │ │ ├── test_polyutils.cpython-34.pyc │ │ │ │ └── test_printing.cpython-34.pyc │ │ │ │ ├── test_chebyshev.py │ │ │ │ ├── test_classes.py │ │ │ │ ├── test_hermite.py │ │ │ │ ├── test_hermite_e.py │ │ │ │ ├── test_laguerre.py │ │ │ │ ├── test_legendre.py │ │ │ │ ├── test_polynomial.py │ │ │ │ ├── test_polyutils.py │ │ │ │ └── test_printing.py │ │ ├── random │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ ├── info.cpython-34.pyc │ │ │ │ └── setup.cpython-34.pyc │ │ │ ├── info.py │ │ │ ├── mtrand.so │ │ │ ├── randomkit.h │ │ │ ├── setup.py │ │ │ └── tests │ │ │ │ ├── __pycache__ │ │ │ │ ├── test_random.cpython-34.pyc │ │ │ │ └── test_regression.cpython-34.pyc │ │ │ │ ├── test_random.py │ │ │ │ └── test_regression.py │ │ ├── setup.py │ │ ├── testing │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ ├── decorators.cpython-34.pyc │ │ │ │ ├── noseclasses.cpython-34.pyc │ │ │ │ ├── nosetester.cpython-34.pyc │ │ │ │ ├── print_coercion_tables.cpython-34.pyc │ │ │ │ ├── setup.cpython-34.pyc │ │ │ │ └── utils.cpython-34.pyc │ │ │ ├── decorators.py │ │ │ ├── noseclasses.py │ │ │ ├── nosetester.py │ │ │ ├── print_coercion_tables.py │ │ │ ├── setup.py │ │ │ ├── tests │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── test_decorators.cpython-34.pyc │ │ │ │ │ ├── test_doctesting.cpython-34.pyc │ │ │ │ │ └── test_utils.cpython-34.pyc │ │ │ │ ├── test_decorators.py │ │ │ │ ├── test_doctesting.py │ │ │ │ └── test_utils.py │ │ │ └── utils.py │ │ ├── tests │ │ │ ├── __pycache__ │ │ │ │ ├── test_ctypeslib.cpython-34.pyc │ │ │ │ ├── test_matlib.cpython-34.pyc │ │ │ │ └── test_scripts.cpython-34.pyc │ │ │ ├── test_ctypeslib.py │ │ │ ├── test_matlib.py │ │ │ └── test_scripts.py │ │ └── version.py │ │ ├── pip-1.5.6.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ ├── metadata.json │ │ └── top_level.txt │ │ ├── pip │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── __main__.cpython-34.pyc │ │ │ ├── basecommand.cpython-34.pyc │ │ │ ├── baseparser.cpython-34.pyc │ │ │ ├── cmdoptions.cpython-34.pyc │ │ │ ├── download.cpython-34.pyc │ │ │ ├── exceptions.cpython-34.pyc │ │ │ ├── index.cpython-34.pyc │ │ │ ├── locations.cpython-34.pyc │ │ │ ├── log.cpython-34.pyc │ │ │ ├── pep425tags.cpython-34.pyc │ │ │ ├── req.cpython-34.pyc │ │ │ ├── runner.cpython-34.pyc │ │ │ ├── status_codes.cpython-34.pyc │ │ │ ├── util.cpython-34.pyc │ │ │ └── wheel.cpython-34.pyc │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ ├── pkg_resources.cpython-34.pyc │ │ │ │ ├── re-vendor.cpython-34.pyc │ │ │ │ └── six.cpython-34.pyc │ │ │ ├── _markerlib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ │ └── markers.cpython-34.pyc │ │ │ │ └── markers.py │ │ │ ├── colorama │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ │ ├── ansi.cpython-34.pyc │ │ │ │ │ ├── ansitowin32.cpython-34.pyc │ │ │ │ │ ├── initialise.cpython-34.pyc │ │ │ │ │ ├── win32.cpython-34.pyc │ │ │ │ │ └── winterm.cpython-34.pyc │ │ │ │ ├── ansi.py │ │ │ │ ├── ansitowin32.py │ │ │ │ ├── initialise.py │ │ │ │ ├── win32.py │ │ │ │ └── winterm.py │ │ │ ├── distlib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ │ ├── compat.cpython-34.pyc │ │ │ │ │ ├── database.cpython-34.pyc │ │ │ │ │ ├── index.cpython-34.pyc │ │ │ │ │ ├── locators.cpython-34.pyc │ │ │ │ │ ├── manifest.cpython-34.pyc │ │ │ │ │ ├── markers.cpython-34.pyc │ │ │ │ │ ├── metadata.cpython-34.pyc │ │ │ │ │ ├── resources.cpython-34.pyc │ │ │ │ │ ├── scripts.cpython-34.pyc │ │ │ │ │ ├── util.cpython-34.pyc │ │ │ │ │ ├── version.cpython-34.pyc │ │ │ │ │ └── wheel.cpython-34.pyc │ │ │ │ ├── _backport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ │ │ ├── misc.cpython-34.pyc │ │ │ │ │ │ ├── shutil.cpython-34.pyc │ │ │ │ │ │ ├── sysconfig.cpython-34.pyc │ │ │ │ │ │ └── tarfile.cpython-34.pyc │ │ │ │ │ ├── misc.py │ │ │ │ │ ├── shutil.py │ │ │ │ │ ├── sysconfig.cfg │ │ │ │ │ ├── sysconfig.py │ │ │ │ │ └── tarfile.py │ │ │ │ ├── compat.py │ │ │ │ ├── database.py │ │ │ │ ├── index.py │ │ │ │ ├── locators.py │ │ │ │ ├── manifest.py │ │ │ │ ├── markers.py │ │ │ │ ├── metadata.py │ │ │ │ ├── resources.py │ │ │ │ ├── scripts.py │ │ │ │ ├── t32.exe │ │ │ │ ├── t64.exe │ │ │ │ ├── util.py │ │ │ │ ├── version.py │ │ │ │ ├── w32.exe │ │ │ │ ├── w64.exe │ │ │ │ └── wheel.py │ │ │ ├── html5lib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ │ ├── constants.cpython-34.pyc │ │ │ │ │ ├── html5parser.cpython-34.pyc │ │ │ │ │ ├── ihatexml.cpython-34.pyc │ │ │ │ │ ├── inputstream.cpython-34.pyc │ │ │ │ │ ├── sanitizer.cpython-34.pyc │ │ │ │ │ ├── tokenizer.cpython-34.pyc │ │ │ │ │ └── utils.cpython-34.pyc │ │ │ │ ├── constants.py │ │ │ │ ├── filters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ │ │ ├── _base.cpython-34.pyc │ │ │ │ │ │ ├── alphabeticalattributes.cpython-34.pyc │ │ │ │ │ │ ├── inject_meta_charset.cpython-34.pyc │ │ │ │ │ │ ├── lint.cpython-34.pyc │ │ │ │ │ │ ├── optionaltags.cpython-34.pyc │ │ │ │ │ │ ├── sanitizer.cpython-34.pyc │ │ │ │ │ │ └── whitespace.cpython-34.pyc │ │ │ │ │ ├── _base.py │ │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ │ ├── inject_meta_charset.py │ │ │ │ │ ├── lint.py │ │ │ │ │ ├── optionaltags.py │ │ │ │ │ ├── sanitizer.py │ │ │ │ │ └── whitespace.py │ │ │ │ ├── html5parser.py │ │ │ │ ├── ihatexml.py │ │ │ │ ├── inputstream.py │ │ │ │ ├── sanitizer.py │ │ │ │ ├── serializer │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ │ │ └── htmlserializer.cpython-34.pyc │ │ │ │ │ └── htmlserializer.py │ │ │ │ ├── tokenizer.py │ │ │ │ ├── treeadapters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ │ │ └── sax.cpython-34.pyc │ │ │ │ │ └── sax.py │ │ │ │ ├── treebuilders │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ │ │ ├── _base.cpython-34.pyc │ │ │ │ │ │ ├── dom.cpython-34.pyc │ │ │ │ │ │ ├── etree.cpython-34.pyc │ │ │ │ │ │ └── etree_lxml.cpython-34.pyc │ │ │ │ │ ├── _base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ └── etree_lxml.py │ │ │ │ ├── treewalkers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ │ │ ├── _base.cpython-34.pyc │ │ │ │ │ │ ├── dom.cpython-34.pyc │ │ │ │ │ │ ├── etree.cpython-34.pyc │ │ │ │ │ │ ├── genshistream.cpython-34.pyc │ │ │ │ │ │ ├── lxmletree.cpython-34.pyc │ │ │ │ │ │ └── pulldom.cpython-34.pyc │ │ │ │ │ ├── _base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ ├── genshistream.py │ │ │ │ │ ├── lxmletree.py │ │ │ │ │ └── pulldom.py │ │ │ │ ├── trie │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ │ │ ├── _base.cpython-34.pyc │ │ │ │ │ │ ├── datrie.cpython-34.pyc │ │ │ │ │ │ └── py.cpython-34.pyc │ │ │ │ │ ├── _base.py │ │ │ │ │ ├── datrie.py │ │ │ │ │ └── py.py │ │ │ │ └── utils.py │ │ │ ├── pkg_resources.py │ │ │ ├── re-vendor.py │ │ │ ├── requests │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ │ ├── adapters.cpython-34.pyc │ │ │ │ │ ├── api.cpython-34.pyc │ │ │ │ │ ├── auth.cpython-34.pyc │ │ │ │ │ ├── certs.cpython-34.pyc │ │ │ │ │ ├── compat.cpython-34.pyc │ │ │ │ │ ├── cookies.cpython-34.pyc │ │ │ │ │ ├── exceptions.cpython-34.pyc │ │ │ │ │ ├── hooks.cpython-34.pyc │ │ │ │ │ ├── models.cpython-34.pyc │ │ │ │ │ ├── sessions.cpython-34.pyc │ │ │ │ │ ├── status_codes.cpython-34.pyc │ │ │ │ │ ├── structures.cpython-34.pyc │ │ │ │ │ └── utils.cpython-34.pyc │ │ │ │ ├── adapters.py │ │ │ │ ├── api.py │ │ │ │ ├── auth.py │ │ │ │ ├── cacert.pem │ │ │ │ ├── certs.py │ │ │ │ ├── compat.py │ │ │ │ ├── cookies.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── hooks.py │ │ │ │ ├── models.py │ │ │ │ ├── packages │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── __init__.cpython-34.pyc │ │ │ │ │ ├── chardet │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ │ │ │ ├── big5freq.cpython-34.pyc │ │ │ │ │ │ │ ├── big5prober.cpython-34.pyc │ │ │ │ │ │ │ ├── chardetect.cpython-34.pyc │ │ │ │ │ │ │ ├── chardistribution.cpython-34.pyc │ │ │ │ │ │ │ ├── charsetgroupprober.cpython-34.pyc │ │ │ │ │ │ │ ├── charsetprober.cpython-34.pyc │ │ │ │ │ │ │ ├── codingstatemachine.cpython-34.pyc │ │ │ │ │ │ │ ├── compat.cpython-34.pyc │ │ │ │ │ │ │ ├── constants.cpython-34.pyc │ │ │ │ │ │ │ ├── cp949prober.cpython-34.pyc │ │ │ │ │ │ │ ├── escprober.cpython-34.pyc │ │ │ │ │ │ │ ├── escsm.cpython-34.pyc │ │ │ │ │ │ │ ├── eucjpprober.cpython-34.pyc │ │ │ │ │ │ │ ├── euckrfreq.cpython-34.pyc │ │ │ │ │ │ │ ├── euckrprober.cpython-34.pyc │ │ │ │ │ │ │ ├── euctwfreq.cpython-34.pyc │ │ │ │ │ │ │ ├── euctwprober.cpython-34.pyc │ │ │ │ │ │ │ ├── gb2312freq.cpython-34.pyc │ │ │ │ │ │ │ ├── gb2312prober.cpython-34.pyc │ │ │ │ │ │ │ ├── hebrewprober.cpython-34.pyc │ │ │ │ │ │ │ ├── jisfreq.cpython-34.pyc │ │ │ │ │ │ │ ├── jpcntx.cpython-34.pyc │ │ │ │ │ │ │ ├── langbulgarianmodel.cpython-34.pyc │ │ │ │ │ │ │ ├── langcyrillicmodel.cpython-34.pyc │ │ │ │ │ │ │ ├── langgreekmodel.cpython-34.pyc │ │ │ │ │ │ │ ├── langhebrewmodel.cpython-34.pyc │ │ │ │ │ │ │ ├── langhungarianmodel.cpython-34.pyc │ │ │ │ │ │ │ ├── langthaimodel.cpython-34.pyc │ │ │ │ │ │ │ ├── latin1prober.cpython-34.pyc │ │ │ │ │ │ │ ├── mbcharsetprober.cpython-34.pyc │ │ │ │ │ │ │ ├── mbcsgroupprober.cpython-34.pyc │ │ │ │ │ │ │ ├── mbcssm.cpython-34.pyc │ │ │ │ │ │ │ ├── sbcharsetprober.cpython-34.pyc │ │ │ │ │ │ │ ├── sbcsgroupprober.cpython-34.pyc │ │ │ │ │ │ │ ├── sjisprober.cpython-34.pyc │ │ │ │ │ │ │ ├── universaldetector.cpython-34.pyc │ │ │ │ │ │ │ └── utf8prober.cpython-34.pyc │ │ │ │ │ │ ├── big5freq.py │ │ │ │ │ │ ├── big5prober.py │ │ │ │ │ │ ├── chardetect.py │ │ │ │ │ │ ├── chardistribution.py │ │ │ │ │ │ ├── charsetgroupprober.py │ │ │ │ │ │ ├── charsetprober.py │ │ │ │ │ │ ├── codingstatemachine.py │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ ├── constants.py │ │ │ │ │ │ ├── cp949prober.py │ │ │ │ │ │ ├── escprober.py │ │ │ │ │ │ ├── escsm.py │ │ │ │ │ │ ├── eucjpprober.py │ │ │ │ │ │ ├── euckrfreq.py │ │ │ │ │ │ ├── euckrprober.py │ │ │ │ │ │ ├── euctwfreq.py │ │ │ │ │ │ ├── euctwprober.py │ │ │ │ │ │ ├── gb2312freq.py │ │ │ │ │ │ ├── gb2312prober.py │ │ │ │ │ │ ├── hebrewprober.py │ │ │ │ │ │ ├── jisfreq.py │ │ │ │ │ │ ├── jpcntx.py │ │ │ │ │ │ ├── langbulgarianmodel.py │ │ │ │ │ │ ├── langcyrillicmodel.py │ │ │ │ │ │ ├── langgreekmodel.py │ │ │ │ │ │ ├── langhebrewmodel.py │ │ │ │ │ │ ├── langhungarianmodel.py │ │ │ │ │ │ ├── langthaimodel.py │ │ │ │ │ │ ├── latin1prober.py │ │ │ │ │ │ ├── mbcharsetprober.py │ │ │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ │ │ ├── mbcssm.py │ │ │ │ │ │ ├── sbcharsetprober.py │ │ │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ │ │ ├── sjisprober.py │ │ │ │ │ │ ├── universaldetector.py │ │ │ │ │ │ └── utf8prober.py │ │ │ │ │ └── urllib3 │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ │ │ ├── _collections.cpython-34.pyc │ │ │ │ │ │ ├── connection.cpython-34.pyc │ │ │ │ │ │ ├── connectionpool.cpython-34.pyc │ │ │ │ │ │ ├── exceptions.cpython-34.pyc │ │ │ │ │ │ ├── fields.cpython-34.pyc │ │ │ │ │ │ ├── filepost.cpython-34.pyc │ │ │ │ │ │ ├── poolmanager.cpython-34.pyc │ │ │ │ │ │ ├── request.cpython-34.pyc │ │ │ │ │ │ └── response.cpython-34.pyc │ │ │ │ │ │ ├── _collections.py │ │ │ │ │ │ ├── connection.py │ │ │ │ │ │ ├── connectionpool.py │ │ │ │ │ │ ├── contrib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ │ │ │ ├── ntlmpool.cpython-34.pyc │ │ │ │ │ │ │ └── pyopenssl.cpython-34.pyc │ │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ │ └── pyopenssl.py │ │ │ │ │ │ ├── exceptions.py │ │ │ │ │ │ ├── fields.py │ │ │ │ │ │ ├── filepost.py │ │ │ │ │ │ ├── packages │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ │ │ │ ├── ordered_dict.cpython-34.pyc │ │ │ │ │ │ │ └── six.cpython-34.pyc │ │ │ │ │ │ ├── ordered_dict.py │ │ │ │ │ │ ├── six.py │ │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ │ │ │ └── _implementation.cpython-34.pyc │ │ │ │ │ │ │ └── _implementation.py │ │ │ │ │ │ ├── poolmanager.py │ │ │ │ │ │ ├── request.py │ │ │ │ │ │ ├── response.py │ │ │ │ │ │ └── util │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ │ │ ├── connection.cpython-34.pyc │ │ │ │ │ │ ├── request.cpython-34.pyc │ │ │ │ │ │ ├── response.cpython-34.pyc │ │ │ │ │ │ ├── ssl_.cpython-34.pyc │ │ │ │ │ │ ├── timeout.cpython-34.pyc │ │ │ │ │ │ └── url.cpython-34.pyc │ │ │ │ │ │ ├── connection.py │ │ │ │ │ │ ├── request.py │ │ │ │ │ │ ├── response.py │ │ │ │ │ │ ├── ssl_.py │ │ │ │ │ │ ├── timeout.py │ │ │ │ │ │ └── url.py │ │ │ │ ├── sessions.py │ │ │ │ ├── status_codes.py │ │ │ │ ├── structures.py │ │ │ │ └── utils.py │ │ │ └── six.py │ │ ├── backwardcompat │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-34.pyc │ │ ├── basecommand.py │ │ ├── baseparser.py │ │ ├── cmdoptions.py │ │ ├── commands │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ ├── bundle.cpython-34.pyc │ │ │ │ ├── completion.cpython-34.pyc │ │ │ │ ├── freeze.cpython-34.pyc │ │ │ │ ├── help.cpython-34.pyc │ │ │ │ ├── install.cpython-34.pyc │ │ │ │ ├── list.cpython-34.pyc │ │ │ │ ├── search.cpython-34.pyc │ │ │ │ ├── show.cpython-34.pyc │ │ │ │ ├── uninstall.cpython-34.pyc │ │ │ │ ├── unzip.cpython-34.pyc │ │ │ │ ├── wheel.cpython-34.pyc │ │ │ │ └── zip.cpython-34.pyc │ │ │ ├── bundle.py │ │ │ ├── completion.py │ │ │ ├── freeze.py │ │ │ ├── help.py │ │ │ ├── install.py │ │ │ ├── list.py │ │ │ ├── search.py │ │ │ ├── show.py │ │ │ ├── uninstall.py │ │ │ ├── unzip.py │ │ │ ├── wheel.py │ │ │ └── zip.py │ │ ├── download.py │ │ ├── exceptions.py │ │ ├── index.py │ │ ├── locations.py │ │ ├── log.py │ │ ├── pep425tags.py │ │ ├── req.py │ │ ├── runner.py │ │ ├── status_codes.py │ │ ├── util.py │ │ ├── vcs │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ ├── bazaar.cpython-34.pyc │ │ │ │ ├── git.cpython-34.pyc │ │ │ │ ├── mercurial.cpython-34.pyc │ │ │ │ └── subversion.cpython-34.pyc │ │ │ ├── bazaar.py │ │ │ ├── git.py │ │ │ ├── mercurial.py │ │ │ └── subversion.py │ │ └── wheel.py │ │ ├── pkg_resources.py │ │ ├── pytz-2015.6.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ ├── top_level.txt │ │ └── zip-safe │ │ ├── pytz │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── exceptions.cpython-34.pyc │ │ │ ├── lazy.cpython-34.pyc │ │ │ ├── reference.cpython-34.pyc │ │ │ ├── tzfile.cpython-34.pyc │ │ │ └── tzinfo.cpython-34.pyc │ │ ├── exceptions.py │ │ ├── lazy.py │ │ ├── reference.py │ │ ├── tzfile.py │ │ ├── tzinfo.py │ │ └── zoneinfo │ │ │ ├── Africa │ │ │ ├── Abidjan │ │ │ ├── Accra │ │ │ ├── Addis_Ababa │ │ │ ├── Algiers │ │ │ ├── Asmara │ │ │ ├── Asmera │ │ │ ├── Bamako │ │ │ ├── Bangui │ │ │ ├── Banjul │ │ │ ├── Bissau │ │ │ ├── Blantyre │ │ │ ├── Brazzaville │ │ │ ├── Bujumbura │ │ │ ├── Cairo │ │ │ ├── Casablanca │ │ │ ├── Ceuta │ │ │ ├── Conakry │ │ │ ├── Dakar │ │ │ ├── Dar_es_Salaam │ │ │ ├── Djibouti │ │ │ ├── Douala │ │ │ ├── El_Aaiun │ │ │ ├── Freetown │ │ │ ├── Gaborone │ │ │ ├── Harare │ │ │ ├── Johannesburg │ │ │ ├── Juba │ │ │ ├── Kampala │ │ │ ├── Khartoum │ │ │ ├── Kigali │ │ │ ├── Kinshasa │ │ │ ├── Lagos │ │ │ ├── Libreville │ │ │ ├── Lome │ │ │ ├── Luanda │ │ │ ├── Lubumbashi │ │ │ ├── Lusaka │ │ │ ├── Malabo │ │ │ ├── Maputo │ │ │ ├── Maseru │ │ │ ├── Mbabane │ │ │ ├── Mogadishu │ │ │ ├── Monrovia │ │ │ ├── Nairobi │ │ │ ├── Ndjamena │ │ │ ├── Niamey │ │ │ ├── Nouakchott │ │ │ ├── Ouagadougou │ │ │ ├── Porto-Novo │ │ │ ├── Sao_Tome │ │ │ ├── Timbuktu │ │ │ ├── Tripoli │ │ │ ├── Tunis │ │ │ └── Windhoek │ │ │ ├── America │ │ │ ├── Adak │ │ │ ├── Anchorage │ │ │ ├── Anguilla │ │ │ ├── Antigua │ │ │ ├── Araguaina │ │ │ ├── Argentina │ │ │ │ ├── Buenos_Aires │ │ │ │ ├── Catamarca │ │ │ │ ├── ComodRivadavia │ │ │ │ ├── Cordoba │ │ │ │ ├── Jujuy │ │ │ │ ├── La_Rioja │ │ │ │ ├── Mendoza │ │ │ │ ├── Rio_Gallegos │ │ │ │ ├── Salta │ │ │ │ ├── San_Juan │ │ │ │ ├── San_Luis │ │ │ │ ├── Tucuman │ │ │ │ └── Ushuaia │ │ │ ├── Aruba │ │ │ ├── Asuncion │ │ │ ├── Atikokan │ │ │ ├── Atka │ │ │ ├── Bahia │ │ │ ├── Bahia_Banderas │ │ │ ├── Barbados │ │ │ ├── Belem │ │ │ ├── Belize │ │ │ ├── Blanc-Sablon │ │ │ ├── Boa_Vista │ │ │ ├── Bogota │ │ │ ├── Boise │ │ │ ├── Buenos_Aires │ │ │ ├── Cambridge_Bay │ │ │ ├── Campo_Grande │ │ │ ├── Cancun │ │ │ ├── Caracas │ │ │ ├── Catamarca │ │ │ ├── Cayenne │ │ │ ├── Cayman │ │ │ ├── Chicago │ │ │ ├── Chihuahua │ │ │ ├── Coral_Harbour │ │ │ ├── Cordoba │ │ │ ├── Costa_Rica │ │ │ ├── Creston │ │ │ ├── Cuiaba │ │ │ ├── Curacao │ │ │ ├── Danmarkshavn │ │ │ ├── Dawson │ │ │ ├── Dawson_Creek │ │ │ ├── Denver │ │ │ ├── Detroit │ │ │ ├── Dominica │ │ │ ├── Edmonton │ │ │ ├── Eirunepe │ │ │ ├── El_Salvador │ │ │ ├── Ensenada │ │ │ ├── Fort_Wayne │ │ │ ├── Fortaleza │ │ │ ├── Glace_Bay │ │ │ ├── Godthab │ │ │ ├── Goose_Bay │ │ │ ├── Grand_Turk │ │ │ ├── Grenada │ │ │ ├── Guadeloupe │ │ │ ├── Guatemala │ │ │ ├── Guayaquil │ │ │ ├── Guyana │ │ │ ├── Halifax │ │ │ ├── Havana │ │ │ ├── Hermosillo │ │ │ ├── Indiana │ │ │ │ ├── Indianapolis │ │ │ │ ├── Knox │ │ │ │ ├── Marengo │ │ │ │ ├── Petersburg │ │ │ │ ├── Tell_City │ │ │ │ ├── Vevay │ │ │ │ ├── Vincennes │ │ │ │ └── Winamac │ │ │ ├── Indianapolis │ │ │ ├── Inuvik │ │ │ ├── Iqaluit │ │ │ ├── Jamaica │ │ │ ├── Jujuy │ │ │ ├── Juneau │ │ │ ├── Kentucky │ │ │ │ ├── Louisville │ │ │ │ └── Monticello │ │ │ ├── Knox_IN │ │ │ ├── Kralendijk │ │ │ ├── La_Paz │ │ │ ├── Lima │ │ │ ├── Los_Angeles │ │ │ ├── Louisville │ │ │ ├── Lower_Princes │ │ │ ├── Maceio │ │ │ ├── Managua │ │ │ ├── Manaus │ │ │ ├── Marigot │ │ │ ├── Martinique │ │ │ ├── Matamoros │ │ │ ├── Mazatlan │ │ │ ├── Mendoza │ │ │ ├── Menominee │ │ │ ├── Merida │ │ │ ├── Metlakatla │ │ │ ├── Mexico_City │ │ │ ├── Miquelon │ │ │ ├── Moncton │ │ │ ├── Monterrey │ │ │ ├── Montevideo │ │ │ ├── Montreal │ │ │ ├── Montserrat │ │ │ ├── Nassau │ │ │ ├── New_York │ │ │ ├── Nipigon │ │ │ ├── Nome │ │ │ ├── Noronha │ │ │ ├── North_Dakota │ │ │ │ ├── Beulah │ │ │ │ ├── Center │ │ │ │ └── New_Salem │ │ │ ├── Ojinaga │ │ │ ├── Panama │ │ │ ├── Pangnirtung │ │ │ ├── Paramaribo │ │ │ ├── Phoenix │ │ │ ├── Port-au-Prince │ │ │ ├── Port_of_Spain │ │ │ ├── Porto_Acre │ │ │ ├── Porto_Velho │ │ │ ├── Puerto_Rico │ │ │ ├── Rainy_River │ │ │ ├── Rankin_Inlet │ │ │ ├── Recife │ │ │ ├── Regina │ │ │ ├── Resolute │ │ │ ├── Rio_Branco │ │ │ ├── Rosario │ │ │ ├── Santa_Isabel │ │ │ ├── Santarem │ │ │ ├── Santiago │ │ │ ├── Santo_Domingo │ │ │ ├── Sao_Paulo │ │ │ ├── Scoresbysund │ │ │ ├── Shiprock │ │ │ ├── Sitka │ │ │ ├── St_Barthelemy │ │ │ ├── St_Johns │ │ │ ├── St_Kitts │ │ │ ├── St_Lucia │ │ │ ├── St_Thomas │ │ │ ├── St_Vincent │ │ │ ├── Swift_Current │ │ │ ├── Tegucigalpa │ │ │ ├── Thule │ │ │ ├── Thunder_Bay │ │ │ ├── Tijuana │ │ │ ├── Toronto │ │ │ ├── Tortola │ │ │ ├── Vancouver │ │ │ ├── Virgin │ │ │ ├── Whitehorse │ │ │ ├── Winnipeg │ │ │ ├── Yakutat │ │ │ └── Yellowknife │ │ │ ├── Antarctica │ │ │ ├── Casey │ │ │ ├── Davis │ │ │ ├── DumontDUrville │ │ │ ├── Macquarie │ │ │ ├── Mawson │ │ │ ├── McMurdo │ │ │ ├── Palmer │ │ │ ├── Rothera │ │ │ ├── South_Pole │ │ │ ├── Syowa │ │ │ ├── Troll │ │ │ └── Vostok │ │ │ ├── Arctic │ │ │ └── Longyearbyen │ │ │ ├── Asia │ │ │ ├── Aden │ │ │ ├── Almaty │ │ │ ├── Amman │ │ │ ├── Anadyr │ │ │ ├── Aqtau │ │ │ ├── Aqtobe │ │ │ ├── Ashgabat │ │ │ ├── Ashkhabad │ │ │ ├── Baghdad │ │ │ ├── Bahrain │ │ │ ├── Baku │ │ │ ├── Bangkok │ │ │ ├── Beirut │ │ │ ├── Bishkek │ │ │ ├── Brunei │ │ │ ├── Calcutta │ │ │ ├── Chita │ │ │ ├── Choibalsan │ │ │ ├── Chongqing │ │ │ ├── Chungking │ │ │ ├── Colombo │ │ │ ├── Dacca │ │ │ ├── Damascus │ │ │ ├── Dhaka │ │ │ ├── Dili │ │ │ ├── Dubai │ │ │ ├── Dushanbe │ │ │ ├── Gaza │ │ │ ├── Harbin │ │ │ ├── Hebron │ │ │ ├── Ho_Chi_Minh │ │ │ ├── Hong_Kong │ │ │ ├── Hovd │ │ │ ├── Irkutsk │ │ │ ├── Istanbul │ │ │ ├── Jakarta │ │ │ ├── Jayapura │ │ │ ├── Jerusalem │ │ │ ├── Kabul │ │ │ ├── Kamchatka │ │ │ ├── Karachi │ │ │ ├── Kashgar │ │ │ ├── Kathmandu │ │ │ ├── Katmandu │ │ │ ├── Khandyga │ │ │ ├── Kolkata │ │ │ ├── Krasnoyarsk │ │ │ ├── Kuala_Lumpur │ │ │ ├── Kuching │ │ │ ├── Kuwait │ │ │ ├── Macao │ │ │ ├── Macau │ │ │ ├── Magadan │ │ │ ├── Makassar │ │ │ ├── Manila │ │ │ ├── Muscat │ │ │ ├── Nicosia │ │ │ ├── Novokuznetsk │ │ │ ├── Novosibirsk │ │ │ ├── Omsk │ │ │ ├── Oral │ │ │ ├── Phnom_Penh │ │ │ ├── Pontianak │ │ │ ├── Pyongyang │ │ │ ├── Qatar │ │ │ ├── Qyzylorda │ │ │ ├── Rangoon │ │ │ ├── Riyadh │ │ │ ├── Saigon │ │ │ ├── Sakhalin │ │ │ ├── Samarkand │ │ │ ├── Seoul │ │ │ ├── Shanghai │ │ │ ├── Singapore │ │ │ ├── Srednekolymsk │ │ │ ├── Taipei │ │ │ ├── Tashkent │ │ │ ├── Tbilisi │ │ │ ├── Tehran │ │ │ ├── Tel_Aviv │ │ │ ├── Thimbu │ │ │ ├── Thimphu │ │ │ ├── Tokyo │ │ │ ├── Ujung_Pandang │ │ │ ├── Ulaanbaatar │ │ │ ├── Ulan_Bator │ │ │ ├── Urumqi │ │ │ ├── Ust-Nera │ │ │ ├── Vientiane │ │ │ ├── Vladivostok │ │ │ ├── Yakutsk │ │ │ ├── Yekaterinburg │ │ │ └── Yerevan │ │ │ ├── Atlantic │ │ │ ├── Azores │ │ │ ├── Bermuda │ │ │ ├── Canary │ │ │ ├── Cape_Verde │ │ │ ├── Faeroe │ │ │ ├── Faroe │ │ │ ├── Jan_Mayen │ │ │ ├── Madeira │ │ │ ├── Reykjavik │ │ │ ├── South_Georgia │ │ │ ├── St_Helena │ │ │ └── Stanley │ │ │ ├── Australia │ │ │ ├── ACT │ │ │ ├── Adelaide │ │ │ ├── Brisbane │ │ │ ├── Broken_Hill │ │ │ ├── Canberra │ │ │ ├── Currie │ │ │ ├── Darwin │ │ │ ├── Eucla │ │ │ ├── Hobart │ │ │ ├── LHI │ │ │ ├── Lindeman │ │ │ ├── Lord_Howe │ │ │ ├── Melbourne │ │ │ ├── NSW │ │ │ ├── North │ │ │ ├── Perth │ │ │ ├── Queensland │ │ │ ├── South │ │ │ ├── Sydney │ │ │ ├── Tasmania │ │ │ ├── Victoria │ │ │ ├── West │ │ │ └── Yancowinna │ │ │ ├── Brazil │ │ │ ├── Acre │ │ │ ├── DeNoronha │ │ │ ├── East │ │ │ └── West │ │ │ ├── CET │ │ │ ├── CST6CDT │ │ │ ├── Canada │ │ │ ├── Atlantic │ │ │ ├── Central │ │ │ ├── East-Saskatchewan │ │ │ ├── Eastern │ │ │ ├── Mountain │ │ │ ├── Newfoundland │ │ │ ├── Pacific │ │ │ ├── Saskatchewan │ │ │ └── Yukon │ │ │ ├── Chile │ │ │ ├── Continental │ │ │ └── EasterIsland │ │ │ ├── Cuba │ │ │ ├── EET │ │ │ ├── EST │ │ │ ├── EST5EDT │ │ │ ├── Egypt │ │ │ ├── Eire │ │ │ ├── Etc │ │ │ ├── GMT │ │ │ ├── GMT+0 │ │ │ ├── GMT+1 │ │ │ ├── GMT+10 │ │ │ ├── GMT+11 │ │ │ ├── GMT+12 │ │ │ ├── GMT+2 │ │ │ ├── GMT+3 │ │ │ ├── GMT+4 │ │ │ ├── GMT+5 │ │ │ ├── GMT+6 │ │ │ ├── GMT+7 │ │ │ ├── GMT+8 │ │ │ ├── GMT+9 │ │ │ ├── GMT-0 │ │ │ ├── GMT-1 │ │ │ ├── GMT-10 │ │ │ ├── GMT-11 │ │ │ ├── GMT-12 │ │ │ ├── GMT-13 │ │ │ ├── GMT-14 │ │ │ ├── GMT-2 │ │ │ ├── GMT-3 │ │ │ ├── GMT-4 │ │ │ ├── GMT-5 │ │ │ ├── GMT-6 │ │ │ ├── GMT-7 │ │ │ ├── GMT-8 │ │ │ ├── GMT-9 │ │ │ ├── GMT0 │ │ │ ├── Greenwich │ │ │ ├── UCT │ │ │ ├── UTC │ │ │ ├── Universal │ │ │ └── Zulu │ │ │ ├── Europe │ │ │ ├── Amsterdam │ │ │ ├── Andorra │ │ │ ├── Athens │ │ │ ├── Belfast │ │ │ ├── Belgrade │ │ │ ├── Berlin │ │ │ ├── Bratislava │ │ │ ├── Brussels │ │ │ ├── Bucharest │ │ │ ├── Budapest │ │ │ ├── Busingen │ │ │ ├── Chisinau │ │ │ ├── Copenhagen │ │ │ ├── Dublin │ │ │ ├── Gibraltar │ │ │ ├── Guernsey │ │ │ ├── Helsinki │ │ │ ├── Isle_of_Man │ │ │ ├── Istanbul │ │ │ ├── Jersey │ │ │ ├── Kaliningrad │ │ │ ├── Kiev │ │ │ ├── Lisbon │ │ │ ├── Ljubljana │ │ │ ├── London │ │ │ ├── Luxembourg │ │ │ ├── Madrid │ │ │ ├── Malta │ │ │ ├── Mariehamn │ │ │ ├── Minsk │ │ │ ├── Monaco │ │ │ ├── Moscow │ │ │ ├── Nicosia │ │ │ ├── Oslo │ │ │ ├── Paris │ │ │ ├── Podgorica │ │ │ ├── Prague │ │ │ ├── Riga │ │ │ ├── Rome │ │ │ ├── Samara │ │ │ ├── San_Marino │ │ │ ├── Sarajevo │ │ │ ├── Simferopol │ │ │ ├── Skopje │ │ │ ├── Sofia │ │ │ ├── Stockholm │ │ │ ├── Tallinn │ │ │ ├── Tirane │ │ │ ├── Tiraspol │ │ │ ├── Uzhgorod │ │ │ ├── Vaduz │ │ │ ├── Vatican │ │ │ ├── Vienna │ │ │ ├── Vilnius │ │ │ ├── Volgograd │ │ │ ├── Warsaw │ │ │ ├── Zagreb │ │ │ ├── Zaporozhye │ │ │ └── Zurich │ │ │ ├── Factory │ │ │ ├── GB │ │ │ ├── GB-Eire │ │ │ ├── GMT │ │ │ ├── GMT+0 │ │ │ ├── GMT-0 │ │ │ ├── GMT0 │ │ │ ├── Greenwich │ │ │ ├── HST │ │ │ ├── Hongkong │ │ │ ├── Iceland │ │ │ ├── Indian │ │ │ ├── Antananarivo │ │ │ ├── Chagos │ │ │ ├── Christmas │ │ │ ├── Cocos │ │ │ ├── Comoro │ │ │ ├── Kerguelen │ │ │ ├── Mahe │ │ │ ├── Maldives │ │ │ ├── Mauritius │ │ │ ├── Mayotte │ │ │ └── Reunion │ │ │ ├── Iran │ │ │ ├── Israel │ │ │ ├── Jamaica │ │ │ ├── Japan │ │ │ ├── Kwajalein │ │ │ ├── Libya │ │ │ ├── MET │ │ │ ├── MST │ │ │ ├── MST7MDT │ │ │ ├── Mexico │ │ │ ├── BajaNorte │ │ │ ├── BajaSur │ │ │ └── General │ │ │ ├── NZ │ │ │ ├── NZ-CHAT │ │ │ ├── Navajo │ │ │ ├── PRC │ │ │ ├── PST8PDT │ │ │ ├── Pacific │ │ │ ├── Apia │ │ │ ├── Auckland │ │ │ ├── Bougainville │ │ │ ├── Chatham │ │ │ ├── Chuuk │ │ │ ├── Easter │ │ │ ├── Efate │ │ │ ├── Enderbury │ │ │ ├── Fakaofo │ │ │ ├── Fiji │ │ │ ├── Funafuti │ │ │ ├── Galapagos │ │ │ ├── Gambier │ │ │ ├── Guadalcanal │ │ │ ├── Guam │ │ │ ├── Honolulu │ │ │ ├── Johnston │ │ │ ├── Kiritimati │ │ │ ├── Kosrae │ │ │ ├── Kwajalein │ │ │ ├── Majuro │ │ │ ├── Marquesas │ │ │ ├── Midway │ │ │ ├── Nauru │ │ │ ├── Niue │ │ │ ├── Norfolk │ │ │ ├── Noumea │ │ │ ├── Pago_Pago │ │ │ ├── Palau │ │ │ ├── Pitcairn │ │ │ ├── Pohnpei │ │ │ ├── Ponape │ │ │ ├── Port_Moresby │ │ │ ├── Rarotonga │ │ │ ├── Saipan │ │ │ ├── Samoa │ │ │ ├── Tahiti │ │ │ ├── Tarawa │ │ │ ├── Tongatapu │ │ │ ├── Truk │ │ │ ├── Wake │ │ │ ├── Wallis │ │ │ └── Yap │ │ │ ├── Poland │ │ │ ├── Portugal │ │ │ ├── ROC │ │ │ ├── ROK │ │ │ ├── Singapore │ │ │ ├── Turkey │ │ │ ├── UCT │ │ │ ├── US │ │ │ ├── Alaska │ │ │ ├── Aleutian │ │ │ ├── Arizona │ │ │ ├── Central │ │ │ ├── East-Indiana │ │ │ ├── Eastern │ │ │ ├── Hawaii │ │ │ ├── Indiana-Starke │ │ │ ├── Michigan │ │ │ ├── Mountain │ │ │ ├── Pacific │ │ │ ├── Pacific-New │ │ │ └── Samoa │ │ │ ├── UTC │ │ │ ├── Universal │ │ │ ├── W-SU │ │ │ ├── WET │ │ │ ├── Zulu │ │ │ ├── iso3166.tab │ │ │ ├── localtime │ │ │ ├── posixrules │ │ │ ├── zone.tab │ │ │ └── zone1970.tab │ │ ├── setuptools-2.1.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── dependency_links.txt │ │ ├── entry_points.txt │ │ ├── entry_points.txt.orig │ │ ├── pydist.json │ │ ├── requires.txt.orig │ │ ├── top_level.txt │ │ └── zip-safe │ │ ├── setuptools │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── archive_util.cpython-34.pyc │ │ │ ├── compat.cpython-34.pyc │ │ │ ├── depends.cpython-34.pyc │ │ │ ├── dist.cpython-34.pyc │ │ │ ├── extension.cpython-34.pyc │ │ │ ├── lib2to3_ex.cpython-34.pyc │ │ │ ├── package_index.cpython-34.pyc │ │ │ ├── py26compat.cpython-34.pyc │ │ │ ├── py27compat.cpython-34.pyc │ │ │ ├── py31compat.cpython-34.pyc │ │ │ ├── sandbox.cpython-34.pyc │ │ │ ├── script template (dev).cpython-34.pyc │ │ │ ├── script template.cpython-34.pyc │ │ │ ├── site-patch.cpython-34.pyc │ │ │ ├── ssl_support.cpython-34.pyc │ │ │ ├── svn_utils.cpython-34.pyc │ │ │ └── version.cpython-34.pyc │ │ ├── archive_util.py │ │ ├── cli-32.exe │ │ ├── cli-64.exe │ │ ├── cli-arm-32.exe │ │ ├── cli.exe │ │ ├── command │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ ├── alias.cpython-34.pyc │ │ │ │ ├── bdist_egg.cpython-34.pyc │ │ │ │ ├── bdist_rpm.cpython-34.pyc │ │ │ │ ├── bdist_wininst.cpython-34.pyc │ │ │ │ ├── build_ext.cpython-34.pyc │ │ │ │ ├── build_py.cpython-34.pyc │ │ │ │ ├── develop.cpython-34.pyc │ │ │ │ ├── easy_install.cpython-34.pyc │ │ │ │ ├── egg_info.cpython-34.pyc │ │ │ │ ├── install.cpython-34.pyc │ │ │ │ ├── install_egg_info.cpython-34.pyc │ │ │ │ ├── install_lib.cpython-34.pyc │ │ │ │ ├── install_scripts.cpython-34.pyc │ │ │ │ ├── register.cpython-34.pyc │ │ │ │ ├── rotate.cpython-34.pyc │ │ │ │ ├── saveopts.cpython-34.pyc │ │ │ │ ├── sdist.cpython-34.pyc │ │ │ │ ├── setopt.cpython-34.pyc │ │ │ │ ├── test.cpython-34.pyc │ │ │ │ └── upload_docs.cpython-34.pyc │ │ │ ├── alias.py │ │ │ ├── bdist_egg.py │ │ │ ├── bdist_rpm.py │ │ │ ├── bdist_wininst.py │ │ │ ├── build_ext.py │ │ │ ├── build_py.py │ │ │ ├── develop.py │ │ │ ├── easy_install.py │ │ │ ├── egg_info.py │ │ │ ├── install.py │ │ │ ├── install_egg_info.py │ │ │ ├── install_lib.py │ │ │ ├── install_scripts.py │ │ │ ├── launcher manifest.xml │ │ │ ├── register.py │ │ │ ├── rotate.py │ │ │ ├── saveopts.py │ │ │ ├── sdist.py │ │ │ ├── setopt.py │ │ │ ├── test.py │ │ │ └── upload_docs.py │ │ ├── compat.py │ │ ├── depends.py │ │ ├── dist.py │ │ ├── extension.py │ │ ├── gui-32.exe │ │ ├── gui-64.exe │ │ ├── gui-arm-32.exe │ │ ├── gui.exe │ │ ├── lib2to3_ex.py │ │ ├── package_index.py │ │ ├── py26compat.py │ │ ├── py27compat.py │ │ ├── py31compat.py │ │ ├── sandbox.py │ │ ├── script template (dev).py │ │ ├── script template.py │ │ ├── site-patch.py │ │ ├── ssl_support.py │ │ ├── svn_utils.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ ├── doctest.cpython-34.pyc │ │ │ │ ├── environment.cpython-34.pyc │ │ │ │ ├── py26compat.cpython-34.pyc │ │ │ │ ├── script-with-bom.cpython-34.pyc │ │ │ │ ├── server.cpython-34.pyc │ │ │ │ ├── test_bdist_egg.cpython-34.pyc │ │ │ │ ├── test_build_ext.cpython-34.pyc │ │ │ │ ├── test_develop.cpython-34.pyc │ │ │ │ ├── test_dist_info.cpython-34.pyc │ │ │ │ ├── test_easy_install.cpython-34.pyc │ │ │ │ ├── test_egg_info.cpython-34.pyc │ │ │ │ ├── test_markerlib.cpython-34.pyc │ │ │ │ ├── test_packageindex.cpython-34.pyc │ │ │ │ ├── test_resources.cpython-34.pyc │ │ │ │ ├── test_sandbox.cpython-34.pyc │ │ │ │ ├── test_sdist.cpython-34.pyc │ │ │ │ ├── test_svn.cpython-34.pyc │ │ │ │ ├── test_test.cpython-34.pyc │ │ │ │ └── test_upload_docs.cpython-34.pyc │ │ │ ├── doctest.py │ │ │ ├── environment.py │ │ │ ├── py26compat.py │ │ │ ├── script-with-bom.py │ │ │ ├── server.py │ │ │ ├── test_bdist_egg.py │ │ │ ├── test_build_ext.py │ │ │ ├── test_develop.py │ │ │ ├── test_dist_info.py │ │ │ ├── test_easy_install.py │ │ │ ├── test_egg_info.py │ │ │ ├── test_markerlib.py │ │ │ ├── test_packageindex.py │ │ │ ├── test_resources.py │ │ │ ├── test_sandbox.py │ │ │ ├── test_sdist.py │ │ │ ├── test_svn.py │ │ │ ├── test_test.py │ │ │ └── test_upload_docs.py │ │ └── version.py │ │ ├── speaklater-1.3-py3.4.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── installed-files.txt │ │ ├── not-zip-safe │ │ └── top_level.txt │ │ ├── speaklater.py │ │ ├── werkzeug │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── _compat.cpython-34.pyc │ │ │ ├── _internal.cpython-34.pyc │ │ │ ├── _reloader.cpython-34.pyc │ │ │ ├── datastructures.cpython-34.pyc │ │ │ ├── exceptions.cpython-34.pyc │ │ │ ├── formparser.cpython-34.pyc │ │ │ ├── http.cpython-34.pyc │ │ │ ├── local.cpython-34.pyc │ │ │ ├── posixemulation.cpython-34.pyc │ │ │ ├── routing.cpython-34.pyc │ │ │ ├── script.cpython-34.pyc │ │ │ ├── security.cpython-34.pyc │ │ │ ├── serving.cpython-34.pyc │ │ │ ├── test.cpython-34.pyc │ │ │ ├── testapp.cpython-34.pyc │ │ │ ├── urls.cpython-34.pyc │ │ │ ├── useragents.cpython-34.pyc │ │ │ ├── utils.cpython-34.pyc │ │ │ ├── wrappers.cpython-34.pyc │ │ │ └── wsgi.cpython-34.pyc │ │ ├── _compat.py │ │ ├── _internal.py │ │ ├── _reloader.py │ │ ├── contrib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ ├── atom.cpython-34.pyc │ │ │ │ ├── cache.cpython-34.pyc │ │ │ │ ├── fixers.cpython-34.pyc │ │ │ │ ├── iterio.cpython-34.pyc │ │ │ │ ├── jsrouting.cpython-34.pyc │ │ │ │ ├── limiter.cpython-34.pyc │ │ │ │ ├── lint.cpython-34.pyc │ │ │ │ ├── profiler.cpython-34.pyc │ │ │ │ ├── securecookie.cpython-34.pyc │ │ │ │ ├── sessions.cpython-34.pyc │ │ │ │ ├── testtools.cpython-34.pyc │ │ │ │ └── wrappers.cpython-34.pyc │ │ │ ├── atom.py │ │ │ ├── cache.py │ │ │ ├── fixers.py │ │ │ ├── iterio.py │ │ │ ├── jsrouting.py │ │ │ ├── limiter.py │ │ │ ├── lint.py │ │ │ ├── profiler.py │ │ │ ├── securecookie.py │ │ │ ├── sessions.py │ │ │ ├── testtools.py │ │ │ └── wrappers.py │ │ ├── datastructures.py │ │ ├── debug │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ ├── console.cpython-34.pyc │ │ │ │ ├── repr.cpython-34.pyc │ │ │ │ └── tbtools.cpython-34.pyc │ │ │ ├── console.py │ │ │ ├── repr.py │ │ │ ├── shared │ │ │ │ ├── FONT_LICENSE │ │ │ │ ├── console.png │ │ │ │ ├── debugger.js │ │ │ │ ├── jquery.js │ │ │ │ ├── less.png │ │ │ │ ├── more.png │ │ │ │ ├── source.png │ │ │ │ ├── style.css │ │ │ │ └── ubuntu.ttf │ │ │ └── tbtools.py │ │ ├── exceptions.py │ │ ├── formparser.py │ │ ├── http.py │ │ ├── local.py │ │ ├── posixemulation.py │ │ ├── routing.py │ │ ├── script.py │ │ ├── security.py │ │ ├── serving.py │ │ ├── test.py │ │ ├── testapp.py │ │ ├── urls.py │ │ ├── useragents.py │ │ ├── utils.py │ │ ├── wrappers.py │ │ └── wsgi.py │ │ └── wtforms │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-34.pyc │ │ ├── compat.cpython-34.pyc │ │ ├── form.cpython-34.pyc │ │ ├── i18n.cpython-34.pyc │ │ ├── meta.cpython-34.pyc │ │ ├── utils.cpython-34.pyc │ │ └── validators.cpython-34.pyc │ │ ├── compat.py │ │ ├── csrf │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── core.cpython-34.pyc │ │ │ └── session.cpython-34.pyc │ │ ├── core.py │ │ └── session.py │ │ ├── ext │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-34.pyc │ │ ├── appengine │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ ├── db.cpython-34.pyc │ │ │ │ ├── fields.cpython-34.pyc │ │ │ │ └── ndb.cpython-34.pyc │ │ │ ├── db.py │ │ │ ├── fields.py │ │ │ └── ndb.py │ │ ├── csrf │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ ├── fields.cpython-34.pyc │ │ │ │ ├── form.cpython-34.pyc │ │ │ │ └── session.cpython-34.pyc │ │ │ ├── fields.py │ │ │ ├── form.py │ │ │ └── session.py │ │ ├── dateutil │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ └── fields.cpython-34.pyc │ │ │ └── fields.py │ │ ├── django │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ ├── fields.cpython-34.pyc │ │ │ │ ├── i18n.cpython-34.pyc │ │ │ │ └── orm.cpython-34.pyc │ │ │ ├── fields.py │ │ │ ├── i18n.py │ │ │ ├── orm.py │ │ │ └── templatetags │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ └── wtforms.cpython-34.pyc │ │ │ │ └── wtforms.py │ │ ├── i18n │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ ├── form.cpython-34.pyc │ │ │ │ └── utils.cpython-34.pyc │ │ │ ├── form.py │ │ │ └── utils.py │ │ └── sqlalchemy │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── fields.cpython-34.pyc │ │ │ └── orm.cpython-34.pyc │ │ │ ├── fields.py │ │ │ └── orm.py │ │ ├── fields │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── core.cpython-34.pyc │ │ │ ├── html5.cpython-34.pyc │ │ │ └── simple.cpython-34.pyc │ │ ├── core.py │ │ ├── html5.py │ │ └── simple.py │ │ ├── form.py │ │ ├── i18n.py │ │ ├── locale │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── wtforms.mo │ │ │ │ └── wtforms.po │ │ ├── cs_CZ │ │ │ └── LC_MESSAGES │ │ │ │ ├── wtforms.mo │ │ │ │ └── wtforms.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── wtforms.mo │ │ │ │ └── wtforms.po │ │ ├── de_CH │ │ │ └── LC_MESSAGES │ │ │ │ ├── wtforms.mo │ │ │ │ └── wtforms.po │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── wtforms.mo │ │ │ │ └── wtforms.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ ├── wtforms.mo │ │ │ │ └── wtforms.po │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ ├── wtforms.mo │ │ │ │ └── wtforms.po │ │ ├── et │ │ │ └── LC_MESSAGES │ │ │ │ ├── wtforms.mo │ │ │ │ └── wtforms.po │ │ ├── fa │ │ │ └── LC_MESSAGES │ │ │ │ ├── wtforms.mo │ │ │ │ └── wtforms.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── wtforms.mo │ │ │ │ └── wtforms.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── wtforms.mo │ │ │ │ └── wtforms.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── wtforms.mo │ │ │ │ └── wtforms.po │ │ ├── nb │ │ │ └── LC_MESSAGES │ │ │ │ ├── wtforms.mo │ │ │ │ └── wtforms.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── wtforms.mo │ │ │ │ └── wtforms.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── wtforms.mo │ │ │ │ └── wtforms.po │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ ├── wtforms.mo │ │ │ │ └── wtforms.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── wtforms.mo │ │ │ │ └── wtforms.po │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── wtforms.mo │ │ │ │ └── wtforms.po │ │ ├── wtforms.pot │ │ ├── zh │ │ │ └── LC_MESSAGES │ │ │ │ ├── wtforms.mo │ │ │ │ └── wtforms.po │ │ └── zh_TW │ │ │ └── LC_MESSAGES │ │ │ ├── wtforms.mo │ │ │ └── wtforms.po │ │ ├── meta.py │ │ ├── utils.py │ │ ├── validators.py │ │ └── widgets │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-34.pyc │ │ ├── core.cpython-34.pyc │ │ └── html5.cpython-34.pyc │ │ ├── core.py │ │ └── html5.py └── pyvenv.cfg ├── requirements.txt ├── run.py ├── runtime.txt └── temp.jpg /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn --log-file - app:app 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/config.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/__pycache__/config.cpython-34.pyc -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/app/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /app/__pycache__/forms.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/app/__pycache__/forms.cpython-34.pyc -------------------------------------------------------------------------------- /app/__pycache__/views.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/app/__pycache__/views.cpython-34.pyc -------------------------------------------------------------------------------- /app/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/model/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/app/model/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /app/model/__pycache__/alpha_cnn_predict.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/app/model/__pycache__/alpha_cnn_predict.cpython-34.pyc -------------------------------------------------------------------------------- /app/model/__pycache__/preprocessor.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/app/model/__pycache__/preprocessor.cpython-34.pyc -------------------------------------------------------------------------------- /app/model/alpha_cnn_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/app/model/alpha_cnn_predict.py -------------------------------------------------------------------------------- /app/model/alpha_weights.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/app/model/alpha_weights.pkl -------------------------------------------------------------------------------- /app/model/preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/app/model/preprocessor.py -------------------------------------------------------------------------------- /app/static/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/app/static/analytics.js -------------------------------------------------------------------------------- /app/static/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/app/static/bootstrap-theme.min.css -------------------------------------------------------------------------------- /app/static/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/app/static/bootstrap.min.css -------------------------------------------------------------------------------- /app/static/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/app/static/bootstrap.min.js -------------------------------------------------------------------------------- /app/static/css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/app/static/css -------------------------------------------------------------------------------- /app/static/img/cnn_ocr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/app/static/img/cnn_ocr.png -------------------------------------------------------------------------------- /app/static/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/app/static/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /app/static/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/app/static/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /app/static/img/python.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/app/static/img/python.ico -------------------------------------------------------------------------------- /app/static/img/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/app/static/img/python.png -------------------------------------------------------------------------------- /app/static/img/recognized_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/app/static/img/recognized_o.png -------------------------------------------------------------------------------- /app/static/img/recognized_q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/app/static/img/recognized_q.png -------------------------------------------------------------------------------- /app/static/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/app/static/jquery.min.js -------------------------------------------------------------------------------- /app/static/js/MathJax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/app/static/js/MathJax.js -------------------------------------------------------------------------------- /app/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/app/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /app/static/js/ocr_canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/app/static/js/ocr_canvas.js -------------------------------------------------------------------------------- /app/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/app/static/style.css -------------------------------------------------------------------------------- /app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/app/templates/base.html -------------------------------------------------------------------------------- /app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/app/templates/index.html -------------------------------------------------------------------------------- /app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/app/views.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/dataset.txt -------------------------------------------------------------------------------- /flask/bin/__pycache__/createfontdatachunk.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/__pycache__/createfontdatachunk.cpython-34.pyc -------------------------------------------------------------------------------- /flask/bin/__pycache__/enhancer.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/__pycache__/enhancer.cpython-34.pyc -------------------------------------------------------------------------------- /flask/bin/__pycache__/explode.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/__pycache__/explode.cpython-34.pyc -------------------------------------------------------------------------------- /flask/bin/__pycache__/gifmaker.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/__pycache__/gifmaker.cpython-34.pyc -------------------------------------------------------------------------------- /flask/bin/__pycache__/painter.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/__pycache__/painter.cpython-34.pyc -------------------------------------------------------------------------------- /flask/bin/__pycache__/pilconvert.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/__pycache__/pilconvert.cpython-34.pyc -------------------------------------------------------------------------------- /flask/bin/__pycache__/pildriver.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/__pycache__/pildriver.cpython-34.pyc -------------------------------------------------------------------------------- /flask/bin/__pycache__/pilfile.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/__pycache__/pilfile.cpython-34.pyc -------------------------------------------------------------------------------- /flask/bin/__pycache__/pilfont.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/__pycache__/pilfont.cpython-34.pyc -------------------------------------------------------------------------------- /flask/bin/__pycache__/pilprint.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/__pycache__/pilprint.cpython-34.pyc -------------------------------------------------------------------------------- /flask/bin/__pycache__/player.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/__pycache__/player.cpython-34.pyc -------------------------------------------------------------------------------- /flask/bin/__pycache__/thresholder.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/__pycache__/thresholder.cpython-34.pyc -------------------------------------------------------------------------------- /flask/bin/__pycache__/viewer.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/__pycache__/viewer.cpython-34.pyc -------------------------------------------------------------------------------- /flask/bin/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/activate -------------------------------------------------------------------------------- /flask/bin/activate.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/activate.csh -------------------------------------------------------------------------------- /flask/bin/activate.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/activate.fish -------------------------------------------------------------------------------- /flask/bin/coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/coverage -------------------------------------------------------------------------------- /flask/bin/coverage-3.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/coverage-3.4 -------------------------------------------------------------------------------- /flask/bin/coverage3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/coverage3 -------------------------------------------------------------------------------- /flask/bin/createfontdatachunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/createfontdatachunk.py -------------------------------------------------------------------------------- /flask/bin/easy_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/easy_install -------------------------------------------------------------------------------- /flask/bin/easy_install-3.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/easy_install-3.4 -------------------------------------------------------------------------------- /flask/bin/enhancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/enhancer.py -------------------------------------------------------------------------------- /flask/bin/explode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/explode.py -------------------------------------------------------------------------------- /flask/bin/f2py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/f2py -------------------------------------------------------------------------------- /flask/bin/gifmaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/gifmaker.py -------------------------------------------------------------------------------- /flask/bin/painter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/painter.py -------------------------------------------------------------------------------- /flask/bin/pilconvert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/pilconvert.py -------------------------------------------------------------------------------- /flask/bin/pildriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/pildriver.py -------------------------------------------------------------------------------- /flask/bin/pilfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/pilfile.py -------------------------------------------------------------------------------- /flask/bin/pilfont.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/pilfont.py -------------------------------------------------------------------------------- /flask/bin/pilprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/pilprint.py -------------------------------------------------------------------------------- /flask/bin/pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/pip -------------------------------------------------------------------------------- /flask/bin/pip3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/pip3 -------------------------------------------------------------------------------- /flask/bin/pip3.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/pip3.4 -------------------------------------------------------------------------------- /flask/bin/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/player.py -------------------------------------------------------------------------------- /flask/bin/pybabel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/pybabel -------------------------------------------------------------------------------- /flask/bin/python: -------------------------------------------------------------------------------- 1 | /Users/Sam/ml/webml/flask/bin/python3 -------------------------------------------------------------------------------- /flask/bin/python3: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.4/bin/python3 -------------------------------------------------------------------------------- /flask/bin/thresholder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/thresholder.py -------------------------------------------------------------------------------- /flask/bin/viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/bin/viewer.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/Babel-2.1.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | babel 2 | -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/Flask-0.10.1-py3.4.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/Flask-0.10.1-py3.4.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/Flask-0.10.1-py3.4.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | Werkzeug>=0.7 2 | Jinja2>=2.4 3 | itsdangerous>=0.21 -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/Flask-0.10.1-py3.4.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | flask 2 | -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/Flask_Babel-0.9-py3.4.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/Flask_Babel-0.9-py3.4.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/Flask_Babel-0.9-py3.4.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | flask_babel 2 | -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/Flask_WTF-0.12-py3.4.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/Flask_WTF-0.12-py3.4.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/Flask_WTF-0.12-py3.4.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | Werkzeug 3 | WTForms -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/Flask_WTF-0.12-py3.4.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | flask_wtf 2 | -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/Jinja2-2.8.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/Jinja2-2.8.dist-info/WHEEL -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/Jinja2-2.8.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jinja2 2 | -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | markupsafe 2 | -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/BdfFontFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/BdfFontFile.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/BmpImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/BmpImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/BufrStubImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/BufrStubImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/ContainerIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/ContainerIO.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/CurImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/CurImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/DcxImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/DcxImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/EpsImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/EpsImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/ExifTags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/ExifTags.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/FitsStubImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/FitsStubImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/FliImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/FliImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/FontFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/FontFile.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/FpxImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/FpxImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/GbrImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/GbrImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/GdImageFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/GdImageFile.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/GifImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/GifImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/GimpGradientFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/GimpGradientFile.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/GimpPaletteFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/GimpPaletteFile.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/GribStubImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/GribStubImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/Hdf5StubImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/Hdf5StubImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/IcnsImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/IcnsImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/IcoImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/IcoImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/ImImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/ImImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/Image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/Image.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/ImageChops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/ImageChops.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/ImageCms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/ImageCms.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/ImageColor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/ImageColor.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/ImageDraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/ImageDraw.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/ImageDraw2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/ImageDraw2.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/ImageEnhance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/ImageEnhance.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/ImageFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/ImageFile.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/ImageFilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/ImageFilter.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/ImageFont.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/ImageFont.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/ImageGrab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/ImageGrab.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/ImageMath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/ImageMath.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/ImageMode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/ImageMode.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/ImageMorph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/ImageMorph.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/ImageOps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/ImageOps.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/ImagePalette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/ImagePalette.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/ImagePath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/ImagePath.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/ImageQt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/ImageQt.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/ImageSequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/ImageSequence.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/ImageShow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/ImageShow.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/ImageStat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/ImageStat.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/ImageTk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/ImageTk.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/ImageTransform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/ImageTransform.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/ImageWin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/ImageWin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/ImtImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/ImtImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/IptcImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/IptcImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/Jpeg2KImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/Jpeg2KImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/JpegImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/JpegImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/JpegPresets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/JpegPresets.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/McIdasImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/McIdasImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/MicImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/MicImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/MpegImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/MpegImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/MpoImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/MpoImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/MspImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/MspImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/OleFileIO-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/OleFileIO-README.md -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/OleFileIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/OleFileIO.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/PSDraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/PSDraw.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/PaletteFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/PaletteFile.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/PalmImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/PalmImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/PcdImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/PcdImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/PcfFontFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/PcfFontFile.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/PcxImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/PcxImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/PdfImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/PdfImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/PixarImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/PixarImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/PngImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/PngImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/PpmImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/PpmImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/PsdImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/PsdImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/PyAccess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/PyAccess.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/SgiImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/SgiImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/SpiderImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/SpiderImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/SunImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/SunImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/TarIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/TarIO.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/TgaImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/TgaImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/TiffImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/TiffImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/TiffTags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/TiffTags.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/WalImageFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/WalImageFile.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/WebPImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/WebPImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/WmfImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/WmfImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/XVThumbImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/XVThumbImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/XbmImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/XbmImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/XpmImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/XpmImagePlugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/__init__.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/_binary.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/_imaging.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/_imaging.so -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/_imagingcms.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/_imagingcms.so -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/_imagingft.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/_imagingft.so -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/_imagingmath.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/_imagingmath.so -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/_imagingmorph.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/_imagingmorph.so -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/_imagingtk.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/_imagingtk.so -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/_util.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/_webp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/_webp.so -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/PIL/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/PIL/features.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/Pillow-3.0.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | PIL 2 | -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/Pillow-3.0.0.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/WTForms-2.0.2.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | UNKNOWN 2 | 3 | 4 | -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/WTForms-2.0.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | wtforms 2 | -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/Werkzeug-0.10.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | werkzeug 2 | -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/_markerlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/_markerlib/__init__.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/_markerlib/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/_markerlib/markers.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/__init__.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/_compat.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/core.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/dates.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/global.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/global.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/aa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/aa.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/aa_DJ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/aa_DJ.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/aa_ER.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/aa_ER.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/aa_ET.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/aa_ET.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/af.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/af.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/af_NA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/af_NA.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/af_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/af_ZA.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/agq.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/agq.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ak.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ak.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ak_GH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ak_GH.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/am.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/am.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/am_ET.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/am_ET.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ar.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ar.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ar_AE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ar_AE.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ar_BH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ar_BH.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ar_DJ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ar_DJ.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ar_DZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ar_DZ.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ar_EG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ar_EG.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ar_EH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ar_EH.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ar_ER.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ar_ER.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ar_IL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ar_IL.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ar_IQ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ar_IQ.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ar_JO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ar_JO.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ar_KM.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ar_KM.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ar_KW.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ar_KW.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ar_LB.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ar_LB.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ar_LY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ar_LY.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ar_MA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ar_MA.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ar_MR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ar_MR.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ar_OM.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ar_OM.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ar_PS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ar_PS.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ar_QA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ar_QA.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ar_SA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ar_SA.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ar_SD.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ar_SD.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ar_SO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ar_SO.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/as.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/as.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/az.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/az.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/be.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/be.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/bg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/bg.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/bm.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/bm.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/bn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/bn.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/bo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/bo.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/br.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/br.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/bs.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/bs.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ca.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ca.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/cs.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/cs.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/cy.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/cy.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/da.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/da.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/de.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/de.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/dz.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/dz.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ee.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ee.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/el.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/el.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/en.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/en.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/eo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/eo.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/es.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/es.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/et.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/et.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/eu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/eu.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/fa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/fa.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ff.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ff.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/fi.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/fi.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/fo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/fo.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/fr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/fr.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ga.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ga.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/gd.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/gd.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/gl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/gl.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/gu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/gu.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/gv.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/gv.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ha.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ha.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/he.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/he.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/hi.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/hi.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/hr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/hr.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/hu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/hu.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/hy.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/hy.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ia.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ia.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/id.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/id.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ig.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ig.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ii.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ii.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/is.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/is.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/it.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/it.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ja.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ja.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ka.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ka.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ki.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ki.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/kk.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/kk.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/kl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/kl.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/km.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/km.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/kn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/kn.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ko.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ko.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ks.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ks.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/kw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/kw.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ky.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ky.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/lg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/lg.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ln.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ln.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/lo.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/lt.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/lt.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/lu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/lu.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/lv.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/lv.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/mg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/mg.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/mk.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/mk.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ml.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ml.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/mn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/mn.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/mr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/mr.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ms.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ms.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/mt.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/mt.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/my.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/my.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/nb.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/nb.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/nd.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/nd.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ne.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ne.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/nl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/nl.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/nn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/nn.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/nr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/nr.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/om.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/om.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/or.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/or.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/os.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/os.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/pa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/pa.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/pl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/pl.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ps.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ps.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/pt.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/pt.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/rm.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/rm.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/rn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/rn.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ro.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ro.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ru.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ru.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/rw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/rw.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/se.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/se.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/sg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/sg.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/si.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/si.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/sk.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/sk.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/sl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/sl.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/sn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/sn.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/so.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/so.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/sq.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/sq.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/sr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/sr.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ss.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ss.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/st.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/st.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/sv.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/sv.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/sw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/sw.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ta.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ta.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/te.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/te.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/tg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/tg.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/th.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/th.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ti.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ti.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/tn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/tn.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/to.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/to.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/tr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/tr.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ts.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ts.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/uk.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/uk.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ur.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ur.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/uz.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/uz.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/ve.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/ve.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/vi.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/vi.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/vo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/vo.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/xh.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/xh.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/yo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/yo.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/zh.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/zh.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/localedata/zu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/localedata/zu.dat -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/numbers.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/plural.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/plural.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/support.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/babel/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/babel/util.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage-4.0.1-py3.4.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage-4.0.1-py3.4.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage-4.0.1-py3.4.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | coverage 2 | -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/coverage/__init__.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/coverage/__main__.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage/annotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/coverage/annotate.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage/backward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/coverage/backward.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage/bytecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/coverage/bytecode.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage/cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/coverage/cmdline.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage/collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/coverage/collector.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/coverage/config.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/coverage/control.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/coverage/data.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/coverage/debug.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/coverage/env.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage/execfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/coverage/execfile.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/coverage/files.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/coverage/html.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/coverage/misc.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage/monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/coverage/monkey.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/coverage/parser.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage/phystokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/coverage/phystokens.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage/pickle2json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/coverage/pickle2json.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/coverage/plugin.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/coverage/python.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage/pytracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/coverage/pytracer.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/coverage/report.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/coverage/results.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/coverage/summary.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage/templite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/coverage/templite.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage/tracer.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/coverage/tracer.so -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/coverage/version.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/coverage/xmlreport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/coverage/xmlreport.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/easy_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/easy_install.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/flask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/flask/__init__.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/flask/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/flask/_compat.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/flask/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/flask/app.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/flask/blueprints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/flask/blueprints.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/flask/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/flask/config.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/flask/ctx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/flask/ctx.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/flask/debughelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/flask/debughelpers.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/flask/ext/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/flask/ext/__init__.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/flask/exthook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/flask/exthook.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/flask/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/flask/globals.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/flask/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/flask/helpers.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/flask/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/flask/json.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/flask/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/flask/logging.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/flask/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/flask/module.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/flask/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/flask/sessions.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/flask/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/flask/signals.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/flask/templating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/flask/templating.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/flask/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/flask/testing.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/flask/testsuite/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/pythonic_ocr/HEAD/flask/lib/python3.4/site-packages/flask/testsuite/ext.py -------------------------------------------------------------------------------- /flask/lib/python3.4/site-packages/flask/testsuite/static/index.html: -------------------------------------------------------------------------------- 1 |