实例介绍
python自定义爬虫,爬取豆瓣网以及腾讯招聘网信息并进行数据可视化分析,可自定义爬取网站
【实例截图】
【核心代码】
爬取豆瓣网腾讯招聘并进行可视化分析
└── kugou_download
├── douban.txt
├── get_xici_ip.txt
├── kugou.py
├── stopwords.txt
├── tencent.txt
├── timg.png
├── venv
│ ├── Include
│ │ ├── Python-ast.h
│ │ ├── Python.h
│ │ ├── abstract.h
│ │ ├── accu.h
│ │ ├── asdl.h
│ │ ├── ast.h
│ │ ├── bitset.h
│ │ ├── bltinmodule.h
│ │ ├── boolobject.h
│ │ ├── bytearrayobject.h
│ │ ├── bytes_methods.h
│ │ ├── bytesobject.h
│ │ ├── cellobject.h
│ │ ├── ceval.h
│ │ ├── classobject.h
│ │ ├── code.h
│ │ ├── codecs.h
│ │ ├── compile.h
│ │ ├── complexobject.h
│ │ ├── datetime.h
│ │ ├── descrobject.h
│ │ ├── dictobject.h
│ │ ├── dtoa.h
│ │ ├── dynamic_annotations.h
│ │ ├── enumobject.h
│ │ ├── errcode.h
│ │ ├── eval.h
│ │ ├── fileobject.h
│ │ ├── fileutils.h
│ │ ├── floatobject.h
│ │ ├── frameobject.h
│ │ ├── funcobject.h
│ │ ├── genobject.h
│ │ ├── graminit.h
│ │ ├── grammar.h
│ │ ├── import.h
│ │ ├── intrcheck.h
│ │ ├── iterobject.h
│ │ ├── listobject.h
│ │ ├── longintrepr.h
│ │ ├── longobject.h
│ │ ├── marshal.h
│ │ ├── memoryobject.h
│ │ ├── metagrammar.h
│ │ ├── methodobject.h
│ │ ├── modsupport.h
│ │ ├── moduleobject.h
│ │ ├── namespaceobject.h
│ │ ├── node.h
│ │ ├── object.h
│ │ ├── objimpl.h
│ │ ├── odictobject.h
│ │ ├── opcode.h
│ │ ├── osdefs.h
│ │ ├── osmodule.h
│ │ ├── parsetok.h
│ │ ├── patchlevel.h
│ │ ├── pgen.h
│ │ ├── pgenheaders.h
│ │ ├── py_curses.h
│ │ ├── pyarena.h
│ │ ├── pyatomic.h
│ │ ├── pycapsule.h
│ │ ├── pyconfig.h
│ │ ├── pyctype.h
│ │ ├── pydebug.h
│ │ ├── pydtrace.h
│ │ ├── pyerrors.h
│ │ ├── pyexpat.h
│ │ ├── pyfpe.h
│ │ ├── pygetopt.h
│ │ ├── pyhash.h
│ │ ├── pylifecycle.h
│ │ ├── pymacconfig.h
│ │ ├── pymacro.h
│ │ ├── pymath.h
│ │ ├── pymem.h
│ │ ├── pyport.h
│ │ ├── pystate.h
│ │ ├── pystrcmp.h
│ │ ├── pystrhex.h
│ │ ├── pystrtod.h
│ │ ├── pythonrun.h
│ │ ├── pythread.h
│ │ ├── pytime.h
│ │ ├── rangeobject.h
│ │ ├── setobject.h
│ │ ├── sliceobject.h
│ │ ├── structmember.h
│ │ ├── structseq.h
│ │ ├── symtable.h
│ │ ├── sysmodule.h
│ │ ├── token.h
│ │ ├── traceback.h
│ │ ├── tupleobject.h
│ │ ├── typeslots.h
│ │ ├── ucnhash.h
│ │ ├── unicodeobject.h
│ │ ├── warnings.h
│ │ └── weakrefobject.h
│ ├── Lib
│ │ ├── __future__.py
│ │ ├── __pycache__
│ │ │ ├── __future__.cpython-36.pyc
│ │ │ ├── _bootlocale.cpython-36.pyc
│ │ │ ├── _collections_abc.cpython-36.pyc
│ │ │ ├── _weakrefset.cpython-36.pyc
│ │ │ ├── abc.cpython-36.pyc
│ │ │ ├── base64.cpython-36.pyc
│ │ │ ├── bisect.cpython-36.pyc
│ │ │ ├── codecs.cpython-36.pyc
│ │ │ ├── copy.cpython-36.pyc
│ │ │ ├── copyreg.cpython-36.pyc
│ │ │ ├── enum.cpython-36.pyc
│ │ │ ├── fnmatch.cpython-36.pyc
│ │ │ ├── functools.cpython-36.pyc
│ │ │ ├── genericpath.cpython-36.pyc
│ │ │ ├── hashlib.cpython-36.pyc
│ │ │ ├── heapq.cpython-36.pyc
│ │ │ ├── hmac.cpython-36.pyc
│ │ │ ├── imp.cpython-36.pyc
│ │ │ ├── io.cpython-36.pyc
│ │ │ ├── keyword.cpython-36.pyc
│ │ │ ├── linecache.cpython-36.pyc
│ │ │ ├── locale.cpython-36.pyc
│ │ │ ├── ntpath.cpython-36.pyc
│ │ │ ├── operator.cpython-36.pyc
│ │ │ ├── os.cpython-36.pyc
│ │ │ ├── posixpath.cpython-36.pyc
│ │ │ ├── random.cpython-36.pyc
│ │ │ ├── re.cpython-36.pyc
│ │ │ ├── reprlib.cpython-36.pyc
│ │ │ ├── shutil.cpython-36.pyc
│ │ │ ├── site.cpython-36.pyc
│ │ │ ├── sre_compile.cpython-36.pyc
│ │ │ ├── sre_constants.cpython-36.pyc
│ │ │ ├── sre_parse.cpython-36.pyc
│ │ │ ├── stat.cpython-36.pyc
│ │ │ ├── struct.cpython-36.pyc
│ │ │ ├── tarfile.cpython-36.pyc
│ │ │ ├── tempfile.cpython-36.pyc
│ │ │ ├── token.cpython-36.pyc
│ │ │ ├── tokenize.cpython-36.pyc
│ │ │ ├── types.cpython-36.pyc
│ │ │ ├── warnings.cpython-36.pyc
│ │ │ └── weakref.cpython-36.pyc
│ │ ├── _bootlocale.py
│ │ ├── _collections_abc.py
│ │ ├── _dummy_thread.py
│ │ ├── _weakrefset.py
│ │ ├── abc.py
│ │ ├── base64.py
│ │ ├── bisect.py
│ │ ├── codecs.py
│ │ ├── collections
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ └── abc.cpython-36.pyc
│ │ │ └── abc.py
│ │ ├── copy.py
│ │ ├── copyreg.py
│ │ ├── distutils
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ └── __init__.cpython-36.pyc
│ │ │ └── distutils.cfg
│ │ ├── encodings
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ ├── aliases.cpython-36.pyc
│ │ │ │ ├── ascii.cpython-36.pyc
│ │ │ │ ├── cp437.cpython-36.pyc
│ │ │ │ ├── gb18030.cpython-36.pyc
│ │ │ │ ├── gbk.cpython-36.pyc
│ │ │ │ ├── idna.cpython-36.pyc
│ │ │ │ ├── latin_1.cpython-36.pyc
│ │ │ │ ├── utf_16_be.cpython-36.pyc
│ │ │ │ ├── utf_16_le.cpython-36.pyc
│ │ │ │ └── utf_8.cpython-36.pyc
│ │ │ ├── aliases.py
│ │ │ ├── ascii.py
│ │ │ ├── base64_codec.py
│ │ │ ├── big5.py
│ │ │ ├── big5hkscs.py
│ │ │ ├── bz2_codec.py
│ │ │ ├── charmap.py
│ │ │ ├── cp037.py
│ │ │ ├── cp1006.py
│ │ │ ├── cp1026.py
│ │ │ ├── cp1125.py
│ │ │ ├── cp1140.py
│ │ │ ├── cp1250.py
│ │ │ ├── cp1251.py
│ │ │ ├── cp1252.py
│ │ │ ├── cp1253.py
│ │ │ ├── cp1254.py
│ │ │ ├── cp1255.py
│ │ │ ├── cp1256.py
│ │ │ ├── cp1257.py
│ │ │ ├── cp1258.py
│ │ │ ├── cp273.py
│ │ │ ├── cp424.py
│ │ │ ├── cp437.py
│ │ │ ├── cp500.py
│ │ │ ├── cp65001.py
│ │ │ ├── cp720.py
│ │ │ ├── cp737.py
│ │ │ ├── cp775.py
│ │ │ ├── cp850.py
│ │ │ ├── cp852.py
│ │ │ ├── cp855.py
│ │ │ ├── cp856.py
│ │ │ ├── cp857.py
│ │ │ ├── cp858.py
│ │ │ ├── cp860.py
│ │ │ ├── cp861.py
│ │ │ ├── cp862.py
│ │ │ ├── cp863.py
│ │ │ ├── cp864.py
│ │ │ ├── cp865.py
│ │ │ ├── cp866.py
│ │ │ ├── cp869.py
│ │ │ ├── cp874.py
│ │ │ ├── cp875.py
│ │ │ ├── cp932.py
│ │ │ ├── cp949.py
│ │ │ ├── cp950.py
│ │ │ ├── euc_jis_2004.py
│ │ │ ├── euc_jisx0213.py
│ │ │ ├── euc_jp.py
│ │ │ ├── euc_kr.py
│ │ │ ├── gb18030.py
│ │ │ ├── gb2312.py
│ │ │ ├── gbk.py
│ │ │ ├── hex_codec.py
│ │ │ ├── hp_roman8.py
│ │ │ ├── hz.py
│ │ │ ├── idna.py
│ │ │ ├── iso2022_jp.py
│ │ │ ├── iso2022_jp_1.py
│ │ │ ├── iso2022_jp_2.py
│ │ │ ├── iso2022_jp_2004.py
│ │ │ ├── iso2022_jp_3.py
│ │ │ ├── iso2022_jp_ext.py
│ │ │ ├── iso2022_kr.py
│ │ │ ├── iso8859_1.py
│ │ │ ├── iso8859_10.py
│ │ │ ├── iso8859_11.py
│ │ │ ├── iso8859_13.py
│ │ │ ├── iso8859_14.py
│ │ │ ├── iso8859_15.py
│ │ │ ├── iso8859_16.py
│ │ │ ├── iso8859_2.py
│ │ │ ├── iso8859_3.py
│ │ │ ├── iso8859_4.py
│ │ │ ├── iso8859_5.py
│ │ │ ├── iso8859_6.py
│ │ │ ├── iso8859_7.py
│ │ │ ├── iso8859_8.py
│ │ │ ├── iso8859_9.py
│ │ │ ├── johab.py
│ │ │ ├── koi8_r.py
│ │ │ ├── koi8_t.py
│ │ │ ├── koi8_u.py
│ │ │ ├── kz1048.py
│ │ │ ├── latin_1.py
│ │ │ ├── mac_arabic.py
│ │ │ ├── mac_centeuro.py
│ │ │ ├── mac_croatian.py
│ │ │ ├── mac_cyrillic.py
│ │ │ ├── mac_farsi.py
│ │ │ ├── mac_greek.py
│ │ │ ├── mac_iceland.py
│ │ │ ├── mac_latin2.py
│ │ │ ├── mac_roman.py
│ │ │ ├── mac_romanian.py
│ │ │ ├── mac_turkish.py
│ │ │ ├── mbcs.py
│ │ │ ├── oem.py
│ │ │ ├── palmos.py
│ │ │ ├── ptcp154.py
│ │ │ ├── punycode.py
│ │ │ ├── quopri_codec.py
│ │ │ ├── raw_unicode_escape.py
│ │ │ ├── rot_13.py
│ │ │ ├── shift_jis.py
│ │ │ ├── shift_jis_2004.py
│ │ │ ├── shift_jisx0213.py
│ │ │ ├── tis_620.py
│ │ │ ├── undefined.py
│ │ │ ├── unicode_escape.py
│ │ │ ├── unicode_internal.py
│ │ │ ├── utf_16.py
│ │ │ ├── utf_16_be.py
│ │ │ ├── utf_16_le.py
│ │ │ ├── utf_32.py
│ │ │ ├── utf_32_be.py
│ │ │ ├── utf_32_le.py
│ │ │ ├── utf_7.py
│ │ │ ├── utf_8.py
│ │ │ ├── utf_8_sig.py
│ │ │ ├── uu_codec.py
│ │ │ └── zlib_codec.py
│ │ ├── enum.py
│ │ ├── fnmatch.py
│ │ ├── functools.py
│ │ ├── genericpath.py
│ │ ├── hashlib.py
│ │ ├── heapq.py
│ │ ├── hmac.py
│ │ ├── imp.py
│ │ ├── importlib
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ ├── abc.cpython-36.pyc
│ │ │ │ ├── machinery.cpython-36.pyc
│ │ │ │ └── util.cpython-36.pyc
│ │ │ ├── _bootstrap.py
│ │ │ ├── _bootstrap_external.py
│ │ │ ├── abc.py
│ │ │ ├── machinery.py
│ │ │ └── util.py
│ │ ├── io.py
│ │ ├── keyword.py
│ │ ├── linecache.py
│ │ ├── locale.py
│ │ ├── no-global-site-packages.txt
│ │ ├── ntpath.py
│ │ ├── operator.py
│ │ ├── orig-prefix.txt
│ │ ├── os.py
│ │ ├── posixpath.py
│ │ ├── random.py
│ │ ├── re.py
│ │ ├── reprlib.py
│ │ ├── rlcompleter.py
│ │ ├── shutil.py
│ │ ├── site-packages
│ │ │ ├── PIL
│ │ │ │ ├── BdfFontFile.py
│ │ │ │ ├── BlpImagePlugin.py
│ │ │ │ ├── BmpImagePlugin.py
│ │ │ │ ├── BufrStubImagePlugin.py
│ │ │ │ ├── ContainerIO.py
│ │ │ │ ├── CurImagePlugin.py
│ │ │ │ ├── DcxImagePlugin.py
│ │ │ │ ├── DdsImagePlugin.py
│ │ │ │ ├── EpsImagePlugin.py
│ │ │ │ ├── ExifTags.py
│ │ │ │ ├── FitsStubImagePlugin.py
│ │ │ │ ├── FliImagePlugin.py
│ │ │ │ ├── FontFile.py
│ │ │ │ ├── FpxImagePlugin.py
│ │ │ │ ├── FtexImagePlugin.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.py
│ │ │ │ ├── PSDraw.py
│ │ │ │ ├── PaletteFile.py
│ │ │ │ ├── PalmImagePlugin.py
│ │ │ │ ├── PcdImagePlugin.py
│ │ │ │ ├── PcfFontFile.py
│ │ │ │ ├── PcxImagePlugin.py
│ │ │ │ ├── PdfImagePlugin.py
│ │ │ │ ├── PdfParser.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-36.pyc
│ │ │ │ │ ├── BlpImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── BmpImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── BufrStubImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── ContainerIO.cpython-36.pyc
│ │ │ │ │ ├── CurImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── DcxImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── DdsImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── EpsImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── ExifTags.cpython-36.pyc
│ │ │ │ │ ├── FitsStubImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── FliImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── FontFile.cpython-36.pyc
│ │ │ │ │ ├── FpxImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── FtexImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── GbrImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── GdImageFile.cpython-36.pyc
│ │ │ │ │ ├── GifImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── GimpGradientFile.cpython-36.pyc
│ │ │ │ │ ├── GimpPaletteFile.cpython-36.pyc
│ │ │ │ │ ├── GribStubImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── Hdf5StubImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── IcnsImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── IcoImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── ImImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── Image.cpython-36.pyc
│ │ │ │ │ ├── ImageChops.cpython-36.pyc
│ │ │ │ │ ├── ImageCms.cpython-36.pyc
│ │ │ │ │ ├── ImageColor.cpython-36.pyc
│ │ │ │ │ ├── ImageDraw.cpython-36.pyc
│ │ │ │ │ ├── ImageDraw2.cpython-36.pyc
│ │ │ │ │ ├── ImageEnhance.cpython-36.pyc
│ │ │ │ │ ├── ImageFile.cpython-36.pyc
│ │ │ │ │ ├── ImageFilter.cpython-36.pyc
│ │ │ │ │ ├── ImageFont.cpython-36.pyc
│ │ │ │ │ ├── ImageGrab.cpython-36.pyc
│ │ │ │ │ ├── ImageMath.cpython-36.pyc
│ │ │ │ │ ├── ImageMode.cpython-36.pyc
│ │ │ │ │ ├── ImageMorph.cpython-36.pyc
│ │ │ │ │ ├── ImageOps.cpython-36.pyc
│ │ │ │ │ ├── ImagePalette.cpython-36.pyc
│ │ │ │ │ ├── ImagePath.cpython-36.pyc
│ │ │ │ │ ├── ImageQt.cpython-36.pyc
│ │ │ │ │ ├── ImageSequence.cpython-36.pyc
│ │ │ │ │ ├── ImageShow.cpython-36.pyc
│ │ │ │ │ ├── ImageStat.cpython-36.pyc
│ │ │ │ │ ├── ImageTk.cpython-36.pyc
│ │ │ │ │ ├── ImageTransform.cpython-36.pyc
│ │ │ │ │ ├── ImageWin.cpython-36.pyc
│ │ │ │ │ ├── ImtImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── IptcImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── Jpeg2KImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── JpegImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── JpegPresets.cpython-36.pyc
│ │ │ │ │ ├── McIdasImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── MicImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── MpegImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── MpoImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── MspImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── OleFileIO.cpython-36.pyc
│ │ │ │ │ ├── PSDraw.cpython-36.pyc
│ │ │ │ │ ├── PaletteFile.cpython-36.pyc
│ │ │ │ │ ├── PalmImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── PcdImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── PcfFontFile.cpython-36.pyc
│ │ │ │ │ ├── PcxImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── PdfImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── PdfParser.cpython-36.pyc
│ │ │ │ │ ├── PixarImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── PngImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── PpmImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── PsdImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── PyAccess.cpython-36.pyc
│ │ │ │ │ ├── SgiImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── SpiderImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── SunImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── TarIO.cpython-36.pyc
│ │ │ │ │ ├── TgaImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── TiffImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── TiffTags.cpython-36.pyc
│ │ │ │ │ ├── WalImageFile.cpython-36.pyc
│ │ │ │ │ ├── WebPImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── WmfImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── XVThumbImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── XbmImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── XpmImagePlugin.cpython-36.pyc
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── _binary.cpython-36.pyc
│ │ │ │ │ ├── _tkinter_finder.cpython-36.pyc
│ │ │ │ │ ├── _util.cpython-36.pyc
│ │ │ │ │ ├── _version.cpython-36.pyc
│ │ │ │ │ └── features.cpython-36.pyc
│ │ │ │ ├── _binary.py
│ │ │ │ ├── _imaging.cp36-win_amd64.pyd
│ │ │ │ ├── _imagingcms.cp36-win_amd64.pyd
│ │ │ │ ├── _imagingft.cp36-win_amd64.pyd
│ │ │ │ ├── _imagingmath.cp36-win_amd64.pyd
│ │ │ │ ├── _imagingmorph.cp36-win_amd64.pyd
│ │ │ │ ├── _imagingtk.cp36-win_amd64.pyd
│ │ │ │ ├── _tkinter_finder.py
│ │ │ │ ├── _util.py
│ │ │ │ ├── _version.py
│ │ │ │ ├── _webp.cp36-win_amd64.pyd
│ │ │ │ └── features.py
│ │ │ ├── Pillow-5.3.0.dist-info
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── WHEEL
│ │ │ │ ├── top_level.txt
│ │ │ │ └── zip-safe
│ │ │ ├── __pycache__
│ │ │ │ ├── cycler.cpython-36.pyc
│ │ │ │ ├── easy_install.cpython-36.pyc
│ │ │ │ ├── pylab.cpython-36.pyc
│ │ │ │ ├── pyparsing.cpython-36.pyc
│ │ │ │ └── six.cpython-36.pyc
│ │ │ ├── beautifulsoup4-4.6.3.dist-info
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── WHEEL
│ │ │ │ └── top_level.txt
│ │ │ ├── bs4
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── dammit.cpython-36.pyc
│ │ │ │ │ ├── diagnose.cpython-36.pyc
│ │ │ │ │ ├── element.cpython-36.pyc
│ │ │ │ │ └── testing.cpython-36.pyc
│ │ │ │ ├── builder
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _html5lib.cpython-36.pyc
│ │ │ │ │ │ ├── _htmlparser.cpython-36.pyc
│ │ │ │ │ │ └── _lxml.cpython-36.pyc
│ │ │ │ │ ├── _html5lib.py
│ │ │ │ │ ├── _htmlparser.py
│ │ │ │ │ └── _lxml.py
│ │ │ │ ├── dammit.py
│ │ │ │ ├── diagnose.py
│ │ │ │ ├── element.py
│ │ │ │ ├── testing.py
│ │ │ │ └── tests
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── test_builder_registry.cpython-36.pyc
│ │ │ │ │ ├── test_docs.cpython-36.pyc
│ │ │ │ │ ├── test_html5lib.cpython-36.pyc
│ │ │ │ │ ├── test_htmlparser.cpython-36.pyc
│ │ │ │ │ ├── test_lxml.cpython-36.pyc
│ │ │ │ │ ├── test_soup.cpython-36.pyc
│ │ │ │ │ └── test_tree.cpython-36.pyc
│ │ │ │ ├── test_builder_registry.py
│ │ │ │ ├── test_docs.py
│ │ │ │ ├── test_html5lib.py
│ │ │ │ ├── test_htmlparser.py
│ │ │ │ ├── test_lxml.py
│ │ │ │ ├── test_soup.py
│ │ │ │ └── test_tree.py
│ │ │ ├── bs4-0.0.1.dist-info
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── WHEEL
│ │ │ │ └── top_level.txt
│ │ │ ├── certifi
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __main__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── __main__.cpython-36.pyc
│ │ │ │ │ └── core.cpython-36.pyc
│ │ │ │ ├── cacert.pem
│ │ │ │ └── core.py
│ │ │ ├── certifi-2018.10.15.dist-info
│ │ │ │ ├── DESCRIPTION.rst
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── WHEEL
│ │ │ │ ├── metadata.json
│ │ │ │ └── top_level.txt
│ │ │ ├── chardet
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── big5freq.cpython-36.pyc
│ │ │ │ │ ├── big5prober.cpython-36.pyc
│ │ │ │ │ ├── chardistribution.cpython-36.pyc
│ │ │ │ │ ├── charsetgroupprober.cpython-36.pyc
│ │ │ │ │ ├── charsetprober.cpython-36.pyc
│ │ │ │ │ ├── codingstatemachine.cpython-36.pyc
│ │ │ │ │ ├── compat.cpython-36.pyc
│ │ │ │ │ ├── cp949prober.cpython-36.pyc
│ │ │ │ │ ├── enums.cpython-36.pyc
│ │ │ │ │ ├── escprober.cpython-36.pyc
│ │ │ │ │ ├── escsm.cpython-36.pyc
│ │ │ │ │ ├── eucjpprober.cpython-36.pyc
│ │ │ │ │ ├── euckrfreq.cpython-36.pyc
│ │ │ │ │ ├── euckrprober.cpython-36.pyc
│ │ │ │ │ ├── euctwfreq.cpython-36.pyc
│ │ │ │ │ ├── euctwprober.cpython-36.pyc
│ │ │ │ │ ├── gb2312freq.cpython-36.pyc
│ │ │ │ │ ├── gb2312prober.cpython-36.pyc
│ │ │ │ │ ├── hebrewprober.cpython-36.pyc
│ │ │ │ │ ├── jisfreq.cpython-36.pyc
│ │ │ │ │ ├── jpcntx.cpython-36.pyc
│ │ │ │ │ ├── langbulgarianmodel.cpython-36.pyc
│ │ │ │ │ ├── langcyrillicmodel.cpython-36.pyc
│ │ │ │ │ ├── langgreekmodel.cpython-36.pyc
│ │ │ │ │ ├── langhebrewmodel.cpython-36.pyc
│ │ │ │ │ ├── langhungarianmodel.cpython-36.pyc
│ │ │ │ │ ├── langthaimodel.cpython-36.pyc
│ │ │ │ │ ├── langturkishmodel.cpython-36.pyc
│ │ │ │ │ ├── latin1prober.cpython-36.pyc
│ │ │ │ │ ├── mbcharsetprober.cpython-36.pyc
│ │ │ │ │ ├── mbcsgroupprober.cpython-36.pyc
│ │ │ │ │ ├── mbcssm.cpython-36.pyc
│ │ │ │ │ ├── sbcharsetprober.cpython-36.pyc
│ │ │ │ │ ├── sbcsgroupprober.cpython-36.pyc
│ │ │ │ │ ├── sjisprober.cpython-36.pyc
│ │ │ │ │ ├── universaldetector.cpython-36.pyc
│ │ │ │ │ ├── utf8prober.cpython-36.pyc
│ │ │ │ │ └── version.cpython-36.pyc
│ │ │ │ ├── big5freq.py
│ │ │ │ ├── big5prober.py
│ │ │ │ ├── chardistribution.py
│ │ │ │ ├── charsetgroupprober.py
│ │ │ │ ├── charsetprober.py
│ │ │ │ ├── cli
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ └── chardetect.cpython-36.pyc
│ │ │ │ │ └── chardetect.py
│ │ │ │ ├── codingstatemachine.py
│ │ │ │ ├── compat.py
│ │ │ │ ├── cp949prober.py
│ │ │ │ ├── enums.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
│ │ │ │ ├── langturkishmodel.py
│ │ │ │ ├── latin1prober.py
│ │ │ │ ├── mbcharsetprober.py
│ │ │ │ ├── mbcsgroupprober.py
│ │ │ │ ├── mbcssm.py
│ │ │ │ ├── sbcharsetprober.py
│ │ │ │ ├── sbcsgroupprober.py
│ │ │ │ ├── sjisprober.py
│ │ │ │ ├── universaldetector.py
│ │ │ │ ├── utf8prober.py
│ │ │ │ └── version.py
│ │ │ ├── chardet-3.0.4.dist-info
│ │ │ │ ├── DESCRIPTION.rst
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── WHEEL
│ │ │ │ ├── entry_points.txt
│ │ │ │ ├── metadata.json
│ │ │ │ └── top_level.txt
│ │ │ ├── cycler-0.10.0.dist-info
│ │ │ │ ├── DESCRIPTION.rst
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── WHEEL
│ │ │ │ ├── metadata.json
│ │ │ │ └── top_level.txt
│ │ │ ├── cycler.py
│ │ │ ├── dateutil
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── _common.cpython-36.pyc
│ │ │ │ │ ├── _version.cpython-36.pyc
│ │ │ │ │ ├── easter.cpython-36.pyc
│ │ │ │ │ ├── relativedelta.cpython-36.pyc
│ │ │ │ │ ├── rrule.cpython-36.pyc
│ │ │ │ │ ├── tzwin.cpython-36.pyc
│ │ │ │ │ └── utils.cpython-36.pyc
│ │ │ │ ├── _common.py
│ │ │ │ ├── _version.py
│ │ │ │ ├── easter.py
│ │ │ │ ├── parser
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _parser.cpython-36.pyc
│ │ │ │ │ │ └── isoparser.cpython-36.pyc
│ │ │ │ │ ├── _parser.py
│ │ │ │ │ └── isoparser.py
│ │ │ │ ├── relativedelta.py
│ │ │ │ ├── rrule.py
│ │ │ │ ├── tz
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _common.cpython-36.pyc
│ │ │ │ │ │ ├── _factories.cpython-36.pyc
│ │ │ │ │ │ ├── tz.cpython-36.pyc
│ │ │ │ │ │ └── win.cpython-36.pyc
│ │ │ │ │ ├── _common.py
│ │ │ │ │ ├── _factories.py
│ │ │ │ │ ├── tz.py
│ │ │ │ │ └── win.py
│ │ │ │ ├── tzwin.py
│ │ │ │ ├── utils.py
│ │ │ │ └── zoneinfo
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ └── rebuild.cpython-36.pyc
│ │ │ │ ├── dateutil-zoneinfo.tar.gz
│ │ │ │ └── rebuild.py
│ │ │ ├── easy_install.py
│ │ │ ├── fake_useragent
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── errors.cpython-36.pyc
│ │ │ │ │ ├── fake.cpython-36.pyc
│ │ │ │ │ ├── log.cpython-36.pyc
│ │ │ │ │ ├── settings.cpython-36.pyc
│ │ │ │ │ └── utils.cpython-36.pyc
│ │ │ │ ├── errors.py
│ │ │ │ ├── fake.py
│ │ │ │ ├── log.py
│ │ │ │ ├── settings.py
│ │ │ │ └── utils.py
│ │ │ ├── fake_useragent-0.1.11.dist-info
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── LICENSE
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── WHEEL
│ │ │ │ └── top_level.txt
│ │ │ ├── idna
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── codec.cpython-36.pyc
│ │ │ │ │ ├── compat.cpython-36.pyc
│ │ │ │ │ ├── core.cpython-36.pyc
│ │ │ │ │ ├── idnadata.cpython-36.pyc
│ │ │ │ │ ├── intranges.cpython-36.pyc
│ │ │ │ │ ├── package_data.cpython-36.pyc
│ │ │ │ │ └── uts46data.cpython-36.pyc
│ │ │ │ ├── codec.py
│ │ │ │ ├── compat.py
│ │ │ │ ├── core.py
│ │ │ │ ├── idnadata.py
│ │ │ │ ├── intranges.py
│ │ │ │ ├── package_data.py
│ │ │ │ └── uts46data.py
│ │ │ ├── idna-2.7.dist-info
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── WHEEL
│ │ │ │ └── top_level.txt
│ │ │ ├── jieba
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __main__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── __main__.cpython-36.pyc
│ │ │ │ │ └── _compat.cpython-36.pyc
│ │ │ │ ├── _compat.py
│ │ │ │ ├── analyse
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── analyzer.cpython-36.pyc
│ │ │ │ │ │ ├── textrank.cpython-36.pyc
│ │ │ │ │ │ └── tfidf.cpython-36.pyc
│ │ │ │ │ ├── analyzer.py
│ │ │ │ │ ├── idf.txt
│ │ │ │ │ ├── textrank.py
│ │ │ │ │ └── tfidf.py
│ │ │ │ ├── dict.txt
│ │ │ │ ├── finalseg
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── prob_emit.cpython-36.pyc
│ │ │ │ │ │ ├── prob_start.cpython-36.pyc
│ │ │ │ │ │ └── prob_trans.cpython-36.pyc
│ │ │ │ │ ├── prob_emit.p
│ │ │ │ │ ├── prob_emit.py
│ │ │ │ │ ├── prob_start.p
│ │ │ │ │ ├── prob_start.py
│ │ │ │ │ ├── prob_trans.p
│ │ │ │ │ └── prob_trans.py
│ │ │ │ └── posseg
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── char_state_tab.cpython-36.pyc
│ │ │ │ │ ├── prob_emit.cpython-36.pyc
│ │ │ │ │ ├── prob_start.cpython-36.pyc
│ │ │ │ │ ├── prob_trans.cpython-36.pyc
│ │ │ │ │ └── viterbi.cpython-36.pyc
│ │ │ │ ├── char_state_tab.p
│ │ │ │ ├── char_state_tab.py
│ │ │ │ ├── prob_emit.p
│ │ │ │ ├── prob_emit.py
│ │ │ │ ├── prob_start.p
│ │ │ │ ├── prob_start.py
│ │ │ │ ├── prob_trans.p
│ │ │ │ ├── prob_trans.py
│ │ │ │ └── viterbi.py
│ │ │ ├── jieba-0.39.dist-info
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── WHEEL
│ │ │ │ └── top_level.txt
│ │ │ ├── kiwisolver-1.0.1.dist-info
│ │ │ │ ├── DESCRIPTION.rst
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── WHEEL
│ │ │ │ ├── metadata.json
│ │ │ │ └── top_level.txt
│ │ │ ├── kiwisolver.cp36-win_amd64.pyd
│ │ │ ├── lxml
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── _elementpath.cpython-36.pyc
│ │ │ │ │ ├── builder.cpython-36.pyc
│ │ │ │ │ ├── cssselect.cpython-36.pyc
│ │ │ │ │ ├── doctestcompare.cpython-36.pyc
│ │ │ │ │ ├── elementinclude.cpython-36.pyc
│ │ │ │ │ ├── pyclasslookup.cpython-36.pyc
│ │ │ │ │ ├── sax.cpython-36.pyc
│ │ │ │ │ └── usedoctest.cpython-36.pyc
│ │ │ │ ├── _elementpath.cp36-win_amd64.pyd
│ │ │ │ ├── _elementpath.py
│ │ │ │ ├── builder.cp36-win_amd64.pyd
│ │ │ │ ├── builder.py
│ │ │ │ ├── cssselect.py
│ │ │ │ ├── doctestcompare.py
│ │ │ │ ├── elementinclude.py
│ │ │ │ ├── etree.cp36-win_amd64.pyd
│ │ │ │ ├── etree.h
│ │ │ │ ├── etree_api.h
│ │ │ │ ├── html
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _diffcommand.cpython-36.pyc
│ │ │ │ │ │ ├── _html5builder.cpython-36.pyc
│ │ │ │ │ │ ├── _setmixin.cpython-36.pyc
│ │ │ │ │ │ ├── builder.cpython-36.pyc
│ │ │ │ │ │ ├── clean.cpython-36.pyc
│ │ │ │ │ │ ├── defs.cpython-36.pyc
│ │ │ │ │ │ ├── diff.cpython-36.pyc
│ │ │ │ │ │ ├── elementsoup.cpython-36.pyc
│ │ │ │ │ │ ├── formfill.cpython-36.pyc
│ │ │ │ │ │ ├── html5parser.cpython-36.pyc
│ │ │ │ │ │ ├── soupparser.cpython-36.pyc
│ │ │ │ │ │ └── usedoctest.cpython-36.pyc
│ │ │ │ │ ├── _diffcommand.py
│ │ │ │ │ ├── _html5builder.py
│ │ │ │ │ ├── _setmixin.py
│ │ │ │ │ ├── builder.py
│ │ │ │ │ ├── clean.cp36-win_amd64.pyd
│ │ │ │ │ ├── clean.py
│ │ │ │ │ ├── defs.py
│ │ │ │ │ ├── diff.cp36-win_amd64.pyd
│ │ │ │ │ ├── diff.py
│ │ │ │ │ ├── elementsoup.py
│ │ │ │ │ ├── formfill.py
│ │ │ │ │ ├── html5parser.py
│ │ │ │ │ ├── soupparser.py
│ │ │ │ │ └── usedoctest.py
│ │ │ │ ├── includes
│ │ │ │ │ ├── __init__.pxd
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ │ ├── c14n.pxd
│ │ │ │ │ ├── config.pxd
│ │ │ │ │ ├── dtdvalid.pxd
│ │ │ │ │ ├── etree_defs.h
│ │ │ │ │ ├── etreepublic.pxd
│ │ │ │ │ ├── htmlparser.pxd
│ │ │ │ │ ├── libexslt
│ │ │ │ │ │ ├── exslt.h
│ │ │ │ │ │ ├── exsltconfig.h
│ │ │ │ │ │ ├── exsltexports.h
│ │ │ │ │ │ └── libexslt.h
│ │ │ │ │ ├── libxml
│ │ │ │ │ │ ├── c14n.h
│ │ │ │ │ │ ├── catalog.h
│ │ │ │ │ │ ├── chvalid.h
│ │ │ │ │ │ ├── debugxml.h
│ │ │ │ │ │ ├── dict.h
│ │ │ │ │ │ ├── docbparser.h
│ │ │ │ │ │ ├── encoding.h
│ │ │ │ │ │ ├── entities.h
│ │ │ │ │ │ ├── globals.h
│ │ │ │ │ │ ├── hash.h
│ │ │ │ │ │ ├── htmlparser.h
│ │ │ │ │ │ ├── htmltree.h
│ │ │ │ │ │ ├── list.h
│ │ │ │ │ │ ├── nanoftp.h
│ │ │ │ │ │ ├── nanohttp.h
│ │ │ │ │ │ ├── parser.h
│ │ │ │ │ │ ├── parserinternals.h
│ │ │ │ │ │ ├── pattern.h
│ │ │ │ │ │ ├── relaxng.h
│ │ │ │ │ │ ├── sax.h
│ │ │ │ │ │ ├── sax2.h
│ │ │ │ │ │ ├── schemasinternals.h
│ │ │ │ │ │ ├── schematron.h
│ │ │ │ │ │ ├── threads.h
│ │ │ │ │ │ ├── tree.h
│ │ │ │ │ │ ├── uri.h
│ │ │ │ │ │ ├── valid.h
│ │ │ │ │ │ ├── xinclude.h
│ │ │ │ │ │ ├── xlink.h
│ │ │ │ │ │ ├── xmlautomata.h
│ │ │ │ │ │ ├── xmlerror.h
│ │ │ │ │ │ ├── xmlexports.h
│ │ │ │ │ │ ├── xmlio.h
│ │ │ │ │ │ ├── xmlmemory.h
│ │ │ │ │ │ ├── xmlmodule.h
│ │ │ │ │ │ ├── xmlreader.h
│ │ │ │ │ │ ├── xmlregexp.h
│ │ │ │ │ │ ├── xmlsave.h
│ │ │ │ │ │ ├── xmlschemas.h
│ │ │ │ │ │ ├── xmlschemastypes.h
│ │ │ │ │ │ ├── xmlstring.h
│ │ │ │ │ │ ├── xmlunicode.h
│ │ │ │ │ │ ├── xmlversion.h
│ │ │ │ │ │ ├── xmlwriter.h
│ │ │ │ │ │ ├── xpath.h
│ │ │ │ │ │ ├── xpathinternals.h
│ │ │ │ │ │ └── xpointer.h
│ │ │ │ │ ├── libxslt
│ │ │ │ │ │ ├── attributes.h
│ │ │ │ │ │ ├── documents.h
│ │ │ │ │ │ ├── extensions.h
│ │ │ │ │ │ ├── extra.h
│ │ │ │ │ │ ├── functions.h
│ │ │ │ │ │ ├── imports.h
│ │ │ │ │ │ ├── keys.h
│ │ │ │ │ │ ├── libxslt.h
│ │ │ │ │ │ ├── namespaces.h
│ │ │ │ │ │ ├── numbersinternals.h
│ │ │ │ │ │ ├── preproc.h
│ │ │ │ │ │ ├── security.h
│ │ │ │ │ │ ├── templates.h
│ │ │ │ │ │ ├── transform.h
│ │ │ │ │ │ ├── trio.h
│ │ │ │ │ │ ├── triodef.h
│ │ │ │ │ │ ├── variables.h
│ │ │ │ │ │ ├── win32config.h
│ │ │ │ │ │ ├── xslt.h
│ │ │ │ │ │ ├── xsltconfig.h
│ │ │ │ │ │ ├── xsltexports.h
│ │ │ │ │ │ ├── xsltinternals.h
│ │ │ │ │ │ ├── xsltlocale.h
│ │ │ │ │ │ └── xsltutils.h
│ │ │ │ │ ├── lxml-version.h
│ │ │ │ │ ├── relaxng.pxd
│ │ │ │ │ ├── schematron.pxd
│ │ │ │ │ ├── tree.pxd
│ │ │ │ │ ├── uri.pxd
│ │ │ │ │ ├── xinclude.pxd
│ │ │ │ │ ├── xmlerror.pxd
│ │ │ │ │ ├── xmlparser.pxd
│ │ │ │ │ ├── xmlschema.pxd
│ │ │ │ │ ├── xpath.pxd
│ │ │ │ │ └── xslt.pxd
│ │ │ │ ├── isoschematron
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ │ └── resources
│ │ │ │ │ ├── rng
│ │ │ │ │ │ └── iso-schematron.rng
│ │ │ │ │ └── xsl
│ │ │ │ │ ├── iso-schematron-xslt1
│ │ │ │ │ │ ├── iso_abstract_expand.xsl
│ │ │ │ │ │ ├── iso_dsdl_include.xsl
│ │ │ │ │ │ ├── iso_schematron_message.xsl
│ │ │ │ │ │ ├── iso_schematron_skeleton_for_xslt1.xsl
│ │ │ │ │ │ ├── iso_svrl_for_xslt1.xsl
│ │ │ │ │ │ └── readme.txt
│ │ │ │ │ ├── rng2schtrn.xsl
│ │ │ │ │ └── xsd2schtrn.xsl
│ │ │ │ ├── lxml.etree.h
│ │ │ │ ├── lxml.etree_api.h
│ │ │ │ ├── objectify.cp36-win_amd64.pyd
│ │ │ │ ├── pyclasslookup.py
│ │ │ │ ├── sax.py
│ │ │ │ └── usedoctest.py
│ │ │ ├── lxml-4.2.5.dist-info
│ │ │ │ ├── installer
│ │ │ │ ├── metadata
│ │ │ │ ├── record
│ │ │ │ ├── top_level.txt
│ │ │ │ └── wheel
│ │ │ ├── matplotlib
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── _animation_data.cpython-36.pyc
│ │ │ │ │ ├── _cm.cpython-36.pyc
│ │ │ │ │ ├── _cm_listed.cpython-36.pyc
│ │ │ │ │ ├── _color_data.cpython-36.pyc
│ │ │ │ │ ├── _constrained_layout.cpython-36.pyc
│ │ │ │ │ ├── _layoutbox.cpython-36.pyc
│ │ │ │ │ ├── _mathtext_data.cpython-36.pyc
│ │ │ │ │ ├── _pylab_helpers.cpython-36.pyc
│ │ │ │ │ ├── _version.cpython-36.pyc
│ │ │ │ │ ├── afm.cpython-36.pyc
│ │ │ │ │ ├── animation.cpython-36.pyc
│ │ │ │ │ ├── artist.cpython-36.pyc
│ │ │ │ │ ├── axis.cpython-36.pyc
│ │ │ │ │ ├── backend_bases.cpython-36.pyc
│ │ │ │ │ ├── backend_managers.cpython-36.pyc
│ │ │ │ │ ├── backend_tools.cpython-36.pyc
│ │ │ │ │ ├── bezier.cpython-36.pyc
│ │ │ │ │ ├── blocking_input.cpython-36.pyc
│ │ │ │ │ ├── category.cpython-36.pyc
│ │ │ │ │ ├── cm.cpython-36.pyc
│ │ │ │ │ ├── collections.cpython-36.pyc
│ │ │ │ │ ├── colorbar.cpython-36.pyc
│ │ │ │ │ ├── colors.cpython-36.pyc
│ │ │ │ │ ├── container.cpython-36.pyc
│ │ │ │ │ ├── contour.cpython-36.pyc
│ │ │ │ │ ├── dates.cpython-36.pyc
│ │ │ │ │ ├── docstring.cpython-36.pyc
│ │ │ │ │ ├── dviread.cpython-36.pyc
│ │ │ │ │ ├── figure.cpython-36.pyc
│ │ │ │ │ ├── font_manager.cpython-36.pyc
│ │ │ │ │ ├── fontconfig_pattern.cpython-36.pyc
│ │ │ │ │ ├── gridspec.cpython-36.pyc
│ │ │ │ │ ├── hatch.cpython-36.pyc
│ │ │ │ │ ├── image.cpython-36.pyc
│ │ │ │ │ ├── legend.cpython-36.pyc
│ │ │ │ │ ├── legend_handler.cpython-36.pyc
│ │ │ │ │ ├── lines.cpython-36.pyc
│ │ │ │ │ ├── markers.cpython-36.pyc
│ │ │ │ │ ├── mathtext.cpython-36.pyc
│ │ │ │ │ ├── mlab.cpython-36.pyc
│ │ │ │ │ ├── offsetbox.cpython-36.pyc
│ │ │ │ │ ├── patches.cpython-36.pyc
│ │ │ │ │ ├── path.cpython-36.pyc
│ │ │ │ │ ├── patheffects.cpython-36.pyc
│ │ │ │ │ ├── pylab.cpython-36.pyc
│ │ │ │ │ ├── pyplot.cpython-36.pyc
│ │ │ │ │ ├── quiver.cpython-36.pyc
│ │ │ │ │ ├── rcsetup.cpython-36.pyc
│ │ │ │ │ ├── sankey.cpython-36.pyc
│ │ │ │ │ ├── scale.cpython-36.pyc
│ │ │ │ │ ├── spines.cpython-36.pyc
│ │ │ │ │ ├── stackplot.cpython-36.pyc
│ │ │ │ │ ├── streamplot.cpython-36.pyc
│ │ │ │ │ ├── table.cpython-36.pyc
│ │ │ │ │ ├── texmanager.cpython-36.pyc
│ │ │ │ │ ├── text.cpython-36.pyc
│ │ │ │ │ ├── textpath.cpython-36.pyc
│ │ │ │ │ ├── ticker.cpython-36.pyc
│ │ │ │ │ ├── tight_bbox.cpython-36.pyc
│ │ │ │ │ ├── tight_layout.cpython-36.pyc
│ │ │ │ │ ├── transforms.cpython-36.pyc
│ │ │ │ │ ├── type1font.cpython-36.pyc
│ │ │ │ │ ├── units.cpython-36.pyc
│ │ │ │ │ └── widgets.cpython-36.pyc
│ │ │ │ ├── _animation_data.py
│ │ │ │ ├── _cm.py
│ │ │ │ ├── _cm_listed.py
│ │ │ │ ├── _color_data.py
│ │ │ │ ├── _constrained_layout.py
│ │ │ │ ├── _contour.cp36-win_amd64.pyd
│ │ │ │ ├── _image.cp36-win_amd64.pyd
│ │ │ │ ├── _layoutbox.py
│ │ │ │ ├── _mathtext_data.py
│ │ │ │ ├── _path.cp36-win_amd64.pyd
│ │ │ │ ├── _png.cp36-win_amd64.pyd
│ │ │ │ ├── _pylab_helpers.py
│ │ │ │ ├── _qhull.cp36-win_amd64.pyd
│ │ │ │ ├── _tri.cp36-win_amd64.pyd
│ │ │ │ ├── _version.py
│ │ │ │ ├── _windowing.cp36-win_amd64.pyd
│ │ │ │ ├── afm.py
│ │ │ │ ├── animation.py
│ │ │ │ ├── artist.py
│ │ │ │ ├── axes
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _axes.cpython-36.pyc
│ │ │ │ │ │ ├── _base.cpython-36.pyc
│ │ │ │ │ │ └── _subplots.cpython-36.pyc
│ │ │ │ │ ├── _axes.py
│ │ │ │ │ ├── _base.py
│ │ │ │ │ └── _subplots.py
│ │ │ │ ├── axis.py
│ │ │ │ ├── backend_bases.py
│ │ │ │ ├── backend_managers.py
│ │ │ │ ├── backend_tools.py
│ │ │ │ ├── backends
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _backend_tk.cpython-36.pyc
│ │ │ │ │ │ ├── _gtk3_compat.cpython-36.pyc
│ │ │ │ │ │ ├── backend_agg.cpython-36.pyc
│ │ │ │ │ │ ├── backend_cairo.cpython-36.pyc
│ │ │ │ │ │ ├── backend_gtk3.cpython-36.pyc
│ │ │ │ │ │ ├── backend_gtk3agg.cpython-36.pyc
│ │ │ │ │ │ ├── backend_gtk3cairo.cpython-36.pyc
│ │ │ │ │ │ ├── backend_macosx.cpython-36.pyc
│ │ │ │ │ │ ├── backend_mixed.cpython-36.pyc
│ │ │ │ │ │ ├── backend_nbagg.cpython-36.pyc
│ │ │ │ │ │ ├── backend_pdf.cpython-36.pyc
│ │ │ │ │ │ ├── backend_pgf.cpython-36.pyc
│ │ │ │ │ │ ├── backend_ps.cpython-36.pyc
│ │ │ │ │ │ ├── backend_qt4.cpython-36.pyc
│ │ │ │ │ │ ├── backend_qt4agg.cpython-36.pyc
│ │ │ │ │ │ ├── backend_qt4cairo.cpython-36.pyc
│ │ │ │ │ │ ├── backend_qt5.cpython-36.pyc
│ │ │ │ │ │ ├── backend_qt5agg.cpython-36.pyc
│ │ │ │ │ │ ├── backend_qt5cairo.cpython-36.pyc
│ │ │ │ │ │ ├── backend_svg.cpython-36.pyc
│ │ │ │ │ │ ├── backend_template.cpython-36.pyc
│ │ │ │ │ │ ├── backend_tkagg.cpython-36.pyc
│ │ │ │ │ │ ├── backend_tkcairo.cpython-36.pyc
│ │ │ │ │ │ ├── backend_webagg.cpython-36.pyc
│ │ │ │ │ │ ├── backend_webagg_core.cpython-36.pyc
│ │ │ │ │ │ ├── backend_wx.cpython-36.pyc
│ │ │ │ │ │ ├── backend_wxagg.cpython-36.pyc
│ │ │ │ │ │ ├── backend_wxcairo.cpython-36.pyc
│ │ │ │ │ │ ├── qt_compat.cpython-36.pyc
│ │ │ │ │ │ ├── tkagg.cpython-36.pyc
│ │ │ │ │ │ ├── windowing.cpython-36.pyc
│ │ │ │ │ │ └── wx_compat.cpython-36.pyc
│ │ │ │ │ ├── _backend_agg.cp36-win_amd64.pyd
│ │ │ │ │ ├── _backend_tk.py
│ │ │ │ │ ├── _gtk3_compat.py
│ │ │ │ │ ├── _tkagg.cp36-win_amd64.pyd
│ │ │ │ │ ├── backend_agg.py
│ │ │ │ │ ├── backend_cairo.py
│ │ │ │ │ ├── backend_gtk3.py
│ │ │ │ │ ├── backend_gtk3agg.py
│ │ │ │ │ ├── backend_gtk3cairo.py
│ │ │ │ │ ├── backend_macosx.py
│ │ │ │ │ ├── backend_mixed.py
│ │ │ │ │ ├── backend_nbagg.py
│ │ │ │ │ ├── backend_pdf.py
│ │ │ │ │ ├── backend_pgf.py
│ │ │ │ │ ├── backend_ps.py
│ │ │ │ │ ├── backend_qt4.py
│ │ │ │ │ ├── backend_qt4agg.py
│ │ │ │ │ ├── backend_qt4cairo.py
│ │ │ │ │ ├── backend_qt5.py
│ │ │ │ │ ├── backend_qt5agg.py
│ │ │ │ │ ├── backend_qt5cairo.py
│ │ │ │ │ ├── backend_svg.py
│ │ │ │ │ ├── backend_template.py
│ │ │ │ │ ├── backend_tkagg.py
│ │ │ │ │ ├── backend_tkcairo.py
│ │ │ │ │ ├── backend_webagg.py
│ │ │ │ │ ├── backend_webagg_core.py
│ │ │ │ │ ├── backend_wx.py
│ │ │ │ │ ├── backend_wxagg.py
│ │ │ │ │ ├── backend_wxcairo.py
│ │ │ │ │ ├── qt_compat.py
│ │ │ │ │ ├── qt_editor
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── figureoptions.cpython-36.pyc
│ │ │ │ │ │ │ ├── formlayout.cpython-36.pyc
│ │ │ │ │ │ │ └── formsubplottool.cpython-36.pyc
│ │ │ │ │ │ ├── figureoptions.py
│ │ │ │ │ │ ├── formlayout.py
│ │ │ │ │ │ └── formsubplottool.py
│ │ │ │ │ ├── tkagg.py
│ │ │ │ │ ├── web_backend
│ │ │ │ │ │ ├── all_figures.html
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ ├── boilerplate.css
│ │ │ │ │ │ │ ├── fbm.css
│ │ │ │ │ │ │ └── page.css
│ │ │ │ │ │ ├── ipython_inline_figure.html
│ │ │ │ │ │ ├── jquery
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ └── themes
│ │ │ │ │ │ │ │ └── base
│ │ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png
│ │ │ │ │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png
│ │ │ │ │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png
│ │ │ │ │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png
│ │ │ │ │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png
│ │ │ │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ │ │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png
│ │ │ │ │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png
│ │ │ │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png
│ │ │ │ │ │ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ │ │ │ │ │ ├── ui-icons_228ef1_256x240.png
│ │ │ │ │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png
│ │ │ │ │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png
│ │ │ │ │ │ │ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ │ │ │ │ │ ├── jquery-ui.css
│ │ │ │ │ │ │ │ └── jquery-ui.min.css
│ │ │ │ │ │ │ └── js
│ │ │ │ │ │ │ ├── jquery-1.11.3.js
│ │ │ │ │ │ │ ├── jquery-1.11.3.min.js
│ │ │ │ │ │ │ ├── jquery-ui.js
│ │ │ │ │ │ │ └── jquery-ui.min.js
│ │ │ │ │ │ ├── js
│ │ │ │ │ │ │ ├── mpl.js
│ │ │ │ │ │ │ ├── mpl_tornado.js
│ │ │ │ │ │ │ └── nbagg_mpl.js
│ │ │ │ │ │ ├── nbagg_uat.ipynb
│ │ │ │ │ │ └── single_figure.html
│ │ │ │ │ ├── windowing.py
│ │ │ │ │ └── wx_compat.py
│ │ │ │ ├── bezier.py
│ │ │ │ ├── blocking_input.py
│ │ │ │ ├── category.py
│ │ │ │ ├── cbook
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ └── deprecation.cpython-36.pyc
│ │ │ │ │ └── deprecation.py
│ │ │ │ ├── cm.py
│ │ │ │ ├── collections.py
│ │ │ │ ├── colorbar.py
│ │ │ │ ├── colors.py
│ │ │ │ ├── compat
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ └── subprocess.cpython-36.pyc
│ │ │ │ │ └── subprocess.py
│ │ │ │ ├── concrt140.dll
│ │ │ │ ├── container.py
│ │ │ │ ├── contour.py
│ │ │ │ ├── dates.py
│ │ │ │ ├── docstring.py
│ │ │ │ ├── dviread.py
│ │ │ │ ├── figure.py
│ │ │ │ ├── font_manager.py
│ │ │ │ ├── fontconfig_pattern.py
│ │ │ │ ├── ft2font.cp36-win_amd64.pyd
│ │ │ │ ├── gridspec.py
│ │ │ │ ├── hatch.py
│ │ │ │ ├── image.py
│ │ │ │ ├── legend.py
│ │ │ │ ├── legend_handler.py
│ │ │ │ ├── lines.py
│ │ │ │ ├── markers.py
│ │ │ │ ├── mathtext.py
│ │ │ │ ├── mlab.py
│ │ │ │ ├── mpl-data
│ │ │ │ │ ├── fonts
│ │ │ │ │ │ ├── afm
│ │ │ │ │ │ │ ├── cmex10.afm
│ │ │ │ │ │ │ ├── cmmi10.afm
│ │ │ │ │ │ │ ├── cmr10.afm
│ │ │ │ │ │ │ ├── cmsy10.afm
│ │ │ │ │ │ │ ├── cmtt10.afm
│ │ │ │ │ │ │ ├── pagd8a.afm
│ │ │ │ │ │ │ ├── pagdo8a.afm
│ │ │ │ │ │ │ ├── pagk8a.afm
│ │ │ │ │ │ │ ├── pagko8a.afm
│ │ │ │ │ │ │ ├── pbkd8a.afm
│ │ │ │ │ │ │ ├── pbkdi8a.afm
│ │ │ │ │ │ │ ├── pbkl8a.afm
│ │ │ │ │ │ │ ├── pbkli8a.afm
│ │ │ │ │ │ │ ├── pcrb8a.afm
│ │ │ │ │ │ │ ├── pcrbo8a.afm
│ │ │ │ │ │ │ ├── pcrr8a.afm
│ │ │ │ │ │ │ ├── pcrro8a.afm
│ │ │ │ │ │ │ ├── phvb8a.afm
│ │ │ │ │ │ │ ├── phvb8an.afm
│ │ │ │ │ │ │ ├── phvbo8a.afm
│ │ │ │ │ │ │ ├── phvbo8an.afm
│ │ │ │ │ │ │ ├── phvl8a.afm
│ │ │ │ │ │ │ ├── phvlo8a.afm
│ │ │ │ │ │ │ ├── phvr8a.afm
│ │ │ │ │ │ │ ├── phvr8an.afm
│ │ │ │ │ │ │ ├── phvro8a.afm
│ │ │ │ │ │ │ ├── phvro8an.afm
│ │ │ │ │ │ │ ├── pncb8a.afm
│ │ │ │ │ │ │ ├── pncbi8a.afm
│ │ │ │ │ │ │ ├── pncr8a.afm
│ │ │ │ │ │ │ ├── pncri8a.afm
│ │ │ │ │ │ │ ├── pplb8a.afm
│ │ │ │ │ │ │ ├── pplbi8a.afm
│ │ │ │ │ │ │ ├── pplr8a.afm
│ │ │ │ │ │ │ ├── pplri8a.afm
│ │ │ │ │ │ │ ├── psyr.afm
│ │ │ │ │ │ │ ├── ptmb8a.afm
│ │ │ │ │ │ │ ├── ptmbi8a.afm
│ │ │ │ │ │ │ ├── ptmr8a.afm
│ │ │ │ │ │ │ ├── ptmri8a.afm
│ │ │ │ │ │ │ ├── putb8a.afm
│ │ │ │ │ │ │ ├── putbi8a.afm
│ │ │ │ │ │ │ ├── putr8a.afm
│ │ │ │ │ │ │ ├── putri8a.afm
│ │ │ │ │ │ │ ├── pzcmi8a.afm
│ │ │ │ │ │ │ └── pzdr.afm
│ │ │ │ │ │ ├── pdfcorefonts
│ │ │ │ │ │ │ ├── Courier-Bold.afm
│ │ │ │ │ │ │ ├── Courier-BoldOblique.afm
│ │ │ │ │ │ │ ├── Courier-Oblique.afm
│ │ │ │ │ │ │ ├── Courier.afm
│ │ │ │ │ │ │ ├── Helvetica-Bold.afm
│ │ │ │ │ │ │ ├── Helvetica-BoldOblique.afm
│ │ │ │ │ │ │ ├── Helvetica-Oblique.afm
│ │ │ │ │ │ │ ├── Helvetica.afm
│ │ │ │ │ │ │ ├── Symbol.afm
│ │ │ │ │ │ │ ├── Times-Bold.afm
│ │ │ │ │ │ │ ├── Times-BoldItalic.afm
│ │ │ │ │ │ │ ├── Times-Italic.afm
│ │ │ │ │ │ │ ├── Times-Roman.afm
│ │ │ │ │ │ │ ├── ZapfDingbats.afm
│ │ │ │ │ │ │ └── readme.txt
│ │ │ │ │ │ └── ttf
│ │ │ │ │ │ ├── DejaVuSans-Bold.ttf
│ │ │ │ │ │ ├── DejaVuSans-BoldOblique.ttf
│ │ │ │ │ │ ├── DejaVuSans-Oblique.ttf
│ │ │ │ │ │ ├── DejaVuSans.ttf
│ │ │ │ │ │ ├── DejaVuSansDisplay.ttf
│ │ │ │ │ │ ├── DejaVuSansMono-Bold.ttf
│ │ │ │ │ │ ├── DejaVuSansMono-BoldOblique.ttf
│ │ │ │ │ │ ├── DejaVuSansMono-Oblique.ttf
│ │ │ │ │ │ ├── DejaVuSansMono.ttf
│ │ │ │ │ │ ├── DejaVuSerif-Bold.ttf
│ │ │ │ │ │ ├── DejaVuSerif-BoldItalic.ttf
│ │ │ │ │ │ ├── DejaVuSerif-Italic.ttf
│ │ │ │ │ │ ├── DejaVuSerif.ttf
│ │ │ │ │ │ ├── DejaVuSerifDisplay.ttf
│ │ │ │ │ │ ├── LICENSE_DEJAVU
│ │ │ │ │ │ ├── LICENSE_STIX
│ │ │ │ │ │ ├── STIXGeneral.ttf
│ │ │ │ │ │ ├── STIXGeneralBol.ttf
│ │ │ │ │ │ ├── STIXGeneralBolIta.ttf
│ │ │ │ │ │ ├── STIXGeneralItalic.ttf
│ │ │ │ │ │ ├── STIXNonUni.ttf
│ │ │ │ │ │ ├── STIXNonUniBol.ttf
│ │ │ │ │ │ ├── STIXNonUniBolIta.ttf
│ │ │ │ │ │ ├── STIXNonUniIta.ttf
│ │ │ │ │ │ ├── STIXSizFiveSymReg.ttf
│ │ │ │ │ │ ├── STIXSizFourSymBol.ttf
│ │ │ │ │ │ ├── STIXSizFourSymReg.ttf
│ │ │ │ │ │ ├── STIXSizOneSymBol.ttf
│ │ │ │ │ │ ├── STIXSizOneSymReg.ttf
│ │ │ │ │ │ ├── STIXSizThreeSymBol.ttf
│ │ │ │ │ │ ├── STIXSizThreeSymReg.ttf
│ │ │ │ │ │ ├── STIXSizTwoSymBol.ttf
│ │ │ │ │ │ ├── STIXSizTwoSymReg.ttf
│ │ │ │ │ │ ├── cmb10.ttf
│ │ │ │ │ │ ├── cmex10.ttf
│ │ │ │ │ │ ├── cmmi10.ttf
│ │ │ │ │ │ ├── cmr10.ttf
│ │ │ │ │ │ ├── cmss10.ttf
│ │ │ │ │ │ ├── cmsy10.ttf
│ │ │ │ │ │ ├── cmtt10.ttf
│ │ │ │ │ │ └── local.conf
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── back.gif
│ │ │ │ │ │ ├── back.pdf
│ │ │ │ │ │ ├── back.png
│ │ │ │ │ │ ├── back.svg
│ │ │ │ │ │ ├── back_large.gif
│ │ │ │ │ │ ├── back_large.png
│ │ │ │ │ │ ├── filesave.gif
│ │ │ │ │ │ ├── filesave.pdf
│ │ │ │ │ │ ├── filesave.png
│ │ │ │ │ │ ├── filesave.svg
│ │ │ │ │ │ ├── filesave_large.gif
│ │ │ │ │ │ ├── filesave_large.png
│ │ │ │ │ │ ├── forward.gif
│ │ │ │ │ │ ├── forward.pdf
│ │ │ │ │ │ ├── forward.png
│ │ │ │ │ │ ├── forward.svg
│ │ │ │ │ │ ├── forward_large.gif
│ │ │ │ │ │ ├── forward_large.png
│ │ │ │ │ │ ├── hand.gif
│ │ │ │ │ │ ├── hand.pdf
│ │ │ │ │ │ ├── hand.png
│ │ │ │ │ │ ├── hand.svg
│ │ │ │ │ │ ├── hand_large.gif
│ │ │ │ │ │ ├── help.pdf
│ │ │ │ │ │ ├── help.png
│ │ │ │ │ │ ├── help.ppm
│ │ │ │ │ │ ├── help.svg
│ │ │ │ │ │ ├── help_large.png
│ │ │ │ │ │ ├── help_large.ppm
│ │ │ │ │ │ ├── home.gif
│ │ │ │ │ │ ├── home.pdf
│ │ │ │ │ │ ├── home.png
│ │ │ │ │ │ ├── home.svg
│ │ │ │ │ │ ├── home_large.gif
│ │ │ │ │ │ ├── home_large.png
│ │ │ │ │ │ ├── matplotlib.pdf
│ │ │ │ │ │ ├── matplotlib.png
│ │ │ │ │ │ ├── matplotlib.ppm
│ │ │ │ │ │ ├── matplotlib.svg
│ │ │ │ │ │ ├── matplotlib_large.png
│ │ │ │ │ │ ├── move.gif
│ │ │ │ │ │ ├── move.pdf
│ │ │ │ │ │ ├── move.png
│ │ │ │ │ │ ├── move.svg
│ │ │ │ │ │ ├── move_large.gif
│ │ │ │ │ │ ├── move_large.png
│ │ │ │ │ │ ├── qt4_editor_options.pdf
│ │ │ │ │ │ ├── qt4_editor_options.png
│ │ │ │ │ │ ├── qt4_editor_options.svg
│ │ │ │ │ │ ├── qt4_editor_options_large.png
│ │ │ │ │ │ ├── subplots.gif
│ │ │ │ │ │ ├── subplots.pdf
│ │ │ │ │ │ ├── subplots.png
│ │ │ │ │ │ ├── subplots.svg
│ │ │ │ │ │ ├── subplots_large.gif
│ │ │ │ │ │ ├── subplots_large.png
│ │ │ │ │ │ ├── zoom_to_rect.gif
│ │ │ │ │ │ ├── zoom_to_rect.pdf
│ │ │ │ │ │ ├── zoom_to_rect.png
│ │ │ │ │ │ ├── zoom_to_rect.svg
│ │ │ │ │ │ ├── zoom_to_rect_large.gif
│ │ │ │ │ │ └── zoom_to_rect_large.png
│ │ │ │ │ ├── matplotlibrc
│ │ │ │ │ ├── sample_data
│ │ │ │ │ │ ├── Minduka_Present_Blue_Pack.png
│ │ │ │ │ │ ├── None_vs_nearest-pdf.png
│ │ │ │ │ │ ├── README.txt
│ │ │ │ │ │ ├── aapl.npz
│ │ │ │ │ │ ├── ada.png
│ │ │ │ │ │ ├── axes_grid
│ │ │ │ │ │ │ └── bivariate_normal.npy
│ │ │ │ │ │ ├── ct.raw.gz
│ │ │ │ │ │ ├── data_x_x2_x3.csv
│ │ │ │ │ │ ├── demodata.csv
│ │ │ │ │ │ ├── eeg.dat
│ │ │ │ │ │ ├── embedding_in_wx3.xrc
│ │ │ │ │ │ ├── goog.npz
│ │ │ │ │ │ ├── grace_hopper.jpg
│ │ │ │ │ │ ├── grace_hopper.png
│ │ │ │ │ │ ├── jacksboro_fault_dem.npz
│ │ │ │ │ │ ├── logo2.png
│ │ │ │ │ │ ├── membrane.dat
│ │ │ │ │ │ ├── msft.csv
│ │ │ │ │ │ ├── percent_bachelors_degrees_women_usa.csv
│ │ │ │ │ │ └── s1045.ima.gz
│ │ │ │ │ └── stylelib
│ │ │ │ │ ├── Solarize_Light2.mplstyle
│ │ │ │ │ ├── _classic_test.mplstyle
│ │ │ │ │ ├── bmh.mplstyle
│ │ │ │ │ ├── classic.mplstyle
│ │ │ │ │ ├── dark_background.mplstyle
│ │ │ │ │ ├── fast.mplstyle
│ │ │ │ │ ├── fivethirtyeight.mplstyle
│ │ │ │ │ ├── ggplot.mplstyle
│ │ │ │ │ ├── grayscale.mplstyle
│ │ │ │ │ ├── seaborn-bright.mplstyle
│ │ │ │ │ ├── seaborn-colorblind.mplstyle
│ │ │ │ │ ├── seaborn-dark-palette.mplstyle
│ │ │ │ │ ├── seaborn-dark.mplstyle
│ │ │ │ │ ├── seaborn-darkgrid.mplstyle
│ │ │ │ │ ├── seaborn-deep.mplstyle
│ │ │ │ │ ├── seaborn-muted.mplstyle
│ │ │ │ │ ├── seaborn-notebook.mplstyle
│ │ │ │ │ ├── seaborn-paper.mplstyle
│ │ │ │ │ ├── seaborn-pastel.mplstyle
│ │ │ │ │ ├── seaborn-poster.mplstyle
│ │ │ │ │ ├── seaborn-talk.mplstyle
│ │ │ │ │ ├── seaborn-ticks.mplstyle
│ │ │ │ │ ├── seaborn-white.mplstyle
│ │ │ │ │ ├── seaborn-whitegrid.mplstyle
│ │ │ │ │ ├── seaborn.mplstyle
│ │ │ │ │ └── tableau-colorblind10.mplstyle
│ │ │ │ ├── msvcp140.dll
│ │ │ │ ├── offsetbox.py
│ │ │ │ ├── patches.py
│ │ │ │ ├── path.py
│ │ │ │ ├── patheffects.py
│ │ │ │ ├── projections
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── geo.cpython-36.pyc
│ │ │ │ │ │ └── polar.cpython-36.pyc
│ │ │ │ │ ├── geo.py
│ │ │ │ │ └── polar.py
│ │ │ │ ├── pylab.py
│ │ │ │ ├── pyplot.py
│ │ │ │ ├── quiver.py
│ │ │ │ ├── rcsetup.py
│ │ │ │ ├── sankey.py
│ │ │ │ ├── scale.py
│ │ │ │ ├── sphinxext
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── mathmpl.cpython-36.pyc
│ │ │ │ │ │ └── plot_directive.cpython-36.pyc
│ │ │ │ │ ├── mathmpl.py
│ │ │ │ │ └── plot_directive.py
│ │ │ │ ├── spines.py
│ │ │ │ ├── stackplot.py
│ │ │ │ ├── streamplot.py
│ │ │ │ ├── style
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ └── core.cpython-36.pyc
│ │ │ │ │ └── core.py
│ │ │ │ ├── table.py
│ │ │ │ ├── testing
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── compare.cpython-36.pyc
│ │ │ │ │ │ ├── conftest.cpython-36.pyc
│ │ │ │ │ │ ├── decorators.cpython-36.pyc
│ │ │ │ │ │ ├── determinism.cpython-36.pyc
│ │ │ │ │ │ ├── disable_internet.cpython-36.pyc
│ │ │ │ │ │ └── exceptions.cpython-36.pyc
│ │ │ │ │ ├── compare.py
│ │ │ │ │ ├── conftest.py
│ │ │ │ │ ├── decorators.py
│ │ │ │ │ ├── determinism.py
│ │ │ │ │ ├── disable_internet.py
│ │ │ │ │ ├── exceptions.py
│ │ │ │ │ └── jpl_units
│ │ │ │ │ ├── Duration.py
│ │ │ │ │ ├── Epoch.py
│ │ │ │ │ ├── EpochConverter.py
│ │ │ │ │ ├── StrConverter.py
│ │ │ │ │ ├── UnitDbl.py
│ │ │ │ │ ├── UnitDblConverter.py
│ │ │ │ │ ├── UnitDblFormatter.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── __pycache__
│ │ │ │ │ ├── Duration.cpython-36.pyc
│ │ │ │ │ ├── Epoch.cpython-36.pyc
│ │ │ │ │ ├── EpochConverter.cpython-36.pyc
│ │ │ │ │ ├── StrConverter.cpython-36.pyc
│ │ │ │ │ ├── UnitDbl.cpython-36.pyc
│ │ │ │ │ ├── UnitDblConverter.cpython-36.pyc
│ │ │ │ │ ├── UnitDblFormatter.cpython-36.pyc
│ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ ├── texmanager.py
│ │ │ │ ├── text.py
│ │ │ │ ├── textpath.py
│ │ │ │ ├── ticker.py
│ │ │ │ ├── tight_bbox.py
│ │ │ │ ├── tight_layout.py
│ │ │ │ ├── transforms.py
│ │ │ │ ├── tri
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── triangulation.cpython-36.pyc
│ │ │ │ │ │ ├── tricontour.cpython-36.pyc
│ │ │ │ │ │ ├── trifinder.cpython-36.pyc
│ │ │ │ │ │ ├── triinterpolate.cpython-36.pyc
│ │ │ │ │ │ ├── tripcolor.cpython-36.pyc
│ │ │ │ │ │ ├── triplot.cpython-36.pyc
│ │ │ │ │ │ ├── trirefine.cpython-36.pyc
│ │ │ │ │ │ └── tritools.cpython-36.pyc
│ │ │ │ │ ├── triangulation.py
│ │ │ │ │ ├── tricontour.py
│ │ │ │ │ ├── trifinder.py
│ │ │ │ │ ├── triinterpolate.py
│ │ │ │ │ ├── tripcolor.py
│ │ │ │ │ ├── triplot.py
│ │ │ │ │ ├── trirefine.py
│ │ │ │ │ └── tritools.py
│ │ │ │ ├── ttconv.cp36-win_amd64.pyd
│ │ │ │ ├── type1font.py
│ │ │ │ ├── units.py
│ │ │ │ └── widgets.py
│ │ │ ├── matplotlib-3.0.2-py3.6-nspkg.pth
│ │ │ ├── matplotlib-3.0.2.dist-info
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── WHEEL
│ │ │ │ ├── namespace_packages.txt
│ │ │ │ └── top_level.txt
│ │ │ ├── mpl_toolkits
│ │ │ │ ├── axes_grid
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── anchored_artists.cpython-36.pyc
│ │ │ │ │ │ ├── angle_helper.cpython-36.pyc
│ │ │ │ │ │ ├── axes_divider.cpython-36.pyc
│ │ │ │ │ │ ├── axes_grid.cpython-36.pyc
│ │ │ │ │ │ ├── axes_rgb.cpython-36.pyc
│ │ │ │ │ │ ├── axes_size.cpython-36.pyc
│ │ │ │ │ │ ├── axis_artist.cpython-36.pyc
│ │ │ │ │ │ ├── axisline_style.cpython-36.pyc
│ │ │ │ │ │ ├── axislines.cpython-36.pyc
│ │ │ │ │ │ ├── clip_path.cpython-36.pyc
│ │ │ │ │ │ ├── colorbar.cpython-36.pyc
│ │ │ │ │ │ ├── floating_axes.cpython-36.pyc
│ │ │ │ │ │ ├── grid_finder.cpython-36.pyc
│ │ │ │ │ │ ├── grid_helper_curvelinear.cpython-36.pyc
│ │ │ │ │ │ ├── inset_locator.cpython-36.pyc
│ │ │ │ │ │ └── parasite_axes.cpython-36.pyc
│ │ │ │ │ ├── anchored_artists.py
│ │ │ │ │ ├── angle_helper.py
│ │ │ │ │ ├── axes_divider.py
│ │ │ │ │ ├── axes_grid.py
│ │ │ │ │ ├── axes_rgb.py
│ │ │ │ │ ├── axes_size.py
│ │ │ │ │ ├── axis_artist.py
│ │ │ │ │ ├── axisline_style.py
│ │ │ │ │ ├── axislines.py
│ │ │ │ │ ├── clip_path.py
│ │ │ │ │ ├── colorbar.py
│ │ │ │ │ ├── floating_axes.py
│ │ │ │ │ ├── grid_finder.py
│ │ │ │ │ ├── grid_helper_curvelinear.py
│ │ │ │ │ ├── inset_locator.py
│ │ │ │ │ └── parasite_axes.py
│ │ │ │ ├── axes_grid1
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── anchored_artists.cpython-36.pyc
│ │ │ │ │ │ ├── axes_divider.cpython-36.pyc
│ │ │ │ │ │ ├── axes_grid.cpython-36.pyc
│ │ │ │ │ │ ├── axes_rgb.cpython-36.pyc
│ │ │ │ │ │ ├── axes_size.cpython-36.pyc
│ │ │ │ │ │ ├── colorbar.cpython-36.pyc
│ │ │ │ │ │ ├── inset_locator.cpython-36.pyc
│ │ │ │ │ │ ├── mpl_axes.cpython-36.pyc
│ │ │ │ │ │ └── parasite_axes.cpython-36.pyc
│ │ │ │ │ ├── anchored_artists.py
│ │ │ │ │ ├── axes_divider.py
│ │ │ │ │ ├── axes_grid.py
│ │ │ │ │ ├── axes_rgb.py
│ │ │ │ │ ├── axes_size.py
│ │ │ │ │ ├── colorbar.py
│ │ │ │ │ ├── inset_locator.py
│ │ │ │ │ ├── mpl_axes.py
│ │ │ │ │ └── parasite_axes.py
│ │ │ │ ├── axisartist
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── angle_helper.cpython-36.pyc
│ │ │ │ │ │ ├── axes_divider.cpython-36.pyc
│ │ │ │ │ │ ├── axes_grid.cpython-36.pyc
│ │ │ │ │ │ ├── axes_rgb.cpython-36.pyc
│ │ │ │ │ │ ├── axis_artist.cpython-36.pyc
│ │ │ │ │ │ ├── axisline_style.cpython-36.pyc
│ │ │ │ │ │ ├── axislines.cpython-36.pyc
│ │ │ │ │ │ ├── clip_path.cpython-36.pyc
│ │ │ │ │ │ ├── floating_axes.cpython-36.pyc
│ │ │ │ │ │ ├── grid_finder.cpython-36.pyc
│ │ │ │ │ │ ├── grid_helper_curvelinear.cpython-36.pyc
│ │ │ │ │ │ └── parasite_axes.cpython-36.pyc
│ │ │ │ │ ├── angle_helper.py
│ │ │ │ │ ├── axes_divider.py
│ │ │ │ │ ├── axes_grid.py
│ │ │ │ │ ├── axes_rgb.py
│ │ │ │ │ ├── axis_artist.py
│ │ │ │ │ ├── axisline_style.py
│ │ │ │ │ ├── axislines.py
│ │ │ │ │ ├── clip_path.py
│ │ │ │ │ ├── floating_axes.py
│ │ │ │ │ ├── grid_finder.py
│ │ │ │ │ ├── grid_helper_curvelinear.py
│ │ │ │ │ └── parasite_axes.py
│ │ │ │ └── mplot3d
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── art3d.cpython-36.pyc
│ │ │ │ │ ├── axes3d.cpython-36.pyc
│ │ │ │ │ ├── axis3d.cpython-36.pyc
│ │ │ │ │ └── proj3d.cpython-36.pyc
│ │ │ │ ├── art3d.py
│ │ │ │ ├── axes3d.py
│ │ │ │ ├── axis3d.py
│ │ │ │ └── proj3d.py
│ │ │ ├── numpy
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── __config__.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __config__.cpython-36.pyc
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── _distributor_init.cpython-36.pyc
│ │ │ │ │ ├── _globals.cpython-36.pyc
│ │ │ │ │ ├── _import_tools.cpython-36.pyc
│ │ │ │ │ ├── add_newdocs.cpython-36.pyc
│ │ │ │ │ ├── conftest.cpython-36.pyc
│ │ │ │ │ ├── ctypeslib.cpython-36.pyc
│ │ │ │ │ ├── dual.cpython-36.pyc
│ │ │ │ │ ├── matlib.cpython-36.pyc
│ │ │ │ │ ├── setup.cpython-36.pyc
│ │ │ │ │ └── version.cpython-36.pyc
│ │ │ │ ├── _distributor_init.py
│ │ │ │ ├── _globals.py
│ │ │ │ ├── _import_tools.py
│ │ │ │ ├── add_newdocs.py
│ │ │ │ ├── compat
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _inspect.cpython-36.pyc
│ │ │ │ │ │ ├── py3k.cpython-36.pyc
│ │ │ │ │ │ └── setup.cpython-36.pyc
│ │ │ │ │ ├── _inspect.py
│ │ │ │ │ ├── py3k.py
│ │ │ │ │ ├── setup.py
│ │ │ │ │ └── tests
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ └── test_compat.cpython-36.pyc
│ │ │ │ │ └── test_compat.py
│ │ │ │ ├── conftest.py
│ │ │ │ ├── core
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _internal.cpython-36.pyc
│ │ │ │ │ │ ├── _methods.cpython-36.pyc
│ │ │ │ │ │ ├── arrayprint.cpython-36.pyc
│ │ │ │ │ │ ├── cversions.cpython-36.pyc
│ │ │ │ │ │ ├── defchararray.cpython-36.pyc
│ │ │ │ │ │ ├── einsumfunc.cpython-36.pyc
│ │ │ │ │ │ ├── fromnumeric.cpython-36.pyc
│ │ │ │ │ │ ├── function_base.cpython-36.pyc
│ │ │ │ │ │ ├── generate_numpy_api.cpython-36.pyc
│ │ │ │ │ │ ├── getlimits.cpython-36.pyc
│ │ │ │ │ │ ├── info.cpython-36.pyc
│ │ │ │ │ │ ├── machar.cpython-36.pyc
│ │ │ │ │ │ ├── memmap.cpython-36.pyc
│ │ │ │ │ │ ├── numeric.cpython-36.pyc
│ │ │ │ │ │ ├── numerictypes.cpython-36.pyc
│ │ │ │ │ │ ├── records.cpython-36.pyc
│ │ │ │ │ │ ├── setup.cpython-36.pyc
│ │ │ │ │ │ ├── setup_common.cpython-36.pyc
│ │ │ │ │ │ ├── shape_base.cpython-36.pyc
│ │ │ │ │ │ └── umath_tests.cpython-36.pyc
│ │ │ │ │ ├── _dummy.cp36-win_amd64.pyd
│ │ │ │ │ ├── _internal.py
│ │ │ │ │ ├── _methods.py
│ │ │ │ │ ├── _multiarray_tests.cp36-win_amd64.pyd
│ │ │ │ │ ├── _operand_flag_tests.cp36-win_amd64.pyd
│ │ │ │ │ ├── _rational_tests.cp36-win_amd64.pyd
│ │ │ │ │ ├── _struct_ufunc_tests.cp36-win_amd64.pyd
│ │ │ │ │ ├── _umath_tests.cp36-win_amd64.pyd
│ │ │ │ │ ├── arrayprint.py
│ │ │ │ │ ├── cversions.py
│ │ │ │ │ ├── defchararray.py
│ │ │ │ │ ├── einsumfunc.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
│ │ │ │ │ │ ├── npy-pkg-config
│ │ │ │ │ │ │ ├── mlib.ini
│ │ │ │ │ │ │ └── npymath.ini
│ │ │ │ │ │ └── npymath.lib
│ │ │ │ │ ├── machar.py
│ │ │ │ │ ├── memmap.py
│ │ │ │ │ ├── multiarray.cp36-win_amd64.pyd
│ │ │ │ │ ├── numeric.py
│ │ │ │ │ ├── numerictypes.py
│ │ │ │ │ ├── records.py
│ │ │ │ │ ├── setup.py
│ │ │ │ │ ├── setup_common.py
│ │ │ │ │ ├── shape_base.py
│ │ │ │ │ ├── tests
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── _locales.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_abc.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_api.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_arrayprint.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_datetime.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_defchararray.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_deprecations.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_dtype.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_einsum.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_errstate.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_extint128.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_function_base.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_getlimits.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_half.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_indexerrors.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_indexing.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_item_selection.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_longdouble.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_machar.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_mem_overlap.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_memmap.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_multiarray.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_nditer.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_numeric.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_numerictypes.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_print.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_records.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_regression.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_scalar_ctors.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_scalarbuffer.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_scalarinherit.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_scalarmath.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_scalarprint.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_shape_base.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_ufunc.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_umath.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_umath_complex.cpython-36.pyc
│ │ │ │ │ │ │ └── test_unicode.cpython-36.pyc
│ │ │ │ │ │ ├── _locales.py
│ │ │ │ │ │ ├── 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_extint128.py
│ │ │ │ │ │ ├── test_function_base.py
│ │ │ │ │ │ ├── test_getlimits.py
│ │ │ │ │ │ ├── test_half.py
│ │ │ │ │ │ ├── test_indexerrors.py
│ │ │ │ │ │ ├── test_indexing.py
│ │ │ │ │ │ ├── test_item_selection.py
│ │ │ │ │ │ ├── test_longdouble.py
│ │ │ │ │ │ ├── test_machar.py
│ │ │ │ │ │ ├── test_mem_overlap.py
│ │ │ │ │ │ ├── test_memmap.py
│ │ │ │ │ │ ├── test_multiarray.py
│ │ │ │ │ │ ├── test_nditer.py
│ │ │ │ │ │ ├── test_numeric.py
│ │ │ │ │ │ ├── test_numerictypes.py
│ │ │ │ │ │ ├── test_print.py
│ │ │ │ │ │ ├── test_records.py
│ │ │ │ │ │ ├── test_regression.py
│ │ │ │ │ │ ├── test_scalar_ctors.py
│ │ │ │ │ │ ├── test_scalarbuffer.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.cp36-win_amd64.pyd
│ │ │ │ │ └── umath_tests.py
│ │ │ │ ├── ctypeslib.py
│ │ │ │ ├── distutils
│ │ │ │ │ ├── __config__.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __config__.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── __version__.cpython-36.pyc
│ │ │ │ │ │ ├── ccompiler.cpython-36.pyc
│ │ │ │ │ │ ├── compat.cpython-36.pyc
│ │ │ │ │ │ ├── conv_template.cpython-36.pyc
│ │ │ │ │ │ ├── core.cpython-36.pyc
│ │ │ │ │ │ ├── cpuinfo.cpython-36.pyc
│ │ │ │ │ │ ├── environment.cpython-36.pyc
│ │ │ │ │ │ ├── exec_command.cpython-36.pyc
│ │ │ │ │ │ ├── extension.cpython-36.pyc
│ │ │ │ │ │ ├── from_template.cpython-36.pyc
│ │ │ │ │ │ ├── info.cpython-36.pyc
│ │ │ │ │ │ ├── intelccompiler.cpython-36.pyc
│ │ │ │ │ │ ├── lib2def.cpython-36.pyc
│ │ │ │ │ │ ├── line_endings.cpython-36.pyc
│ │ │ │ │ │ ├── log.cpython-36.pyc
│ │ │ │ │ │ ├── mingw32ccompiler.cpython-36.pyc
│ │ │ │ │ │ ├── misc_util.cpython-36.pyc
│ │ │ │ │ │ ├── msvc9compiler.cpython-36.pyc
│ │ │ │ │ │ ├── msvccompiler.cpython-36.pyc
│ │ │ │ │ │ ├── npy_pkg_config.cpython-36.pyc
│ │ │ │ │ │ ├── numpy_distribution.cpython-36.pyc
│ │ │ │ │ │ ├── pathccompiler.cpython-36.pyc
│ │ │ │ │ │ ├── setup.cpython-36.pyc
│ │ │ │ │ │ ├── system_info.cpython-36.pyc
│ │ │ │ │ │ └── unixccompiler.cpython-36.pyc
│ │ │ │ │ ├── __version__.py
│ │ │ │ │ ├── ccompiler.py
│ │ │ │ │ ├── command
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── autodist.cpython-36.pyc
│ │ │ │ │ │ │ ├── bdist_rpm.cpython-36.pyc
│ │ │ │ │ │ │ ├── build.cpython-36.pyc
│ │ │ │ │ │ │ ├── build_clib.cpython-36.pyc
│ │ │ │ │ │ │ ├── build_ext.cpython-36.pyc
│ │ │ │ │ │ │ ├── build_py.cpython-36.pyc
│ │ │ │ │ │ │ ├── build_scripts.cpython-36.pyc
│ │ │ │ │ │ │ ├── build_src.cpython-36.pyc
│ │ │ │ │ │ │ ├── config.cpython-36.pyc
│ │ │ │ │ │ │ ├── config_compiler.cpython-36.pyc
│ │ │ │ │ │ │ ├── develop.cpython-36.pyc
│ │ │ │ │ │ │ ├── egg_info.cpython-36.pyc
│ │ │ │ │ │ │ ├── install.cpython-36.pyc
│ │ │ │ │ │ │ ├── install_clib.cpython-36.pyc
│ │ │ │ │ │ │ ├── install_data.cpython-36.pyc
│ │ │ │ │ │ │ ├── install_headers.cpython-36.pyc
│ │ │ │ │ │ │ └── sdist.cpython-36.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-36.pyc
│ │ │ │ │ │ │ ├── absoft.cpython-36.pyc
│ │ │ │ │ │ │ ├── compaq.cpython-36.pyc
│ │ │ │ │ │ │ ├── g95.cpython-36.pyc
│ │ │ │ │ │ │ ├── gnu.cpython-36.pyc
│ │ │ │ │ │ │ ├── hpux.cpython-36.pyc
│ │ │ │ │ │ │ ├── ibm.cpython-36.pyc
│ │ │ │ │ │ │ ├── intel.cpython-36.pyc
│ │ │ │ │ │ │ ├── lahey.cpython-36.pyc
│ │ │ │ │ │ │ ├── mips.cpython-36.pyc
│ │ │ │ │ │ │ ├── nag.cpython-36.pyc
│ │ │ │ │ │ │ ├── none.cpython-36.pyc
│ │ │ │ │ │ │ ├── pathf95.cpython-36.pyc
│ │ │ │ │ │ │ ├── pg.cpython-36.pyc
│ │ │ │ │ │ │ ├── sun.cpython-36.pyc
│ │ │ │ │ │ │ └── vast.cpython-36.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
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_exec_command.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_fcompiler_gnu.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_fcompiler_intel.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_fcompiler_nagfor.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_from_template.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_misc_util.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_npy_pkg_config.cpython-36.pyc
│ │ │ │ │ │ │ └── test_system_info.cpython-36.pyc
│ │ │ │ │ │ ├── test_exec_command.py
│ │ │ │ │ │ ├── test_fcompiler_gnu.py
│ │ │ │ │ │ ├── test_fcompiler_intel.py
│ │ │ │ │ │ ├── test_fcompiler_nagfor.py
│ │ │ │ │ │ ├── test_from_template.py
│ │ │ │ │ │ ├── test_misc_util.py
│ │ │ │ │ │ ├── test_npy_pkg_config.py
│ │ │ │ │ │ └── test_system_info.py
│ │ │ │ │ └── unixccompiler.py
│ │ │ │ ├── doc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── basics.cpython-36.pyc
│ │ │ │ │ │ ├── broadcasting.cpython-36.pyc
│ │ │ │ │ │ ├── byteswapping.cpython-36.pyc
│ │ │ │ │ │ ├── constants.cpython-36.pyc
│ │ │ │ │ │ ├── creation.cpython-36.pyc
│ │ │ │ │ │ ├── glossary.cpython-36.pyc
│ │ │ │ │ │ ├── indexing.cpython-36.pyc
│ │ │ │ │ │ ├── internals.cpython-36.pyc
│ │ │ │ │ │ ├── misc.cpython-36.pyc
│ │ │ │ │ │ ├── structured_arrays.cpython-36.pyc
│ │ │ │ │ │ ├── subclassing.cpython-36.pyc
│ │ │ │ │ │ └── ufuncs.cpython-36.pyc
│ │ │ │ │ ├── basics.py
│ │ │ │ │ ├── broadcasting.py
│ │ │ │ │ ├── byteswapping.py
│ │ │ │ │ ├── constants.py
│ │ │ │ │ ├── creation.py
│ │ │ │ │ ├── glossary.py
│ │ │ │ │ ├── indexing.py
│ │ │ │ │ ├── internals.py
│ │ │ │ │ ├── misc.py
│ │ │ │ │ ├── structured_arrays.py
│ │ │ │ │ ├── subclassing.py
│ │ │ │ │ └── ufuncs.py
│ │ │ │ ├── dual.py
│ │ │ │ ├── f2py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __main__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── __main__.cpython-36.pyc
│ │ │ │ │ │ ├── __version__.cpython-36.pyc
│ │ │ │ │ │ ├── auxfuncs.cpython-36.pyc
│ │ │ │ │ │ ├── capi_maps.cpython-36.pyc
│ │ │ │ │ │ ├── cb_rules.cpython-36.pyc
│ │ │ │ │ │ ├── cfuncs.cpython-36.pyc
│ │ │ │ │ │ ├── common_rules.cpython-36.pyc
│ │ │ │ │ │ ├── crackfortran.cpython-36.pyc
│ │ │ │ │ │ ├── diagnose.cpython-36.pyc
│ │ │ │ │ │ ├── f2py2e.cpython-36.pyc
│ │ │ │ │ │ ├── f2py_testing.cpython-36.pyc
│ │ │ │ │ │ ├── f90mod_rules.cpython-36.pyc
│ │ │ │ │ │ ├── func2subr.cpython-36.pyc
│ │ │ │ │ │ ├── info.cpython-36.pyc
│ │ │ │ │ │ ├── rules.cpython-36.pyc
│ │ │ │ │ │ ├── setup.cpython-36.pyc
│ │ │ │ │ │ └── use_rules.cpython-36.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
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_array_from_pyobj.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_assumed_shape.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_block_docstring.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_callback.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_common.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_kind.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_mixed.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_parameter.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_regression.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_return_character.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_return_complex.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_return_integer.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_return_logical.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_return_real.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_semicolon_split.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_size.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_string.cpython-36.pyc
│ │ │ │ │ │ │ └── util.cpython-36.pyc
│ │ │ │ │ │ ├── src
│ │ │ │ │ │ │ ├── array_from_pyobj
│ │ │ │ │ │ │ │ └── wrapmodule.c
│ │ │ │ │ │ │ ├── assumed_shape
│ │ │ │ │ │ │ │ ├── foo_free.f90
│ │ │ │ │ │ │ │ ├── foo_mod.f90
│ │ │ │ │ │ │ │ ├── foo_use.f90
│ │ │ │ │ │ │ │ └── precision.f90
│ │ │ │ │ │ │ ├── common
│ │ │ │ │ │ │ │ └── block.f
│ │ │ │ │ │ │ ├── kind
│ │ │ │ │ │ │ │ └── foo.f90
│ │ │ │ │ │ │ ├── mixed
│ │ │ │ │ │ │ │ ├── foo.f
│ │ │ │ │ │ │ │ ├── foo_fixed.f90
│ │ │ │ │ │ │ │ └── foo_free.f90
│ │ │ │ │ │ │ ├── parameter
│ │ │ │ │ │ │ │ ├── constant_both.f90
│ │ │ │ │ │ │ │ ├── constant_compound.f90
│ │ │ │ │ │ │ │ ├── constant_integer.f90
│ │ │ │ │ │ │ │ ├── constant_non_compound.f90
│ │ │ │ │ │ │ │ └── constant_real.f90
│ │ │ │ │ │ │ ├── regression
│ │ │ │ │ │ │ │ └── inout.f90
│ │ │ │ │ │ │ ├── size
│ │ │ │ │ │ │ │ └── foo.f90
│ │ │ │ │ │ │ └── string
│ │ │ │ │ │ │ └── char.f90
│ │ │ │ │ │ ├── test_array_from_pyobj.py
│ │ │ │ │ │ ├── test_assumed_shape.py
│ │ │ │ │ │ ├── test_block_docstring.py
│ │ │ │ │ │ ├── test_callback.py
│ │ │ │ │ │ ├── test_common.py
│ │ │ │ │ │ ├── test_kind.py
│ │ │ │ │ │ ├── test_mixed.py
│ │ │ │ │ │ ├── test_parameter.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_semicolon_split.py
│ │ │ │ │ │ ├── test_size.py
│ │ │ │ │ │ ├── test_string.py
│ │ │ │ │ │ └── util.py
│ │ │ │ │ └── use_rules.py
│ │ │ │ ├── fft
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── fftpack.cpython-36.pyc
│ │ │ │ │ │ ├── helper.cpython-36.pyc
│ │ │ │ │ │ ├── info.cpython-36.pyc
│ │ │ │ │ │ └── setup.cpython-36.pyc
│ │ │ │ │ ├── fftpack.py
│ │ │ │ │ ├── fftpack_lite.cp36-win_amd64.pyd
│ │ │ │ │ ├── helper.py
│ │ │ │ │ ├── info.py
│ │ │ │ │ ├── setup.py
│ │ │ │ │ └── tests
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_fftpack.cpython-36.pyc
│ │ │ │ │ │ └── test_helper.cpython-36.pyc
│ │ │ │ │ ├── test_fftpack.py
│ │ │ │ │ └── test_helper.py
│ │ │ │ ├── lib
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _datasource.cpython-36.pyc
│ │ │ │ │ │ ├── _iotools.cpython-36.pyc
│ │ │ │ │ │ ├── _version.cpython-36.pyc
│ │ │ │ │ │ ├── arraypad.cpython-36.pyc
│ │ │ │ │ │ ├── arraysetops.cpython-36.pyc
│ │ │ │ │ │ ├── arrayterator.cpython-36.pyc
│ │ │ │ │ │ ├── financial.cpython-36.pyc
│ │ │ │ │ │ ├── format.cpython-36.pyc
│ │ │ │ │ │ ├── function_base.cpython-36.pyc
│ │ │ │ │ │ ├── histograms.cpython-36.pyc
│ │ │ │ │ │ ├── index_tricks.cpython-36.pyc
│ │ │ │ │ │ ├── info.cpython-36.pyc
│ │ │ │ │ │ ├── mixins.cpython-36.pyc
│ │ │ │ │ │ ├── nanfunctions.cpython-36.pyc
│ │ │ │ │ │ ├── npyio.cpython-36.pyc
│ │ │ │ │ │ ├── polynomial.cpython-36.pyc
│ │ │ │ │ │ ├── recfunctions.cpython-36.pyc
│ │ │ │ │ │ ├── scimath.cpython-36.pyc
│ │ │ │ │ │ ├── setup.cpython-36.pyc
│ │ │ │ │ │ ├── shape_base.cpython-36.pyc
│ │ │ │ │ │ ├── stride_tricks.cpython-36.pyc
│ │ │ │ │ │ ├── twodim_base.cpython-36.pyc
│ │ │ │ │ │ ├── type_check.cpython-36.pyc
│ │ │ │ │ │ ├── ufunclike.cpython-36.pyc
│ │ │ │ │ │ ├── user_array.cpython-36.pyc
│ │ │ │ │ │ └── utils.cpython-36.pyc
│ │ │ │ │ ├── _datasource.py
│ │ │ │ │ ├── _iotools.py
│ │ │ │ │ ├── _version.py
│ │ │ │ │ ├── arraypad.py
│ │ │ │ │ ├── arraysetops.py
│ │ │ │ │ ├── arrayterator.py
│ │ │ │ │ ├── financial.py
│ │ │ │ │ ├── format.py
│ │ │ │ │ ├── function_base.py
│ │ │ │ │ ├── histograms.py
│ │ │ │ │ ├── index_tricks.py
│ │ │ │ │ ├── info.py
│ │ │ │ │ ├── mixins.py
│ │ │ │ │ ├── nanfunctions.py
│ │ │ │ │ ├── npyio.py
│ │ │ │ │ ├── polynomial.py
│ │ │ │ │ ├── recfunctions.py
│ │ │ │ │ ├── scimath.py
│ │ │ │ │ ├── setup.py
│ │ │ │ │ ├── shape_base.py
│ │ │ │ │ ├── stride_tricks.py
│ │ │ │ │ ├── tests
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── test__datasource.cpython-36.pyc
│ │ │ │ │ │ │ ├── test__iotools.cpython-36.pyc
│ │ │ │ │ │ │ ├── test__version.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_arraypad.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_arraysetops.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_arrayterator.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_financial.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_format.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_function_base.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_histograms.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_index_tricks.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_io.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_mixins.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_nanfunctions.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_packbits.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_polynomial.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_recfunctions.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_regression.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_shape_base.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_stride_tricks.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_twodim_base.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_type_check.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_ufunclike.cpython-36.pyc
│ │ │ │ │ │ │ └── test_utils.cpython-36.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_histograms.py
│ │ │ │ │ │ ├── test_index_tricks.py
│ │ │ │ │ │ ├── test_io.py
│ │ │ │ │ │ ├── test_mixins.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-36.pyc
│ │ │ │ │ │ ├── info.cpython-36.pyc
│ │ │ │ │ │ ├── linalg.cpython-36.pyc
│ │ │ │ │ │ └── setup.cpython-36.pyc
│ │ │ │ │ ├── _umath_linalg.cp36-win_amd64.pyd
│ │ │ │ │ ├── info.py
│ │ │ │ │ ├── lapack_lite.cp36-win_amd64.pyd
│ │ │ │ │ ├── linalg.py
│ │ │ │ │ ├── setup.py
│ │ │ │ │ └── tests
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_build.cpython-36.pyc
│ │ │ │ │ │ ├── test_deprecations.cpython-36.pyc
│ │ │ │ │ │ ├── test_linalg.cpython-36.pyc
│ │ │ │ │ │ └── test_regression.cpython-36.pyc
│ │ │ │ │ ├── test_build.py
│ │ │ │ │ ├── test_deprecations.py
│ │ │ │ │ ├── test_linalg.py
│ │ │ │ │ └── test_regression.py
│ │ │ │ ├── ma
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── bench.cpython-36.pyc
│ │ │ │ │ │ ├── core.cpython-36.pyc
│ │ │ │ │ │ ├── extras.cpython-36.pyc
│ │ │ │ │ │ ├── mrecords.cpython-36.pyc
│ │ │ │ │ │ ├── setup.cpython-36.pyc
│ │ │ │ │ │ ├── testutils.cpython-36.pyc
│ │ │ │ │ │ ├── timer_comparison.cpython-36.pyc
│ │ │ │ │ │ └── version.cpython-36.pyc
│ │ │ │ │ ├── bench.py
│ │ │ │ │ ├── core.py
│ │ │ │ │ ├── extras.py
│ │ │ │ │ ├── mrecords.py
│ │ │ │ │ ├── setup.py
│ │ │ │ │ ├── tests
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_core.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_deprecations.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_extras.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_mrecords.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_old_ma.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_regression.cpython-36.pyc
│ │ │ │ │ │ │ └── test_subclassing.cpython-36.pyc
│ │ │ │ │ │ ├── test_core.py
│ │ │ │ │ │ ├── test_deprecations.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-36.pyc
│ │ │ │ │ │ ├── defmatrix.cpython-36.pyc
│ │ │ │ │ │ └── setup.cpython-36.pyc
│ │ │ │ │ ├── defmatrix.py
│ │ │ │ │ ├── setup.py
│ │ │ │ │ └── tests
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_defmatrix.cpython-36.pyc
│ │ │ │ │ │ ├── test_interaction.cpython-36.pyc
│ │ │ │ │ │ ├── test_masked_matrix.cpython-36.pyc
│ │ │ │ │ │ ├── test_matrix_linalg.cpython-36.pyc
│ │ │ │ │ │ ├── test_multiarray.cpython-36.pyc
│ │ │ │ │ │ ├── test_numeric.cpython-36.pyc
│ │ │ │ │ │ └── test_regression.cpython-36.pyc
│ │ │ │ │ ├── test_defmatrix.py
│ │ │ │ │ ├── test_interaction.py
│ │ │ │ │ ├── test_masked_matrix.py
│ │ │ │ │ ├── test_matrix_linalg.py
│ │ │ │ │ ├── test_multiarray.py
│ │ │ │ │ ├── test_numeric.py
│ │ │ │ │ └── test_regression.py
│ │ │ │ ├── polynomial
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _polybase.cpython-36.pyc
│ │ │ │ │ │ ├── chebyshev.cpython-36.pyc
│ │ │ │ │ │ ├── hermite.cpython-36.pyc
│ │ │ │ │ │ ├── hermite_e.cpython-36.pyc
│ │ │ │ │ │ ├── laguerre.cpython-36.pyc
│ │ │ │ │ │ ├── legendre.cpython-36.pyc
│ │ │ │ │ │ ├── polynomial.cpython-36.pyc
│ │ │ │ │ │ ├── polyutils.cpython-36.pyc
│ │ │ │ │ │ └── setup.cpython-36.pyc
│ │ │ │ │ ├── _polybase.py
│ │ │ │ │ ├── chebyshev.py
│ │ │ │ │ ├── hermite.py
│ │ │ │ │ ├── hermite_e.py
│ │ │ │ │ ├── laguerre.py
│ │ │ │ │ ├── legendre.py
│ │ │ │ │ ├── polynomial.py
│ │ │ │ │ ├── polyutils.py
│ │ │ │ │ ├── setup.py
│ │ │ │ │ └── tests
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_chebyshev.cpython-36.pyc
│ │ │ │ │ │ ├── test_classes.cpython-36.pyc
│ │ │ │ │ │ ├── test_hermite.cpython-36.pyc
│ │ │ │ │ │ ├── test_hermite_e.cpython-36.pyc
│ │ │ │ │ │ ├── test_laguerre.cpython-36.pyc
│ │ │ │ │ │ ├── test_legendre.cpython-36.pyc
│ │ │ │ │ │ ├── test_polynomial.cpython-36.pyc
│ │ │ │ │ │ ├── test_polyutils.cpython-36.pyc
│ │ │ │ │ │ └── test_printing.cpython-36.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-36.pyc
│ │ │ │ │ │ ├── info.cpython-36.pyc
│ │ │ │ │ │ └── setup.cpython-36.pyc
│ │ │ │ │ ├── info.py
│ │ │ │ │ ├── mtrand.cp36-win_amd64.pyd
│ │ │ │ │ ├── randomkit.h
│ │ │ │ │ ├── setup.py
│ │ │ │ │ └── tests
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_random.cpython-36.pyc
│ │ │ │ │ │ └── test_regression.cpython-36.pyc
│ │ │ │ │ ├── test_random.py
│ │ │ │ │ └── test_regression.py
│ │ │ │ ├── setup.py
│ │ │ │ ├── testing
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── decorators.cpython-36.pyc
│ │ │ │ │ │ ├── noseclasses.cpython-36.pyc
│ │ │ │ │ │ ├── nosetester.cpython-36.pyc
│ │ │ │ │ │ ├── print_coercion_tables.cpython-36.pyc
│ │ │ │ │ │ ├── setup.cpython-36.pyc
│ │ │ │ │ │ └── utils.cpython-36.pyc
│ │ │ │ │ ├── _private
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── decorators.cpython-36.pyc
│ │ │ │ │ │ │ ├── noseclasses.cpython-36.pyc
│ │ │ │ │ │ │ ├── nosetester.cpython-36.pyc
│ │ │ │ │ │ │ ├── parameterized.cpython-36.pyc
│ │ │ │ │ │ │ ├── pytesttester.cpython-36.pyc
│ │ │ │ │ │ │ └── utils.cpython-36.pyc
│ │ │ │ │ │ ├── decorators.py
│ │ │ │ │ │ ├── noseclasses.py
│ │ │ │ │ │ ├── nosetester.py
│ │ │ │ │ │ ├── parameterized.py
│ │ │ │ │ │ ├── pytesttester.py
│ │ │ │ │ │ └── utils.py
│ │ │ │ │ ├── decorators.py
│ │ │ │ │ ├── noseclasses.py
│ │ │ │ │ ├── nosetester.py
│ │ │ │ │ ├── print_coercion_tables.py
│ │ │ │ │ ├── setup.py
│ │ │ │ │ ├── tests
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_decorators.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_doctesting.cpython-36.pyc
│ │ │ │ │ │ │ └── test_utils.cpython-36.pyc
│ │ │ │ │ │ ├── test_decorators.py
│ │ │ │ │ │ ├── test_doctesting.py
│ │ │ │ │ │ └── test_utils.py
│ │ │ │ │ └── utils.py
│ │ │ │ ├── tests
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_ctypeslib.cpython-36.pyc
│ │ │ │ │ │ ├── test_matlib.cpython-36.pyc
│ │ │ │ │ │ ├── test_numpy_version.cpython-36.pyc
│ │ │ │ │ │ ├── test_reloading.cpython-36.pyc
│ │ │ │ │ │ ├── test_scripts.cpython-36.pyc
│ │ │ │ │ │ └── test_warnings.cpython-36.pyc
│ │ │ │ │ ├── test_ctypeslib.py
│ │ │ │ │ ├── test_matlib.py
│ │ │ │ │ ├── test_numpy_version.py
│ │ │ │ │ ├── test_reloading.py
│ │ │ │ │ ├── test_scripts.py
│ │ │ │ │ └── test_warnings.py
│ │ │ │ └── version.py
│ │ │ ├── numpy-1.15.4.dist-info
│ │ │ │ ├── DESCRIPTION.rst
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── WHEEL
│ │ │ │ ├── metadata.json
│ │ │ │ └── top_level.txt
│ │ │ ├── pip
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __main__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ └── __main__.cpython-36.pyc
│ │ │ │ ├── _internal
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── build_env.cpython-36.pyc
│ │ │ │ │ │ ├── cache.cpython-36.pyc
│ │ │ │ │ │ ├── configuration.cpython-36.pyc
│ │ │ │ │ │ ├── download.cpython-36.pyc
│ │ │ │ │ │ ├── exceptions.cpython-36.pyc
│ │ │ │ │ │ ├── index.cpython-36.pyc
│ │ │ │ │ │ ├── locations.cpython-36.pyc
│ │ │ │ │ │ ├── pep425tags.cpython-36.pyc
│ │ │ │ │ │ ├── pyproject.cpython-36.pyc
│ │ │ │ │ │ ├── resolve.cpython-36.pyc
│ │ │ │ │ │ └── wheel.cpython-36.pyc
│ │ │ │ │ ├── build_env.py
│ │ │ │ │ ├── cache.py
│ │ │ │ │ ├── cli
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── autocompletion.cpython-36.pyc
│ │ │ │ │ │ │ ├── base_command.cpython-36.pyc
│ │ │ │ │ │ │ ├── cmdoptions.cpython-36.pyc
│ │ │ │ │ │ │ ├── main_parser.cpython-36.pyc
│ │ │ │ │ │ │ ├── parser.cpython-36.pyc
│ │ │ │ │ │ │ └── status_codes.cpython-36.pyc
│ │ │ │ │ │ ├── autocompletion.py
│ │ │ │ │ │ ├── base_command.py
│ │ │ │ │ │ ├── cmdoptions.py
│ │ │ │ │ │ ├── main_parser.py
│ │ │ │ │ │ ├── parser.py
│ │ │ │ │ │ └── status_codes.py
│ │ │ │ │ ├── commands
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── check.cpython-36.pyc
│ │ │ │ │ │ │ ├── completion.cpython-36.pyc
│ │ │ │ │ │ │ ├── configuration.cpython-36.pyc
│ │ │ │ │ │ │ ├── download.cpython-36.pyc
│ │ │ │ │ │ │ ├── freeze.cpython-36.pyc
│ │ │ │ │ │ │ ├── hash.cpython-36.pyc
│ │ │ │ │ │ │ ├── help.cpython-36.pyc
│ │ │ │ │ │ │ ├── install.cpython-36.pyc
│ │ │ │ │ │ │ ├── list.cpython-36.pyc
│ │ │ │ │ │ │ ├── search.cpython-36.pyc
│ │ │ │ │ │ │ ├── show.cpython-36.pyc
│ │ │ │ │ │ │ ├── uninstall.cpython-36.pyc
│ │ │ │ │ │ │ └── wheel.cpython-36.pyc
│ │ │ │ │ │ ├── check.py
│ │ │ │ │ │ ├── completion.py
│ │ │ │ │ │ ├── configuration.py
│ │ │ │ │ │ ├── download.py
│ │ │ │ │ │ ├── freeze.py
│ │ │ │ │ │ ├── hash.py
│ │ │ │ │ │ ├── help.py
│ │ │ │ │ │ ├── install.py
│ │ │ │ │ │ ├── list.py
│ │ │ │ │ │ ├── search.py
│ │ │ │ │ │ ├── show.py
│ │ │ │ │ │ ├── uninstall.py
│ │ │ │ │ │ └── wheel.py
│ │ │ │ │ ├── configuration.py
│ │ │ │ │ ├── download.py
│ │ │ │ │ ├── exceptions.py
│ │ │ │ │ ├── index.py
│ │ │ │ │ ├── locations.py
│ │ │ │ │ ├── models
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── candidate.cpython-36.pyc
│ │ │ │ │ │ │ ├── format_control.cpython-36.pyc
│ │ │ │ │ │ │ ├── index.cpython-36.pyc
│ │ │ │ │ │ │ └── link.cpython-36.pyc
│ │ │ │ │ │ ├── candidate.py
│ │ │ │ │ │ ├── format_control.py
│ │ │ │ │ │ ├── index.py
│ │ │ │ │ │ └── link.py
│ │ │ │ │ ├── operations
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── check.cpython-36.pyc
│ │ │ │ │ │ │ ├── freeze.cpython-36.pyc
│ │ │ │ │ │ │ └── prepare.cpython-36.pyc
│ │ │ │ │ │ ├── check.py
│ │ │ │ │ │ ├── freeze.py
│ │ │ │ │ │ └── prepare.py
│ │ │ │ │ ├── pep425tags.py
│ │ │ │ │ ├── pyproject.py
│ │ │ │ │ ├── req
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── constructors.cpython-36.pyc
│ │ │ │ │ │ │ ├── req_file.cpython-36.pyc
│ │ │ │ │ │ │ ├── req_install.cpython-36.pyc
│ │ │ │ │ │ │ ├── req_set.cpython-36.pyc
│ │ │ │ │ │ │ ├── req_tracker.cpython-36.pyc
│ │ │ │ │ │ │ └── req_uninstall.cpython-36.pyc
│ │ │ │ │ │ ├── constructors.py
│ │ │ │ │ │ ├── req_file.py
│ │ │ │ │ │ ├── req_install.py
│ │ │ │ │ │ ├── req_set.py
│ │ │ │ │ │ ├── req_tracker.py
│ │ │ │ │ │ └── req_uninstall.py
│ │ │ │ │ ├── resolve.py
│ │ │ │ │ ├── utils
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── appdirs.cpython-36.pyc
│ │ │ │ │ │ │ ├── compat.cpython-36.pyc
│ │ │ │ │ │ │ ├── deprecation.cpython-36.pyc
│ │ │ │ │ │ │ ├── encoding.cpython-36.pyc
│ │ │ │ │ │ │ ├── filesystem.cpython-36.pyc
│ │ │ │ │ │ │ ├── glibc.cpython-36.pyc
│ │ │ │ │ │ │ ├── hashes.cpython-36.pyc
│ │ │ │ │ │ │ ├── logging.cpython-36.pyc
│ │ │ │ │ │ │ ├── misc.cpython-36.pyc
│ │ │ │ │ │ │ ├── models.cpython-36.pyc
│ │ │ │ │ │ │ ├── outdated.cpython-36.pyc
│ │ │ │ │ │ │ ├── packaging.cpython-36.pyc
│ │ │ │ │ │ │ ├── setuptools_build.cpython-36.pyc
│ │ │ │ │ │ │ ├── temp_dir.cpython-36.pyc
│ │ │ │ │ │ │ ├── typing.cpython-36.pyc
│ │ │ │ │ │ │ └── ui.cpython-36.pyc
│ │ │ │ │ │ ├── appdirs.py
│ │ │ │ │ │ ├── compat.py
│ │ │ │ │ │ ├── deprecation.py
│ │ │ │ │ │ ├── encoding.py
│ │ │ │ │ │ ├── filesystem.py
│ │ │ │ │ │ ├── glibc.py
│ │ │ │ │ │ ├── hashes.py
│ │ │ │ │ │ ├── logging.py
│ │ │ │ │ │ ├── misc.py
│ │ │ │ │ │ ├── models.py
│ │ │ │ │ │ ├── outdated.py
│ │ │ │ │ │ ├── packaging.py
│ │ │ │ │ │ ├── setuptools_build.py
│ │ │ │ │ │ ├── temp_dir.py
│ │ │ │ │ │ ├── typing.py
│ │ │ │ │ │ └── ui.py
│ │ │ │ │ ├── vcs
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── bazaar.cpython-36.pyc
│ │ │ │ │ │ │ ├── git.cpython-36.pyc
│ │ │ │ │ │ │ ├── mercurial.cpython-36.pyc
│ │ │ │ │ │ │ └── subversion.cpython-36.pyc
│ │ │ │ │ │ ├── bazaar.py
│ │ │ │ │ │ ├── git.py
│ │ │ │ │ │ ├── mercurial.py
│ │ │ │ │ │ └── subversion.py
│ │ │ │ │ └── wheel.py
│ │ │ │ └── _vendor
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── appdirs.cpython-36.pyc
│ │ │ │ │ ├── distro.cpython-36.pyc
│ │ │ │ │ ├── ipaddress.cpython-36.pyc
│ │ │ │ │ ├── pyparsing.cpython-36.pyc
│ │ │ │ │ ├── retrying.cpython-36.pyc
│ │ │ │ │ └── six.cpython-36.pyc
│ │ │ │ ├── appdirs.py
│ │ │ │ ├── cachecontrol
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _cmd.cpython-36.pyc
│ │ │ │ │ │ ├── adapter.cpython-36.pyc
│ │ │ │ │ │ ├── cache.cpython-36.pyc
│ │ │ │ │ │ ├── compat.cpython-36.pyc
│ │ │ │ │ │ ├── controller.cpython-36.pyc
│ │ │ │ │ │ ├── filewrapper.cpython-36.pyc
│ │ │ │ │ │ ├── heuristics.cpython-36.pyc
│ │ │ │ │ │ ├── serialize.cpython-36.pyc
│ │ │ │ │ │ └── wrapper.cpython-36.pyc
│ │ │ │ │ ├── _cmd.py
│ │ │ │ │ ├── adapter.py
│ │ │ │ │ ├── cache.py
│ │ │ │ │ ├── caches
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── file_cache.cpython-36.pyc
│ │ │ │ │ │ │ └── redis_cache.cpython-36.pyc
│ │ │ │ │ │ ├── file_cache.py
│ │ │ │ │ │ └── redis_cache.py
│ │ │ │ │ ├── compat.py
│ │ │ │ │ ├── controller.py
│ │ │ │ │ ├── filewrapper.py
│ │ │ │ │ ├── heuristics.py
│ │ │ │ │ ├── serialize.py
│ │ │ │ │ └── wrapper.py
│ │ │ │ ├── certifi
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __main__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── __main__.cpython-36.pyc
│ │ │ │ │ │ └── core.cpython-36.pyc
│ │ │ │ │ ├── cacert.pem
│ │ │ │ │ └── core.py
│ │ │ │ ├── chardet
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── big5freq.cpython-36.pyc
│ │ │ │ │ │ ├── big5prober.cpython-36.pyc
│ │ │ │ │ │ ├── chardistribution.cpython-36.pyc
│ │ │ │ │ │ ├── charsetgroupprober.cpython-36.pyc
│ │ │ │ │ │ ├── charsetprober.cpython-36.pyc
│ │ │ │ │ │ ├── codingstatemachine.cpython-36.pyc
│ │ │ │ │ │ ├── compat.cpython-36.pyc
│ │ │ │ │ │ ├── cp949prober.cpython-36.pyc
│ │ │ │ │ │ ├── enums.cpython-36.pyc
│ │ │ │ │ │ ├── escprober.cpython-36.pyc
│ │ │ │ │ │ ├── escsm.cpython-36.pyc
│ │ │ │ │ │ ├── eucjpprober.cpython-36.pyc
│ │ │ │ │ │ ├── euckrfreq.cpython-36.pyc
│ │ │ │ │ │ ├── euckrprober.cpython-36.pyc
│ │ │ │ │ │ ├── euctwfreq.cpython-36.pyc
│ │ │ │ │ │ ├── euctwprober.cpython-36.pyc
│ │ │ │ │ │ ├── gb2312freq.cpython-36.pyc
│ │ │ │ │ │ ├── gb2312prober.cpython-36.pyc
│ │ │ │ │ │ ├── hebrewprober.cpython-36.pyc
│ │ │ │ │ │ ├── jisfreq.cpython-36.pyc
│ │ │ │ │ │ ├── jpcntx.cpython-36.pyc
│ │ │ │ │ │ ├── langbulgarianmodel.cpython-36.pyc
│ │ │ │ │ │ ├── langcyrillicmodel.cpython-36.pyc
│ │ │ │ │ │ ├── langgreekmodel.cpython-36.pyc
│ │ │ │ │ │ ├── langhebrewmodel.cpython-36.pyc
│ │ │ │ │ │ ├── langhungarianmodel.cpython-36.pyc
│ │ │ │ │ │ ├── langthaimodel.cpython-36.pyc
│ │ │ │ │ │ ├── langturkishmodel.cpython-36.pyc
│ │ │ │ │ │ ├── latin1prober.cpython-36.pyc
│ │ │ │ │ │ ├── mbcharsetprober.cpython-36.pyc
│ │ │ │ │ │ ├── mbcsgroupprober.cpython-36.pyc
│ │ │ │ │ │ ├── mbcssm.cpython-36.pyc
│ │ │ │ │ │ ├── sbcharsetprober.cpython-36.pyc
│ │ │ │ │ │ ├── sbcsgroupprober.cpython-36.pyc
│ │ │ │ │ │ ├── sjisprober.cpython-36.pyc
│ │ │ │ │ │ ├── universaldetector.cpython-36.pyc
│ │ │ │ │ │ ├── utf8prober.cpython-36.pyc
│ │ │ │ │ │ └── version.cpython-36.pyc
│ │ │ │ │ ├── big5freq.py
│ │ │ │ │ ├── big5prober.py
│ │ │ │ │ ├── chardistribution.py
│ │ │ │ │ ├── charsetgroupprober.py
│ │ │ │ │ ├── charsetprober.py
│ │ │ │ │ ├── cli
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ └── chardetect.cpython-36.pyc
│ │ │ │ │ │ └── chardetect.py
│ │ │ │ │ ├── codingstatemachine.py
│ │ │ │ │ ├── compat.py
│ │ │ │ │ ├── cp949prober.py
│ │ │ │ │ ├── enums.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
│ │ │ │ │ ├── langturkishmodel.py
│ │ │ │ │ ├── latin1prober.py
│ │ │ │ │ ├── mbcharsetprober.py
│ │ │ │ │ ├── mbcsgroupprober.py
│ │ │ │ │ ├── mbcssm.py
│ │ │ │ │ ├── sbcharsetprober.py
│ │ │ │ │ ├── sbcsgroupprober.py
│ │ │ │ │ ├── sjisprober.py
│ │ │ │ │ ├── universaldetector.py
│ │ │ │ │ ├── utf8prober.py
│ │ │ │ │ └── version.py
│ │ │ │ ├── colorama
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── ansi.cpython-36.pyc
│ │ │ │ │ │ ├── ansitowin32.cpython-36.pyc
│ │ │ │ │ │ ├── initialise.cpython-36.pyc
│ │ │ │ │ │ ├── win32.cpython-36.pyc
│ │ │ │ │ │ └── winterm.cpython-36.pyc
│ │ │ │ │ ├── ansi.py
│ │ │ │ │ ├── ansitowin32.py
│ │ │ │ │ ├── initialise.py
│ │ │ │ │ ├── win32.py
│ │ │ │ │ └── winterm.py
│ │ │ │ ├── distlib
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── compat.cpython-36.pyc
│ │ │ │ │ │ ├── database.cpython-36.pyc
│ │ │ │ │ │ ├── index.cpython-36.pyc
│ │ │ │ │ │ ├── locators.cpython-36.pyc
│ │ │ │ │ │ ├── manifest.cpython-36.pyc
│ │ │ │ │ │ ├── markers.cpython-36.pyc
│ │ │ │ │ │ ├── metadata.cpython-36.pyc
│ │ │ │ │ │ ├── resources.cpython-36.pyc
│ │ │ │ │ │ ├── scripts.cpython-36.pyc
│ │ │ │ │ │ ├── util.cpython-36.pyc
│ │ │ │ │ │ ├── version.cpython-36.pyc
│ │ │ │ │ │ └── wheel.cpython-36.pyc
│ │ │ │ │ ├── _backport
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── misc.cpython-36.pyc
│ │ │ │ │ │ │ ├── shutil.cpython-36.pyc
│ │ │ │ │ │ │ ├── sysconfig.cpython-36.pyc
│ │ │ │ │ │ │ └── tarfile.cpython-36.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
│ │ │ │ ├── distro.py
│ │ │ │ ├── html5lib
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _ihatexml.cpython-36.pyc
│ │ │ │ │ │ ├── _inputstream.cpython-36.pyc
│ │ │ │ │ │ ├── _tokenizer.cpython-36.pyc
│ │ │ │ │ │ ├── _utils.cpython-36.pyc
│ │ │ │ │ │ ├── constants.cpython-36.pyc
│ │ │ │ │ │ ├── html5parser.cpython-36.pyc
│ │ │ │ │ │ └── serializer.cpython-36.pyc
│ │ │ │ │ ├── _ihatexml.py
│ │ │ │ │ ├── _inputstream.py
│ │ │ │ │ ├── _tokenizer.py
│ │ │ │ │ ├── _trie
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── _base.cpython-36.pyc
│ │ │ │ │ │ │ ├── datrie.cpython-36.pyc
│ │ │ │ │ │ │ └── py.cpython-36.pyc
│ │ │ │ │ │ ├── _base.py
│ │ │ │ │ │ ├── datrie.py
│ │ │ │ │ │ └── py.py
│ │ │ │ │ ├── _utils.py
│ │ │ │ │ ├── constants.py
│ │ │ │ │ ├── filters
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── alphabeticalattributes.cpython-36.pyc
│ │ │ │ │ │ │ ├── base.cpython-36.pyc
│ │ │ │ │ │ │ ├── inject_meta_charset.cpython-36.pyc
│ │ │ │ │ │ │ ├── lint.cpython-36.pyc
│ │ │ │ │ │ │ ├── optionaltags.cpython-36.pyc
│ │ │ │ │ │ │ ├── sanitizer.cpython-36.pyc
│ │ │ │ │ │ │ └── whitespace.cpython-36.pyc
│ │ │ │ │ │ ├── alphabeticalattributes.py
│ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ ├── inject_meta_charset.py
│ │ │ │ │ │ ├── lint.py
│ │ │ │ │ │ ├── optionaltags.py
│ │ │ │ │ │ ├── sanitizer.py
│ │ │ │ │ │ └── whitespace.py
│ │ │ │ │ ├── html5parser.py
│ │ │ │ │ ├── serializer.py
│ │ │ │ │ ├── treeadapters
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── genshi.cpython-36.pyc
│ │ │ │ │ │ │ └── sax.cpython-36.pyc
│ │ │ │ │ │ ├── genshi.py
│ │ │ │ │ │ └── sax.py
│ │ │ │ │ ├── treebuilders
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── base.cpython-36.pyc
│ │ │ │ │ │ │ ├── dom.cpython-36.pyc
│ │ │ │ │ │ │ ├── etree.cpython-36.pyc
│ │ │ │ │ │ │ └── etree_lxml.cpython-36.pyc
│ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ ├── dom.py
│ │ │ │ │ │ ├── etree.py
│ │ │ │ │ │ └── etree_lxml.py
│ │ │ │ │ └── treewalkers
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── base.cpython-36.pyc
│ │ │ │ │ │ ├── dom.cpython-36.pyc
│ │ │ │ │ │ ├── etree.cpython-36.pyc
│ │ │ │ │ │ ├── etree_lxml.cpython-36.pyc
│ │ │ │ │ │ └── genshi.cpython-36.pyc
│ │ │ │ │ ├── base.py
│ │ │ │ │ ├── dom.py
│ │ │ │ │ ├── etree.py
│ │ │ │ │ ├── etree_lxml.py
│ │ │ │ │ └── genshi.py
│ │ │ │ ├── idna
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── codec.cpython-36.pyc
│ │ │ │ │ │ ├── compat.cpython-36.pyc
│ │ │ │ │ │ ├── core.cpython-36.pyc
│ │ │ │ │ │ ├── idnadata.cpython-36.pyc
│ │ │ │ │ │ ├── intranges.cpython-36.pyc
│ │ │ │ │ │ ├── package_data.cpython-36.pyc
│ │ │ │ │ │ └── uts46data.cpython-36.pyc
│ │ │ │ │ ├── codec.py
│ │ │ │ │ ├── compat.py
│ │ │ │ │ ├── core.py
│ │ │ │ │ ├── idnadata.py
│ │ │ │ │ ├── intranges.py
│ │ │ │ │ ├── package_data.py
│ │ │ │ │ └── uts46data.py
│ │ │ │ ├── ipaddress.py
│ │ │ │ ├── lockfile
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── linklockfile.cpython-36.pyc
│ │ │ │ │ │ ├── mkdirlockfile.cpython-36.pyc
│ │ │ │ │ │ ├── pidlockfile.cpython-36.pyc
│ │ │ │ │ │ ├── sqlitelockfile.cpython-36.pyc
│ │ │ │ │ │ └── symlinklockfile.cpython-36.pyc
│ │ │ │ │ ├── linklockfile.py
│ │ │ │ │ ├── mkdirlockfile.py
│ │ │ │ │ ├── pidlockfile.py
│ │ │ │ │ ├── sqlitelockfile.py
│ │ │ │ │ └── symlinklockfile.py
│ │ │ │ ├── msgpack
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _version.cpython-36.pyc
│ │ │ │ │ │ ├── exceptions.cpython-36.pyc
│ │ │ │ │ │ └── fallback.cpython-36.pyc
│ │ │ │ │ ├── _version.py
│ │ │ │ │ ├── exceptions.py
│ │ │ │ │ └── fallback.py
│ │ │ │ ├── packaging
│ │ │ │ │ ├── __about__.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __about__.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _compat.cpython-36.pyc
│ │ │ │ │ │ ├── _structures.cpython-36.pyc
│ │ │ │ │ │ ├── markers.cpython-36.pyc
│ │ │ │ │ │ ├── requirements.cpython-36.pyc
│ │ │ │ │ │ ├── specifiers.cpython-36.pyc
│ │ │ │ │ │ ├── utils.cpython-36.pyc
│ │ │ │ │ │ └── version.cpython-36.pyc
│ │ │ │ │ ├── _compat.py
│ │ │ │ │ ├── _structures.py
│ │ │ │ │ ├── markers.py
│ │ │ │ │ ├── requirements.py
│ │ │ │ │ ├── specifiers.py
│ │ │ │ │ ├── utils.py
│ │ │ │ │ └── version.py
│ │ │ │ ├── pep517
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _in_process.cpython-36.pyc
│ │ │ │ │ │ ├── check.cpython-36.pyc
│ │ │ │ │ │ ├── colorlog.cpython-36.pyc
│ │ │ │ │ │ ├── compat.cpython-36.pyc
│ │ │ │ │ │ ├── envbuild.cpython-36.pyc
│ │ │ │ │ │ └── wrappers.cpython-36.pyc
│ │ │ │ │ ├── _in_process.py
│ │ │ │ │ ├── check.py
│ │ │ │ │ ├── colorlog.py
│ │ │ │ │ ├── compat.py
│ │ │ │ │ ├── envbuild.py
│ │ │ │ │ └── wrappers.py
│ │ │ │ ├── pkg_resources
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ └── py31compat.cpython-36.pyc
│ │ │ │ │ └── py31compat.py
│ │ │ │ ├── progress
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── bar.cpython-36.pyc
│ │ │ │ │ │ ├── counter.cpython-36.pyc
│ │ │ │ │ │ ├── helpers.cpython-36.pyc
│ │ │ │ │ │ └── spinner.cpython-36.pyc
│ │ │ │ │ ├── bar.py
│ │ │ │ │ ├── counter.py
│ │ │ │ │ ├── helpers.py
│ │ │ │ │ └── spinner.py
│ │ │ │ ├── pyparsing.py
│ │ │ │ ├── pytoml
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── core.cpython-36.pyc
│ │ │ │ │ │ ├── parser.cpython-36.pyc
│ │ │ │ │ │ └── writer.cpython-36.pyc
│ │ │ │ │ ├── core.py
│ │ │ │ │ ├── parser.py
│ │ │ │ │ └── writer.py
│ │ │ │ ├── requests
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── __version__.cpython-36.pyc
│ │ │ │ │ │ ├── _internal_utils.cpython-36.pyc
│ │ │ │ │ │ ├── adapters.cpython-36.pyc
│ │ │ │ │ │ ├── api.cpython-36.pyc
│ │ │ │ │ │ ├── auth.cpython-36.pyc
│ │ │ │ │ │ ├── certs.cpython-36.pyc
│ │ │ │ │ │ ├── compat.cpython-36.pyc
│ │ │ │ │ │ ├── cookies.cpython-36.pyc
│ │ │ │ │ │ ├── exceptions.cpython-36.pyc
│ │ │ │ │ │ ├── help.cpython-36.pyc
│ │ │ │ │ │ ├── hooks.cpython-36.pyc
│ │ │ │ │ │ ├── models.cpython-36.pyc
│ │ │ │ │ │ ├── packages.cpython-36.pyc
│ │ │ │ │ │ ├── sessions.cpython-36.pyc
│ │ │ │ │ │ ├── status_codes.cpython-36.pyc
│ │ │ │ │ │ ├── structures.cpython-36.pyc
│ │ │ │ │ │ └── utils.cpython-36.pyc
│ │ │ │ │ ├── __version__.py
│ │ │ │ │ ├── _internal_utils.py
│ │ │ │ │ ├── adapters.py
│ │ │ │ │ ├── api.py
│ │ │ │ │ ├── auth.py
│ │ │ │ │ ├── certs.py
│ │ │ │ │ ├── compat.py
│ │ │ │ │ ├── cookies.py
│ │ │ │ │ ├── exceptions.py
│ │ │ │ │ ├── help.py
│ │ │ │ │ ├── hooks.py
│ │ │ │ │ ├── models.py
│ │ │ │ │ ├── packages.py
│ │ │ │ │ ├── sessions.py
│ │ │ │ │ ├── status_codes.py
│ │ │ │ │ ├── structures.py
│ │ │ │ │ └── utils.py
│ │ │ │ ├── retrying.py
│ │ │ │ ├── six.py
│ │ │ │ ├── urllib3
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _collections.cpython-36.pyc
│ │ │ │ │ │ ├── connection.cpython-36.pyc
│ │ │ │ │ │ ├── connectionpool.cpython-36.pyc
│ │ │ │ │ │ ├── exceptions.cpython-36.pyc
│ │ │ │ │ │ ├── fields.cpython-36.pyc
│ │ │ │ │ │ ├── filepost.cpython-36.pyc
│ │ │ │ │ │ ├── poolmanager.cpython-36.pyc
│ │ │ │ │ │ ├── request.cpython-36.pyc
│ │ │ │ │ │ └── response.cpython-36.pyc
│ │ │ │ │ ├── _collections.py
│ │ │ │ │ ├── connection.py
│ │ │ │ │ ├── connectionpool.py
│ │ │ │ │ ├── contrib
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── appengine.cpython-36.pyc
│ │ │ │ │ │ │ ├── ntlmpool.cpython-36.pyc
│ │ │ │ │ │ │ ├── pyopenssl.cpython-36.pyc
│ │ │ │ │ │ │ ├── securetransport.cpython-36.pyc
│ │ │ │ │ │ │ └── socks.cpython-36.pyc
│ │ │ │ │ │ ├── _securetransport
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── bindings.cpython-36.pyc
│ │ │ │ │ │ │ │ └── low_level.cpython-36.pyc
│ │ │ │ │ │ │ ├── bindings.py
│ │ │ │ │ │ │ └── low_level.py
│ │ │ │ │ │ ├── appengine.py
│ │ │ │ │ │ ├── ntlmpool.py
│ │ │ │ │ │ ├── pyopenssl.py
│ │ │ │ │ │ ├── securetransport.py
│ │ │ │ │ │ └── socks.py
│ │ │ │ │ ├── exceptions.py
│ │ │ │ │ ├── fields.py
│ │ │ │ │ ├── filepost.py
│ │ │ │ │ ├── packages
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── ordered_dict.cpython-36.pyc
│ │ │ │ │ │ │ └── six.cpython-36.pyc
│ │ │ │ │ │ ├── backports
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ │ └── makefile.cpython-36.pyc
│ │ │ │ │ │ │ └── makefile.py
│ │ │ │ │ │ ├── ordered_dict.py
│ │ │ │ │ │ ├── six.py
│ │ │ │ │ │ └── ssl_match_hostname
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ └── _implementation.cpython-36.pyc
│ │ │ │ │ │ └── _implementation.py
│ │ │ │ │ ├── poolmanager.py
│ │ │ │ │ ├── request.py
│ │ │ │ │ ├── response.py
│ │ │ │ │ └── util
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── connection.cpython-36.pyc
│ │ │ │ │ │ ├── queue.cpython-36.pyc
│ │ │ │ │ │ ├── request.cpython-36.pyc
│ │ │ │ │ │ ├── response.cpython-36.pyc
│ │ │ │ │ │ ├── retry.cpython-36.pyc
│ │ │ │ │ │ ├── ssl_.cpython-36.pyc
│ │ │ │ │ │ ├── timeout.cpython-36.pyc
│ │ │ │ │ │ ├── url.cpython-36.pyc
│ │ │ │ │ │ └── wait.cpython-36.pyc
│ │ │ │ │ ├── connection.py
│ │ │ │ │ ├── queue.py
│ │ │ │ │ ├── request.py
│ │ │ │ │ ├── response.py
│ │ │ │ │ ├── retry.py
│ │ │ │ │ ├── ssl_.py
│ │ │ │ │ ├── timeout.py
│ │ │ │ │ ├── url.py
│ │ │ │ │ └── wait.py
│ │ │ │ └── webencodings
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── labels.cpython-36.pyc
│ │ │ │ │ ├── mklabels.cpython-36.pyc
│ │ │ │ │ ├── tests.cpython-36.pyc
│ │ │ │ │ └── x_user_defined.cpython-36.pyc
│ │ │ │ ├── labels.py
│ │ │ │ ├── mklabels.py
│ │ │ │ ├── tests.py
│ │ │ │ └── x_user_defined.py
│ │ │ ├── pip-18.1.dist-info
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── WHEEL
│ │ │ │ ├── entry_points.txt
│ │ │ │ └── top_level.txt
│ │ │ ├── pkg_resources
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ └── py31compat.cpython-36.pyc
│ │ │ │ ├── _vendor
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── appdirs.cpython-36.pyc
│ │ │ │ │ │ ├── pyparsing.cpython-36.pyc
│ │ │ │ │ │ └── six.cpython-36.pyc
│ │ │ │ │ ├── appdirs.py
│ │ │ │ │ ├── packaging
│ │ │ │ │ │ ├── __about__.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __about__.cpython-36.pyc
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── _compat.cpython-36.pyc
│ │ │ │ │ │ │ ├── _structures.cpython-36.pyc
│ │ │ │ │ │ │ ├── markers.cpython-36.pyc
│ │ │ │ │ │ │ ├── requirements.cpython-36.pyc
│ │ │ │ │ │ │ ├── specifiers.cpython-36.pyc
│ │ │ │ │ │ │ ├── utils.cpython-36.pyc
│ │ │ │ │ │ │ └── version.cpython-36.pyc
│ │ │ │ │ │ ├── _compat.py
│ │ │ │ │ │ ├── _structures.py
│ │ │ │ │ │ ├── markers.py
│ │ │ │ │ │ ├── requirements.py
│ │ │ │ │ │ ├── specifiers.py
│ │ │ │ │ │ ├── utils.py
│ │ │ │ │ │ └── version.py
│ │ │ │ │ ├── pyparsing.py
│ │ │ │ │ └── six.py
│ │ │ │ ├── extern
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── __pycache__
│ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ └── py31compat.py
│ │ │ ├── pylab.py
│ │ │ ├── pyparsing-2.3.0.dist-info
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── LICENSE
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── WHEEL
│ │ │ │ └── top_level.txt
│ │ │ ├── pyparsing.py
│ │ │ ├── python_dateutil-2.7.5.dist-info
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── WHEEL
│ │ │ │ ├── top_level.txt
│ │ │ │ └── zip-safe
│ │ │ ├── requests
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── __version__.cpython-36.pyc
│ │ │ │ │ ├── _internal_utils.cpython-36.pyc
│ │ │ │ │ ├── adapters.cpython-36.pyc
│ │ │ │ │ ├── api.cpython-36.pyc
│ │ │ │ │ ├── auth.cpython-36.pyc
│ │ │ │ │ ├── certs.cpython-36.pyc
│ │ │ │ │ ├── compat.cpython-36.pyc
│ │ │ │ │ ├── cookies.cpython-36.pyc
│ │ │ │ │ ├── exceptions.cpython-36.pyc
│ │ │ │ │ ├── help.cpython-36.pyc
│ │ │ │ │ ├── hooks.cpython-36.pyc
│ │ │ │ │ ├── models.cpython-36.pyc
│ │ │ │ │ ├── packages.cpython-36.pyc
│ │ │ │ │ ├── sessions.cpython-36.pyc
│ │ │ │ │ ├── status_codes.cpython-36.pyc
│ │ │ │ │ ├── structures.cpython-36.pyc
│ │ │ │ │ └── utils.cpython-36.pyc
│ │ │ │ ├── __version__.py
│ │ │ │ ├── _internal_utils.py
│ │ │ │ ├── adapters.py
│ │ │ │ ├── api.py
│ │ │ │ ├── auth.py
│ │ │ │ ├── certs.py
│ │ │ │ ├── compat.py
│ │ │ │ ├── cookies.py
│ │ │ │ ├── exceptions.py
│ │ │ │ ├── help.py
│ │ │ │ ├── hooks.py
│ │ │ │ ├── models.py
│ │ │ │ ├── packages.py
│ │ │ │ ├── sessions.py
│ │ │ │ ├── status_codes.py
│ │ │ │ ├── structures.py
│ │ │ │ └── utils.py
│ │ │ ├── requests-2.20.1.dist-info
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── LICENSE
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── WHEEL
│ │ │ │ └── top_level.txt
│ │ │ ├── scipy
│ │ │ │ ├── BENTO_BUILD.txt
│ │ │ │ ├── HACKING.rst.txt
│ │ │ │ ├── INSTALL.rst.txt
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── THANKS.txt
│ │ │ │ ├── __config__.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __config__.cpython-36.pyc
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── _distributor_init.cpython-36.pyc
│ │ │ │ │ ├── conftest.cpython-36.pyc
│ │ │ │ │ ├── setup.cpython-36.pyc
│ │ │ │ │ └── version.cpython-36.pyc
│ │ │ │ ├── _build_utils
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ └── _fortran.cpython-36.pyc
│ │ │ │ │ └── _fortran.py
│ │ │ │ ├── _distributor_init.py
│ │ │ │ ├── _lib
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _ccallback.cpython-36.pyc
│ │ │ │ │ │ ├── _gcutils.cpython-36.pyc
│ │ │ │ │ │ ├── _numpy_compat.cpython-36.pyc
│ │ │ │ │ │ ├── _testutils.cpython-36.pyc
│ │ │ │ │ │ ├── _threadsafety.cpython-36.pyc
│ │ │ │ │ │ ├── _tmpdirs.cpython-36.pyc
│ │ │ │ │ │ ├── _util.cpython-36.pyc
│ │ │ │ │ │ ├── _version.cpython-36.pyc
│ │ │ │ │ │ ├── decorator.cpython-36.pyc
│ │ │ │ │ │ ├── setup.cpython-36.pyc
│ │ │ │ │ │ └── six.cpython-36.pyc
│ │ │ │ │ ├── _ccallback.py
│ │ │ │ │ ├── _ccallback_c.cp36-win_amd64.pyd
│ │ │ │ │ ├── _fpumode.cp36-win_amd64.pyd
│ │ │ │ │ ├── _gcutils.py
│ │ │ │ │ ├── _numpy_compat.py
│ │ │ │ │ ├── _test_ccallback.cp36-win_amd64.pyd
│ │ │ │ │ ├── _testutils.py
│ │ │ │ │ ├── _threadsafety.py
│ │ │ │ │ ├── _tmpdirs.py
│ │ │ │ │ ├── _util.py
│ │ │ │ │ ├── _version.py
│ │ │ │ │ ├── decorator.py
│ │ │ │ │ ├── messagestream.cp36-win_amd64.pyd
│ │ │ │ │ ├── setup.py
│ │ │ │ │ ├── six.py
│ │ │ │ │ └── tests
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test__gcutils.cpython-36.pyc
│ │ │ │ │ │ ├── test__testutils.cpython-36.pyc
│ │ │ │ │ │ ├── test__threadsafety.cpython-36.pyc
│ │ │ │ │ │ ├── test__util.cpython-36.pyc
│ │ │ │ │ │ ├── test__version.cpython-36.pyc
│ │ │ │ │ │ ├── test_ccallback.cpython-36.pyc
│ │ │ │ │ │ ├── test_import_cycles.cpython-36.pyc
│ │ │ │ │ │ ├── test_tmpdirs.cpython-36.pyc
│ │ │ │ │ │ └── test_warnings.cpython-36.pyc
│ │ │ │ │ ├── test__gcutils.py
│ │ │ │ │ ├── test__testutils.py
│ │ │ │ │ ├── test__threadsafety.py
│ │ │ │ │ ├── test__util.py
│ │ │ │ │ ├── test__version.py
│ │ │ │ │ ├── test_ccallback.py
│ │ │ │ │ ├── test_import_cycles.py
│ │ │ │ │ ├── test_tmpdirs.py
│ │ │ │ │ └── test_warnings.py
│ │ │ │ ├── cluster
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── hierarchy.cpython-36.pyc
│ │ │ │ │ │ ├── setup.cpython-36.pyc
│ │ │ │ │ │ └── vq.cpython-36.pyc
│ │ │ │ │ ├── _hierarchy.cp36-win_amd64.pyd
│ │ │ │ │ ├── _optimal_leaf_ordering.cp36-win_amd64.pyd
│ │ │ │ │ ├── _vq.cp36-win_amd64.pyd
│ │ │ │ │ ├── hierarchy.py
│ │ │ │ │ ├── setup.py
│ │ │ │ │ ├── tests
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── hierarchy_test_data.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_hierarchy.cpython-36.pyc
│ │ │ │ │ │ │ └── test_vq.cpython-36.pyc
│ │ │ │ │ │ ├── hierarchy_test_data.py
│ │ │ │ │ │ ├── test_hierarchy.py
│ │ │ │ │ │ └── test_vq.py
│ │ │ │ │ └── vq.py
│ │ │ │ ├── conftest.py
│ │ │ │ ├── constants
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── codata.cpython-36.pyc
│ │ │ │ │ │ ├── constants.cpython-36.pyc
│ │ │ │ │ │ └── setup.cpython-36.pyc
│ │ │ │ │ ├── codata.py
│ │ │ │ │ ├── constants.py
│ │ │ │ │ ├── setup.py
│ │ │ │ │ └── tests
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_codata.cpython-36.pyc
│ │ │ │ │ │ └── test_constants.cpython-36.pyc
│ │ │ │ │ ├── test_codata.py
│ │ │ │ │ └── test_constants.py
│ │ │ │ ├── extra-dll
│ │ │ │ │ ├── lib_arpack-.ZSFN7AZ4NRWSAUZTEZLC7L2IVIRDDNFR.gfortran-win_amd64.dll
│ │ │ │ │ ├── lib_blas_su.2UNBVF3XUJ6LXUE74AWX6SW54UVZEM5P.gfortran-win_amd64.dll
│ │ │ │ │ ├── lib_test_fo.JF5HTWMUPBXWGAYEBVEJU3OZAHTSVKCT.gfortran-win_amd64.dll
│ │ │ │ │ ├── libansari.R6EA3HQP5KZ6TAXU4Y4ZVTRPT7UVA53Z.gfortran-win_amd64.dll
│ │ │ │ │ ├── libbanded5x.WATOK6SFHTO5CTDVI6F7U7YE2ZN63L6D.gfortran-win_amd64.dll
│ │ │ │ │ ├── libbispeu.5N2XSD7URZS4WTOSLTOG4DDMA4HGB46U.gfortran-win_amd64.dll
│ │ │ │ │ ├── libblkdta00.EBMXOKVWTYK6NSUJLSZFNQ6CEWS6SU3V.gfortran-win_amd64.dll
│ │ │ │ │ ├── libchkder.6HLXPVTQJEGRZGLI5DFRMNW3SS76BHP6.gfortran-win_amd64.dll
│ │ │ │ │ ├── libcobyla2.JEGTSUUFJ7DFXWZN5PAYZTTLBDATC4WD.gfortran-win_amd64.dll
│ │ │ │ │ ├── libd_odr.5WODFRLNCKRTO3MK6J4XTXEHDB7GFDZ4.gfortran-win_amd64.dll
│ │ │ │ │ ├── libdcosqb.K4J3XBR4PEETMRHZICUWW4LXG5UONZ34.gfortran-win_amd64.dll
│ │ │ │ │ ├── libdcosqb.QRGA36MB6CFHWLQN6ETWARR4M4E6P3C2.gfortran-win_amd64.dll
│ │ │ │ │ ├── libdcsrch.I2AOPDCXAPDRFNPWY55H5UE7XZSU5CVN.gfortran-win_amd64.dll
│ │ │ │ │ ├── libdet.YKP4TFVQQVNWGO5ZEH7E6CRNLZ42FK5D.gfortran-win_amd64.dll
│ │ │ │ │ ├── libdfft_sub.EUUS64YKL2TYSRFQAXG5LJ7DDSONRZOJ.gfortran-win_amd64.dll
│ │ │ │ │ ├── libdfitpack.KTCF3EOE66VRDKN45KBQA4VBAIS552IF.gfortran-win_amd64.dll
│ │ │ │ │ ├── libdgamln.D35ZEOCATK4OZQSX5UEWEF62EM2ECCPX.gfortran-win_amd64.dll
│ │ │ │ │ ├── libdop853.6TJTQZW3I3Q3QIDQHEOBEZKJ3NYRXI4B.gfortran-win_amd64.dll
│ │ │ │ │ ├── libdqag.JBSUT27DU6KSWWLH5EAFVANLG5T4CPYH.gfortran-win_amd64.dll
│ │ │ │ │ ├── libgetbreak.WYF32CNQCVMHFKRVSHNE3EGBPQL7SWIB.gfortran-win_amd64.dll
│ │ │ │ │ ├── liblbfgsb.LTROWG5MXPUSP7N2YCW3QUHJE37DB7K5.gfortran-win_amd64.dll
│ │ │ │ │ ├── libmvndst.FJYIV5KRHEB6IA4GIU6HFBYCEDXO3WN4.gfortran-win_amd64.dll
│ │ │ │ │ ├── libnnls.IXEEHJUCGHJL42YZEM6UIEMROJWXHMLJ.gfortran-win_amd64.dll
│ │ │ │ │ ├── libopenblas.BNVRK7633HSX7YVO2TADGR4A5KEKXJAW.gfortran-win_amd64.dll
│ │ │ │ │ ├── libslsqp_op.NNY57ZXZ43A4RH3YWFA7BKHP5PC2K3I5.gfortran-win_amd64.dll
│ │ │ │ │ ├── libspecfun.BHLTWMBI4EYWDACZN4DQUESSDJRJNGEL.gfortran-win_amd64.dll
│ │ │ │ │ ├── libvode.M2PR7ET5DWOC2TSRZM44MAX2MG4YDRX3.gfortran-win_amd64.dll
│ │ │ │ │ ├── libwrap_dum.ASTX55GIE5U6BF4YKSWUU6TBMWRPJ2I4.gfortran-win_amd64.dll
│ │ │ │ │ ├── libwrap_dum.CLCNYV3KUDVQF2VOOGW7JOOKWHJ2FDXT.gfortran-win_amd64.dll
│ │ │ │ │ └── msvcp140.dll
│ │ │ │ ├── fftpack
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── basic.cpython-36.pyc
│ │ │ │ │ │ ├── helper.cpython-36.pyc
│ │ │ │ │ │ ├── pseudo_diffs.cpython-36.pyc
│ │ │ │ │ │ ├── realtransforms.cpython-36.pyc
│ │ │ │ │ │ └── setup.cpython-36.pyc
│ │ │ │ │ ├── _fftpack.cp36-win_amd64.pyd
│ │ │ │ │ ├── basic.py
│ │ │ │ │ ├── convolve.cp36-win_amd64.pyd
│ │ │ │ │ ├── helper.py
│ │ │ │ │ ├── pseudo_diffs.py
│ │ │ │ │ ├── realtransforms.py
│ │ │ │ │ ├── setup.py
│ │ │ │ │ └── tests
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── gen_fftw_ref.cpython-36.pyc
│ │ │ │ │ │ ├── gendata.cpython-36.pyc
│ │ │ │ │ │ ├── test_basic.cpython-36.pyc
│ │ │ │ │ │ ├── test_helper.cpython-36.pyc
│ │ │ │ │ │ ├── test_import.cpython-36.pyc
│ │ │ │ │ │ ├── test_pseudo_diffs.cpython-36.pyc
│ │ │ │ │ │ └── test_real_transforms.cpython-36.pyc
│ │ │ │ │ ├── fftw_dct.c
│ │ │ │ │ ├── fftw_double_ref.npz
│ │ │ │ │ ├── fftw_single_ref.npz
│ │ │ │ │ ├── gen_fftw_ref.py
│ │ │ │ │ ├── gendata.m
│ │ │ │ │ ├── gendata.py
│ │ │ │ │ ├── test.npz
│ │ │ │ │ ├── test_basic.py
│ │ │ │ │ ├── test_helper.py
│ │ │ │ │ ├── test_import.py
│ │ │ │ │ ├── test_pseudo_diffs.py
│ │ │ │ │ └── test_real_transforms.py
│ │ │ │ ├── integrate
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _bvp.cpython-36.pyc
│ │ │ │ │ │ ├── _ode.cpython-36.pyc
│ │ │ │ │ │ ├── odepack.cpython-36.pyc
│ │ │ │ │ │ ├── quadpack.cpython-36.pyc
│ │ │ │ │ │ ├── quadrature.cpython-36.pyc
│ │ │ │ │ │ └── setup.cpython-36.pyc
│ │ │ │ │ ├── _bvp.py
│ │ │ │ │ ├── _dop.cp36-win_amd64.pyd
│ │ │ │ │ ├── _ivp
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── base.cpython-36.pyc
│ │ │ │ │ │ │ ├── bdf.cpython-36.pyc
│ │ │ │ │ │ │ ├── common.cpython-36.pyc
│ │ │ │ │ │ │ ├── ivp.cpython-36.pyc
│ │ │ │ │ │ │ ├── lsoda.cpython-36.pyc
│ │ │ │ │ │ │ ├── radau.cpython-36.pyc
│ │ │ │ │ │ │ └── rk.cpython-36.pyc
│ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ ├── bdf.py
│ │ │ │ │ │ ├── common.py
│ │ │ │ │ │ ├── ivp.py
│ │ │ │ │ │ ├── lsoda.py
│ │ │ │ │ │ ├── radau.py
│ │ │ │ │ │ └── rk.py
│ │ │ │ │ ├── _ode.py
│ │ │ │ │ ├── _odepack.cp36-win_amd64.pyd
│ │ │ │ │ ├── _quadpack.cp36-win_amd64.pyd
│ │ │ │ │ ├── _test_multivariate.cp36-win_amd64.pyd
│ │ │ │ │ ├── _test_odeint_banded.cp36-win_amd64.pyd
│ │ │ │ │ ├── lsoda.cp36-win_amd64.pyd
│ │ │ │ │ ├── odepack.py
│ │ │ │ │ ├── quadpack.py
│ │ │ │ │ ├── quadrature.py
│ │ │ │ │ ├── setup.py
│ │ │ │ │ ├── tests
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_banded_ode_solvers.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_bvp.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_integrate.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_ivp.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_odeint_jac.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_quadpack.cpython-36.pyc
│ │ │ │ │ │ │ └── test_quadrature.cpython-36.pyc
│ │ │ │ │ │ ├── _test_multivariate.c
│ │ │ │ │ │ ├── banded5x5.f
│ │ │ │ │ │ ├── test_banded_ode_solvers.py
│ │ │ │ │ │ ├── test_bvp.py
│ │ │ │ │ │ ├── test_integrate.py
│ │ │ │ │ │ ├── test_ivp.py
│ │ │ │ │ │ ├── test_odeint_jac.py
│ │ │ │ │ │ ├── test_quadpack.py
│ │ │ │ │ │ └── test_quadrature.py
│ │ │ │ │ └── vode.cp36-win_amd64.pyd
│ │ │ │ ├── interpolate
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _bsplines.cpython-36.pyc
│ │ │ │ │ │ ├── _cubic.cpython-36.pyc
│ │ │ │ │ │ ├── _fitpack_impl.cpython-36.pyc
│ │ │ │ │ │ ├── _pade.cpython-36.pyc
│ │ │ │ │ │ ├── fitpack.cpython-36.pyc
│ │ │ │ │ │ ├── fitpack2.cpython-36.pyc
│ │ │ │ │ │ ├── interpnd_info.cpython-36.pyc
│ │ │ │ │ │ ├── interpolate.cpython-36.pyc
│ │ │ │ │ │ ├── interpolate_wrapper.cpython-36.pyc
│ │ │ │ │ │ ├── ndgriddata.cpython-36.pyc
│ │ │ │ │ │ ├── polyint.cpython-36.pyc
│ │ │ │ │ │ ├── rbf.cpython-36.pyc
│ │ │ │ │ │ └── setup.cpython-36.pyc
│ │ │ │ │ ├── _bspl.cp36-win_amd64.pyd
│ │ │ │ │ ├── _bsplines.py
│ │ │ │ │ ├── _cubic.py
│ │ │ │ │ ├── _fitpack.cp36-win_amd64.pyd
│ │ │ │ │ ├── _fitpack_impl.py
│ │ │ │ │ ├── _interpolate.cp36-win_amd64.pyd
│ │ │ │ │ ├── _pade.py
│ │ │ │ │ ├── _ppoly.cp36-win_amd64.pyd
│ │ │ │ │ ├── dfitpack.cp36-win_amd64.pyd
│ │ │ │ │ ├── fitpack.py
│ │ │ │ │ ├── fitpack2.py
│ │ │ │ │ ├── interpnd.cp36-win_amd64.pyd
│ │ │ │ │ ├── interpnd_info.py
│ │ │ │ │ ├── interpolate.py
│ │ │ │ │ ├── interpolate_wrapper.py
│ │ │ │ │ ├── ndgriddata.py
│ │ │ │ │ ├── polyint.py
│ │ │ │ │ ├── rbf.py
│ │ │ │ │ ├── setup.py
│ │ │ │ │ └── tests
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_bsplines.cpython-36.pyc
│ │ │ │ │ │ ├── test_fitpack.cpython-36.pyc
│ │ │ │ │ │ ├── test_fitpack2.cpython-36.pyc
│ │ │ │ │ │ ├── test_gil.cpython-36.pyc
│ │ │ │ │ │ ├── test_interpnd.cpython-36.pyc
│ │ │ │ │ │ ├── test_interpolate.cpython-36.pyc
│ │ │ │ │ │ ├── test_interpolate_wrapper.cpython-36.pyc
│ │ │ │ │ │ ├── test_ndgriddata.cpython-36.pyc
│ │ │ │ │ │ ├── test_pade.cpython-36.pyc
│ │ │ │ │ │ ├── test_polyint.cpython-36.pyc
│ │ │ │ │ │ ├── test_rbf.cpython-36.pyc
│ │ │ │ │ │ └── test_regression.cpython-36.pyc
│ │ │ │ │ ├── data
│ │ │ │ │ │ ├── bug-1310.npz
│ │ │ │ │ │ └── estimate_gradients_hang.npy
│ │ │ │ │ ├── test_bsplines.py
│ │ │ │ │ ├── test_fitpack.py
│ │ │ │ │ ├── test_fitpack2.py
│ │ │ │ │ ├── test_gil.py
│ │ │ │ │ ├── test_interpnd.py
│ │ │ │ │ ├── test_interpolate.py
│ │ │ │ │ ├── test_interpolate_wrapper.py
│ │ │ │ │ ├── test_ndgriddata.py
│ │ │ │ │ ├── test_pade.py
│ │ │ │ │ ├── test_polyint.py
│ │ │ │ │ ├── test_rbf.py
│ │ │ │ │ └── test_regression.py
│ │ │ │ ├── io
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _fortran.cpython-36.pyc
│ │ │ │ │ │ ├── idl.cpython-36.pyc
│ │ │ │ │ │ ├── mmio.cpython-36.pyc
│ │ │ │ │ │ ├── netcdf.cpython-36.pyc
│ │ │ │ │ │ ├── setup.cpython-36.pyc
│ │ │ │ │ │ └── wavfile.cpython-36.pyc
│ │ │ │ │ ├── _fortran.py
│ │ │ │ │ ├── _test_fortran.cp36-win_amd64.pyd
│ │ │ │ │ ├── arff
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── arffread.cpython-36.pyc
│ │ │ │ │ │ │ └── setup.cpython-36.pyc
│ │ │ │ │ │ ├── arffread.py
│ │ │ │ │ │ ├── setup.py
│ │ │ │ │ │ └── tests
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ └── test_arffread.cpython-36.pyc
│ │ │ │ │ │ ├── data
│ │ │ │ │ │ │ ├── iris.arff
│ │ │ │ │ │ │ ├── missing.arff
│ │ │ │ │ │ │ ├── nodata.arff
│ │ │ │ │ │ │ ├── test1.arff
│ │ │ │ │ │ │ ├── test2.arff
│ │ │ │ │ │ │ ├── test3.arff
│ │ │ │ │ │ │ ├── test4.arff
│ │ │ │ │ │ │ ├── test5.arff
│ │ │ │ │ │ │ ├── test6.arff
│ │ │ │ │ │ │ ├── test7.arff
│ │ │ │ │ │ │ └── test8.arff
│ │ │ │ │ │ └── test_arffread.py
│ │ │ │ │ ├── harwell_boeing
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── _fortran_format_parser.cpython-36.pyc
│ │ │ │ │ │ │ ├── hb.cpython-36.pyc
│ │ │ │ │ │ │ └── setup.cpython-36.pyc
│ │ │ │ │ │ ├── _fortran_format_parser.py
│ │ │ │ │ │ ├── hb.py
│ │ │ │ │ │ ├── setup.py
│ │ │ │ │ │ └── tests
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_fortran_format.cpython-36.pyc
│ │ │ │ │ │ │ └── test_hb.cpython-36.pyc
│ │ │ │ │ │ ├── test_fortran_format.py
│ │ │ │ │ │ └── test_hb.py
│ │ │ │ │ ├── idl.py
│ │ │ │ │ ├── matlab
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── byteordercodes.cpython-36.pyc
│ │ │ │ │ │ │ ├── mio.cpython-36.pyc
│ │ │ │ │ │ │ ├── mio4.cpython-36.pyc
│ │ │ │ │ │ │ ├── mio5.cpython-36.pyc
│ │ │ │ │ │ │ ├── mio5_params.cpython-36.pyc
│ │ │ │ │ │ │ ├── miobase.cpython-36.pyc
│ │ │ │ │ │ │ └── setup.cpython-36.pyc
│ │ │ │ │ │ ├── byteordercodes.py
│ │ │ │ │ │ ├── mio.py
│ │ │ │ │ │ ├── mio4.py
│ │ │ │ │ │ ├── mio5.py
│ │ │ │ │ │ ├── mio5_params.py
│ │ │ │ │ │ ├── mio5_utils.cp36-win_amd64.pyd
│ │ │ │ │ │ ├── mio_utils.cp36-win_amd64.pyd
│ │ │ │ │ │ ├── miobase.py
│ │ │ │ │ │ ├── setup.py
│ │ │ │ │ │ ├── streams.cp36-win_amd64.pyd
│ │ │ │ │ │ └── tests
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_byteordercodes.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_mio.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_mio5_utils.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_mio_funcs.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_mio_utils.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_miobase.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_pathological.cpython-36.pyc
│ │ │ │ │ │ │ └── test_streams.cpython-36.pyc
│ │ │ │ │ │ ├── afunc.m
│ │ │ │ │ │ ├── data
│ │ │ │ │ │ │ ├── bad_miuint32.mat
│ │ │ │ │ │ │ ├── bad_miutf8_array_name.mat
│ │ │ │ │ │ │ ├── big_endian.mat
│ │ │ │ │ │ │ ├── broken_utf8.mat
│ │ │ │ │ │ │ ├── corrupted_zlib_checksum.mat
│ │ │ │ │ │ │ ├── corrupted_zlib_data.mat
│ │ │ │ │ │ │ ├── japanese_utf8.txt
│ │ │ │ │ │ │ ├── little_endian.mat
│ │ │ │ │ │ │ ├── logical_sparse.mat
│ │ │ │ │ │ │ ├── malformed1.mat
│ │ │ │ │ │ │ ├── miuint32_for_miint32.mat
│ │ │ │ │ │ │ ├── miutf8_array_name.mat
│ │ │ │ │ │ │ ├── nasty_duplicate_fieldnames.mat
│ │ │ │ │ │ │ ├── one_by_zero_char.mat
│ │ │ │ │ │ │ ├── parabola.mat
│ │ │ │ │ │ │ ├── single_empty_string.mat
│ │ │ │ │ │ │ ├── some_functions.mat
│ │ │ │ │ │ │ ├── sqr.mat
│ │ │ │ │ │ │ ├── test3dmatrix_6.1_SOL2.mat
│ │ │ │ │ │ │ ├── test3dmatrix_6.5.1_GLNX86.mat
│ │ │ │ │ │ │ ├── test3dmatrix_7.1_GLNX86.mat
│ │ │ │ │ │ │ ├── test3dmatrix_7.4_GLNX86.mat
│ │ │ │ │ │ │ ├── test_empty_struct.mat
│ │ │ │ │ │ │ ├── test_mat4_le_floats.mat
│ │ │ │ │ │ │ ├── test_skip_variable.mat
│ │ │ │ │ │ │ ├── testbool_8_WIN64.mat
│ │ │ │ │ │ │ ├── testcell_6.1_SOL2.mat
│ │ │ │ │ │ │ ├── testcell_6.5.1_GLNX86.mat
│ │ │ │ │ │ │ ├── testcell_7.1_GLNX86.mat
│ │ │ │ │ │ │ ├── testcell_7.4_GLNX86.mat
│ │ │ │ │ │ │ ├── testcellnest_6.1_SOL2.mat
│ │ │ │ │ │ │ ├── testcellnest_6.5.1_GLNX86.mat
│ │ │ │ │ │ │ ├── testcellnest_7.1_GLNX86.mat
│ │ │ │ │ │ │ ├── testcellnest_7.4_GLNX86.mat
│ │ │ │ │ │ │ ├── testcomplex_4.2c_SOL2.mat
│ │ │ │ │ │ │ ├── testcomplex_6.1_SOL2.mat
│ │ │ │ │ │ │ ├── testcomplex_6.5.1_GLNX86.mat
│ │ │ │ │ │ │ ├── testcomplex_7.1_GLNX86.mat
│ │ │ │ │ │ │ ├── testcomplex_7.4_GLNX86.mat
│ │ │ │ │ │ │ ├── testdouble_4.2c_SOL2.mat
│ │ │ │ │ │ │ ├── testdouble_6.1_SOL2.mat
│ │ │ │ │ │ │ ├── testdouble_6.5.1_GLNX86.mat
│ │ │ │ │ │ │ ├── testdouble_7.1_GLNX86.mat
│ │ │ │ │ │ │ ├── testdouble_7.4_GLNX86.mat
│ │ │ │ │ │ │ ├── testemptycell_5.3_SOL2.mat
│ │ │ │ │ │ │ ├── testemptycell_6.5.1_GLNX86.mat
│ │ │ │ │ │ │ ├── testemptycell_7.1_GLNX86.mat
│ │ │ │ │ │ │ ├── testemptycell_7.4_GLNX86.mat
│ │ │ │ │ │ │ ├── testfunc_7.4_GLNX86.mat
│ │ │ │ │ │ │ ├── testhdf5_7.4_GLNX86.mat
│ │ │ │ │ │ │ ├── testmatrix_4.2c_SOL2.mat
│ │ │ │ │ │ │ ├── testmatrix_6.1_SOL2.mat
│ │ │ │ │ │ │ ├── testmatrix_6.5.1_GLNX86.mat
│ │ │ │ │ │ │ ├── testmatrix_7.1_GLNX86.mat
│ │ │ │ │ │ │ ├── testmatrix_7.4_GLNX86.mat
│ │ │ │ │ │ │ ├── testminus_4.2c_SOL2.mat
│ │ │ │ │ │ │ ├── testminus_6.1_SOL2.mat
│ │ │ │ │ │ │ ├── testminus_6.5.1_GLNX86.mat
│ │ │ │ │ │ │ ├── testminus_7.1_GLNX86.mat
│ │ │ │ │ │ │ ├── testminus_7.4_GLNX86.mat
│ │ │ │ │ │ │ ├── testmulti_4.2c_SOL2.mat
│ │ │ │ │ │ │ ├── testmulti_7.1_GLNX86.mat
│ │ │ │ │ │ │ ├── testmulti_7.4_GLNX86.mat
│ │ │ │ │ │ │ ├── testobject_6.1_SOL2.mat
│ │ │ │ │ │ │ ├── testobject_6.5.1_GLNX86.mat
│ │ │ │ │ │ │ ├── testobject_7.1_GLNX86.mat
│ │ │ │ │ │ │ ├── testobject_7.4_GLNX86.mat
│ │ │ │ │ │ │ ├── testonechar_4.2c_SOL2.mat
│ │ │ │ │ │ │ ├── testonechar_6.1_SOL2.mat
│ │ │ │ │ │ │ ├── testonechar_6.5.1_GLNX86.mat
│ │ │ │ │ │ │ ├── testonechar_7.1_GLNX86.mat
│ │ │ │ │ │ │ ├── testonechar_7.4_GLNX86.mat
│ │ │ │ │ │ │ ├── testscalarcell_7.4_GLNX86.mat
│ │ │ │ │ │ │ ├── testsparse_4.2c_SOL2.mat
│ │ │ │ │ │ │ ├── testsparse_6.1_SOL2.mat
│ │ │ │ │ │ │ ├── testsparse_6.5.1_GLNX86.mat
│ │ │ │ │ │ │ ├── testsparse_7.1_GLNX86.mat
│ │ │ │ │ │ │ ├── testsparse_7.4_GLNX86.mat
│ │ │ │ │ │ │ ├── testsparsecomplex_4.2c_SOL2.mat
│ │ │ │ │ │ │ ├── testsparsecomplex_6.1_SOL2.mat
│ │ │ │ │ │ │ ├── testsparsecomplex_6.5.1_GLNX86.mat
│ │ │ │ │ │ │ ├── testsparsecomplex_7.1_GLNX86.mat
│ │ │ │ │ │ │ ├── testsparsecomplex_7.4_GLNX86.mat
│ │ │ │ │ │ │ ├── testsparsefloat_7.4_GLNX86.mat
│ │ │ │ │ │ │ ├── teststring_4.2c_SOL2.mat
│ │ │ │ │ │ │ ├── teststring_6.1_SOL2.mat
│ │ │ │ │ │ │ ├── teststring_6.5.1_GLNX86.mat
│ │ │ │ │ │ │ ├── teststring_7.1_GLNX86.mat
│ │ │ │ │ │ │ ├── teststring_7.4_GLNX86.mat
│ │ │ │ │ │ │ ├── teststringarray_4.2c_SOL2.mat
│ │ │ │ │ │ │ ├── teststringarray_6.1_SOL2.mat
│ │ │ │ │ │ │ ├── teststringarray_6.5.1_GLNX86.mat
│ │ │ │ │ │ │ ├── teststringarray_7.1_GLNX86.mat
│ │ │ │ │ │ │ ├── teststringarray_7.4_GLNX86.mat
│ │ │ │ │ │ │ ├── teststruct_6.1_SOL2.mat
│ │ │ │ │ │ │ ├── teststruct_6.5.1_GLNX86.mat
│ │ │ │ │ │ │ ├── teststruct_7.1_GLNX86.mat
│ │ │ │ │ │ │ ├── teststruct_7.4_GLNX86.mat
│ │ │ │ │ │ │ ├── teststructarr_6.1_SOL2.mat
│ │ │ │ │ │ │ ├── teststructarr_6.5.1_GLNX86.mat
│ │ │ │ │ │ │ ├── teststructarr_7.1_GLNX86.mat
│ │ │ │ │ │ │ ├── teststructarr_7.4_GLNX86.mat
│ │ │ │ │ │ │ ├── teststructnest_6.1_SOL2.mat
│ │ │ │ │ │ │ ├── teststructnest_6.5.1_GLNX86.mat
│ │ │ │ │ │ │ ├── teststructnest_7.1_GLNX86.mat
│ │ │ │ │ │ │ ├── teststructnest_7.4_GLNX86.mat
│ │ │ │ │ │ │ ├── testunicode_7.1_GLNX86.mat
│ │ │ │ │ │ │ ├── testunicode_7.4_GLNX86.mat
│ │ │ │ │ │ │ └── testvec_4_GLNX86.mat
│ │ │ │ │ │ ├── gen_mat4files.m
│ │ │ │ │ │ ├── gen_mat5files.m
│ │ │ │ │ │ ├── save_matfile.m
│ │ │ │ │ │ ├── test_byteordercodes.py
│ │ │ │ │ │ ├── test_mio.py
│ │ │ │ │ │ ├── test_mio5_utils.py
│ │ │ │ │ │ ├── test_mio_funcs.py
│ │ │ │ │ │ ├── test_mio_utils.py
│ │ │ │ │ │ ├── test_miobase.py
│ │ │ │ │ │ ├── test_pathological.py
│ │ │ │ │ │ └── test_streams.py
│ │ │ │ │ ├── mmio.py
│ │ │ │ │ ├── netcdf.py
│ │ │ │ │ ├── setup.py
│ │ │ │ │ ├── tests
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_fortran.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_idl.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_mmio.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_netcdf.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_paths.cpython-36.pyc
│ │ │ │ │ │ │ └── test_wavfile.cpython-36.pyc
│ │ │ │ │ │ ├── data
│ │ │ │ │ │ │ ├── array_float32_1d.sav
│ │ │ │ │ │ │ ├── array_float32_2d.sav
│ │ │ │ │ │ │ ├── array_float32_3d.sav
│ │ │ │ │ │ │ ├── array_float32_4d.sav
│ │ │ │ │ │ │ ├── array_float32_5d.sav
│ │ │ │ │ │ │ ├── array_float32_6d.sav
│ │ │ │ │ │ │ ├── array_float32_7d.sav
│ │ │ │ │ │ │ ├── array_float32_8d.sav
│ │ │ │ │ │ │ ├── array_float32_pointer_1d.sav
│ │ │ │ │ │ │ ├── array_float32_pointer_2d.sav
│ │ │ │ │ │ │ ├── array_float32_pointer_3d.sav
│ │ │ │ │ │ │ ├── array_float32_pointer_4d.sav
│ │ │ │ │ │ │ ├── array_float32_pointer_5d.sav
│ │ │ │ │ │ │ ├── array_float32_pointer_6d.sav
│ │ │ │ │ │ │ ├── array_float32_pointer_7d.sav
│ │ │ │ │ │ │ ├── array_float32_pointer_8d.sav
│ │ │ │ │ │ │ ├── example_1.nc
│ │ │ │ │ │ │ ├── example_2.nc
│ │ │ │ │ │ │ ├── example_3_maskedvals.nc
│ │ │ │ │ │ │ ├── fortran-3x3d-2i.dat
│ │ │ │ │ │ │ ├── fortran-mixed.dat
│ │ │ │ │ │ │ ├── fortran-sf8-11x1x10.dat
│ │ │ │ │ │ │ ├── fortran-sf8-15x10x22.dat
│ │ │ │ │ │ │ ├── fortran-sf8-1x1x1.dat
│ │ │ │ │ │ │ ├── fortran-sf8-1x1x5.dat
│ │ │ │ │ │ │ ├── fortran-sf8-1x1x7.dat
│ │ │ │ │ │ │ ├── fortran-sf8-1x3x5.dat
│ │ │ │ │ │ │ ├── fortran-si4-11x1x10.dat
│ │ │ │ │ │ │ ├── fortran-si4-15x10x22.dat
│ │ │ │ │ │ │ ├── fortran-si4-1x1x1.dat
│ │ │ │ │ │ │ ├── fortran-si4-1x1x5.dat
│ │ │ │ │ │ │ ├── fortran-si4-1x1x7.dat
│ │ │ │ │ │ │ ├── fortran-si4-1x3x5.dat
│ │ │ │ │ │ │ ├── invalid_pointer.sav
│ │ │ │ │ │ │ ├── null_pointer.sav
│ │ │ │ │ │ │ ├── scalar_byte.sav
│ │ │ │ │ │ │ ├── scalar_byte_descr.sav
│ │ │ │ │ │ │ ├── scalar_complex32.sav
│ │ │ │ │ │ │ ├── scalar_complex64.sav
│ │ │ │ │ │ │ ├── scalar_float32.sav
│ │ │ │ │ │ │ ├── scalar_float64.sav
│ │ │ │ │ │ │ ├── scalar_heap_pointer.sav
│ │ │ │ │ │ │ ├── scalar_int16.sav
│ │ │ │ │ │ │ ├── scalar_int32.sav
│ │ │ │ │ │ │ ├── scalar_int64.sav
│ │ │ │ │ │ │ ├── scalar_string.sav
│ │ │ │ │ │ │ ├── scalar_uint16.sav
│ │ │ │ │ │ │ ├── scalar_uint32.sav
│ │ │ │ │ │ │ ├── scalar_uint64.sav
│ │ │ │ │ │ │ ├── struct_arrays.sav
│ │ │ │ │ │ │ ├── struct_arrays_byte_idl80.sav
│ │ │ │ │ │ │ ├── struct_arrays_replicated.sav
│ │ │ │ │ │ │ ├── struct_arrays_replicated_3d.sav
│ │ │ │ │ │ │ ├── struct_inherit.sav
│ │ │ │ │ │ │ ├── struct_pointer_arrays.sav
│ │ │ │ │ │ │ ├── struct_pointer_arrays_replicated.sav
│ │ │ │ │ │ │ ├── struct_pointer_arrays_replicated_3d.sav
│ │ │ │ │ │ │ ├── struct_pointers.sav
│ │ │ │ │ │ │ ├── struct_pointers_replicated.sav
│ │ │ │ │ │ │ ├── struct_pointers_replicated_3d.sav
│ │ │ │ │ │ │ ├── struct_scalars.sav
│ │ │ │ │ │ │ ├── struct_scalars_replicated.sav
│ │ │ │ │ │ │ ├── struct_scalars_replicated_3d.sav
│ │ │ │ │ │ │ ├── test-44100Hz-2ch-32bit-float-be.wav
│ │ │ │ │ │ │ ├── test-44100Hz-2ch-32bit-float-le.wav
│ │ │ │ │ │ │ ├── test-44100Hz-le-1ch-4bytes-early-eof.wav
│ │ │ │ │ │ │ ├── test-44100Hz-le-1ch-4bytes-incomplete-chunk.wav
│ │ │ │ │ │ │ ├── test-44100Hz-le-1ch-4bytes.wav
│ │ │ │ │ │ │ ├── test-48000Hz-2ch-64bit-float-le-wavex.wav
│ │ │ │ │ │ │ ├── test-8000Hz-le-2ch-1byteu.wav
│ │ │ │ │ │ │ └── various_compressed.sav
│ │ │ │ │ │ ├── test_fortran.py
│ │ │ │ │ │ ├── test_idl.py
│ │ │ │ │ │ ├── test_mmio.py
│ │ │ │ │ │ ├── test_netcdf.py
│ │ │ │ │ │ ├── test_paths.py
│ │ │ │ │ │ └── test_wavfile.py
│ │ │ │ │ └── wavfile.py
│ │ │ │ ├── linalg
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _cython_signature_generator.cpython-36.pyc
│ │ │ │ │ │ ├── _decomp_ldl.cpython-36.pyc
│ │ │ │ │ │ ├── _decomp_polar.cpython-36.pyc
│ │ │ │ │ │ ├── _decomp_qz.cpython-36.pyc
│ │ │ │ │ │ ├── _expm_frechet.cpython-36.pyc
│ │ │ │ │ │ ├── _generate_pyx.cpython-36.pyc
│ │ │ │ │ │ ├── _interpolative_backend.cpython-36.pyc
│ │ │ │ │ │ ├── _matfuncs_inv_ssq.cpython-36.pyc
│ │ │ │ │ │ ├── _matfuncs_sqrtm.cpython-36.pyc
│ │ │ │ │ │ ├── _procrustes.cpython-36.pyc
│ │ │ │ │ │ ├── _sketches.cpython-36.pyc
│ │ │ │ │ │ ├── _solvers.cpython-36.pyc
│ │ │ │ │ │ ├── _testutils.cpython-36.pyc
│ │ │ │ │ │ ├── basic.cpython-36.pyc
│ │ │ │ │ │ ├── blas.cpython-36.pyc
│ │ │ │ │ │ ├── decomp.cpython-36.pyc
│ │ │ │ │ │ ├── decomp_cholesky.cpython-36.pyc
│ │ │ │ │ │ ├── decomp_lu.cpython-36.pyc
│ │ │ │ │ │ ├── decomp_qr.cpython-36.pyc
│ │ │ │ │ │ ├── decomp_schur.cpython-36.pyc
│ │ │ │ │ │ ├── decomp_svd.cpython-36.pyc
│ │ │ │ │ │ ├── flinalg.cpython-36.pyc
│ │ │ │ │ │ ├── interpolative.cpython-36.pyc
│ │ │ │ │ │ ├── lapack.cpython-36.pyc
│ │ │ │ │ │ ├── linalg_version.cpython-36.pyc
│ │ │ │ │ │ ├── matfuncs.cpython-36.pyc
│ │ │ │ │ │ ├── misc.cpython-36.pyc
│ │ │ │ │ │ ├── setup.cpython-36.pyc
│ │ │ │ │ │ └── special_matrices.cpython-36.pyc
│ │ │ │ │ ├── _cython_signature_generator.py
│ │ │ │ │ ├── _decomp_ldl.py
│ │ │ │ │ ├── _decomp_polar.py
│ │ │ │ │ ├── _decomp_qz.py
│ │ │ │ │ ├── _decomp_update.cp36-win_amd64.pyd
│ │ │ │ │ ├── _expm_frechet.py
│ │ │ │ │ ├── _fblas.cp36-win_amd64.pyd
│ │ │ │ │ ├── _flapack.cp36-win_amd64.pyd
│ │ │ │ │ ├── _flinalg.cp36-win_amd64.pyd
│ │ │ │ │ ├── _generate_pyx.py
│ │ │ │ │ ├── _interpolative.cp36-win_amd64.pyd
│ │ │ │ │ ├── _interpolative_backend.py
│ │ │ │ │ ├── _matfuncs_inv_ssq.py
│ │ │ │ │ ├── _matfuncs_sqrtm.py
│ │ │ │ │ ├── _procrustes.py
│ │ │ │ │ ├── _sketches.py
│ │ │ │ │ ├── _solve_toeplitz.cp36-win_amd64.pyd
│ │ │ │ │ ├── _solvers.py
│ │ │ │ │ ├── _testutils.py
│ │ │ │ │ ├── basic.py
│ │ │ │ │ ├── blas.py
│ │ │ │ │ ├── cython_blas.cp36-win_amd64.pyd
│ │ │ │ │ ├── cython_blas.pxd
│ │ │ │ │ ├── cython_lapack.cp36-win_amd64.pyd
│ │ │ │ │ ├── cython_lapack.pxd
│ │ │ │ │ ├── decomp.py
│ │ │ │ │ ├── decomp_cholesky.py
│ │ │ │ │ ├── decomp_lu.py
│ │ │ │ │ ├── decomp_qr.py
│ │ │ │ │ ├── decomp_schur.py
│ │ │ │ │ ├── decomp_svd.py
│ │ │ │ │ ├── flinalg.py
│ │ │ │ │ ├── interpolative.py
│ │ │ │ │ ├── lapack.py
│ │ │ │ │ ├── linalg_version.py
│ │ │ │ │ ├── matfuncs.py
│ │ │ │ │ ├── misc.py
│ │ │ │ │ ├── setup.py
│ │ │ │ │ ├── special_matrices.py
│ │ │ │ │ ├── src
│ │ │ │ │ │ ├── id_dist
│ │ │ │ │ │ │ └── doc
│ │ │ │ │ │ │ └── doc.tex
│ │ │ │ │ │ └── lapack_deprecations
│ │ │ │ │ │ └── LICENSE
│ │ │ │ │ └── tests
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_basic.cpython-36.pyc
│ │ │ │ │ │ ├── test_blas.cpython-36.pyc
│ │ │ │ │ │ ├── test_build.cpython-36.pyc
│ │ │ │ │ │ ├── test_cython_blas.cpython-36.pyc
│ │ │ │ │ │ ├── test_cython_lapack.cpython-36.pyc
│ │ │ │ │ │ ├── test_decomp.cpython-36.pyc
│ │ │ │ │ │ ├── test_decomp_cholesky.cpython-36.pyc
│ │ │ │ │ │ ├── test_decomp_ldl.cpython-36.pyc
│ │ │ │ │ │ ├── test_decomp_polar.cpython-36.pyc
│ │ │ │ │ │ ├── test_decomp_update.cpython-36.pyc
│ │ │ │ │ │ ├── test_fblas.cpython-36.pyc
│ │ │ │ │ │ ├── test_interpolative.cpython-36.pyc
│ │ │ │ │ │ ├── test_lapack.cpython-36.pyc
│ │ │ │ │ │ ├── test_matfuncs.cpython-36.pyc
│ │ │ │ │ │ ├── test_procrustes.cpython-36.pyc
│ │ │ │ │ │ ├── test_sketches.cpython-36.pyc
│ │ │ │ │ │ ├── test_solve_toeplitz.cpython-36.pyc
│ │ │ │ │ │ ├── test_solvers.cpython-36.pyc
│ │ │ │ │ │ └── test_special_matrices.cpython-36.pyc
│ │ │ │ │ ├── data
│ │ │ │ │ │ ├── carex_15_data.npz
│ │ │ │ │ │ ├── carex_18_data.npz
│ │ │ │ │ │ ├── carex_19_data.npz
│ │ │ │ │ │ ├── carex_20_data.npz
│ │ │ │ │ │ ├── carex_6_data.npz
│ │ │ │ │ │ └── gendare_20170120_data.npz
│ │ │ │ │ ├── test_basic.py
│ │ │ │ │ ├── test_blas.py
│ │ │ │ │ ├── test_build.py
│ │ │ │ │ ├── test_cython_blas.py
│ │ │ │ │ ├── test_cython_lapack.py
│ │ │ │ │ ├── test_decomp.py
│ │ │ │ │ ├── test_decomp_cholesky.py
│ │ │ │ │ ├── test_decomp_ldl.py
│ │ │ │ │ ├── test_decomp_polar.py
│ │ │ │ │ ├── test_decomp_update.py
│ │ │ │ │ ├── test_fblas.py
│ │ │ │ │ ├── test_interpolative.py
│ │ │ │ │ ├── test_lapack.py
│ │ │ │ │ ├── test_matfuncs.py
│ │ │ │ │ ├── test_procrustes.py
│ │ │ │ │ ├── test_sketches.py
│ │ │ │ │ ├── test_solve_toeplitz.py
│ │ │ │ │ ├── test_solvers.py
│ │ │ │ │ └── test_special_matrices.py
│ │ │ │ ├── linalg.pxd
│ │ │ │ ├── misc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── common.cpython-36.pyc
│ │ │ │ │ │ ├── doccer.cpython-36.pyc
│ │ │ │ │ │ ├── pilutil.cpython-36.pyc
│ │ │ │ │ │ └── setup.cpython-36.pyc
│ │ │ │ │ ├── ascent.dat
│ │ │ │ │ ├── common.py
│ │ │ │ │ ├── doccer.py
│ │ │ │ │ ├── ecg.dat
│ │ │ │ │ ├── face.dat
│ │ │ │ │ ├── pilutil.py
│ │ │ │ │ ├── setup.py
│ │ │ │ │ └── tests
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_common.cpython-36.pyc
│ │ │ │ │ │ ├── test_doccer.cpython-36.pyc
│ │ │ │ │ │ └── test_pilutil.cpython-36.pyc
│ │ │ │ │ ├── data
│ │ │ │ │ │ ├── 3x3x3.png
│ │ │ │ │ │ ├── 3x3x4.png
│ │ │ │ │ │ ├── 3x4x3.png
│ │ │ │ │ │ ├── 3x4x4.png
│ │ │ │ │ │ ├── 3x5x3.png
│ │ │ │ │ │ ├── 3x5x4.png
│ │ │ │ │ │ ├── 4x3x3.png
│ │ │ │ │ │ ├── 4x3x4.png
│ │ │ │ │ │ ├── 4x4x3.png
│ │ │ │ │ │ ├── 4x4x4.png
│ │ │ │ │ │ ├── 4x5x3.png
│ │ │ │ │ │ ├── 4x5x4.png
│ │ │ │ │ │ ├── 5x3x3.png
│ │ │ │ │ │ ├── 5x3x4.png
│ │ │ │ │ │ ├── 5x4x3.png
│ │ │ │ │ │ ├── 5x4x4.png
│ │ │ │ │ │ ├── 5x5x3.png
│ │ │ │ │ │ ├── 5x5x4.png
│ │ │ │ │ │ ├── blocks2bit.png
│ │ │ │ │ │ ├── box1.png
│ │ │ │ │ │ ├── foo3x5x4indexed.png
│ │ │ │ │ │ ├── icon.png
│ │ │ │ │ │ ├── icon_mono.png
│ │ │ │ │ │ ├── icon_mono_flat.png
│ │ │ │ │ │ └── pattern4bit.png
│ │ │ │ │ ├── test_common.py
│ │ │ │ │ ├── test_doccer.py
│ │ │ │ │ └── test_pilutil.py
│ │ │ │ ├── ndimage
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _ni_docstrings.cpython-36.pyc
│ │ │ │ │ │ ├── _ni_support.cpython-36.pyc
│ │ │ │ │ │ ├── filters.cpython-36.pyc
│ │ │ │ │ │ ├── fourier.cpython-36.pyc
│ │ │ │ │ │ ├── interpolation.cpython-36.pyc
│ │ │ │ │ │ ├── io.cpython-36.pyc
│ │ │ │ │ │ ├── measurements.cpython-36.pyc
│ │ │ │ │ │ ├── morphology.cpython-36.pyc
│ │ │ │ │ │ └── setup.cpython-36.pyc
│ │ │ │ │ ├── _ctest.cp36-win_amd64.pyd
│ │ │ │ │ ├── _ctest_oldapi.cp36-win_amd64.pyd
│ │ │ │ │ ├── _cytest.cp36-win_amd64.pyd
│ │ │ │ │ ├── _nd_image.cp36-win_amd64.pyd
│ │ │ │ │ ├── _ni_docstrings.py
│ │ │ │ │ ├── _ni_label.cp36-win_amd64.pyd
│ │ │ │ │ ├── _ni_support.py
│ │ │ │ │ ├── filters.py
│ │ │ │ │ ├── fourier.py
│ │ │ │ │ ├── interpolation.py
│ │ │ │ │ ├── io.py
│ │ │ │ │ ├── measurements.py
│ │ │ │ │ ├── morphology.py
│ │ │ │ │ ├── setup.py
│ │ │ │ │ └── tests
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_c_api.cpython-36.pyc
│ │ │ │ │ │ ├── test_datatypes.cpython-36.pyc
│ │ │ │ │ │ ├── test_filters.cpython-36.pyc
│ │ │ │ │ │ ├── test_io.cpython-36.pyc
│ │ │ │ │ │ ├── test_measurements.cpython-36.pyc
│ │ │ │ │ │ ├── test_ndimage.cpython-36.pyc
│ │ │ │ │ │ ├── test_regression.cpython-36.pyc
│ │ │ │ │ │ └── test_splines.cpython-36.pyc
│ │ │ │ │ ├── data
│ │ │ │ │ │ ├── README.txt
│ │ │ │ │ │ ├── label_inputs.txt
│ │ │ │ │ │ ├── label_results.txt
│ │ │ │ │ │ └── label_strels.txt
│ │ │ │ │ ├── dots.png
│ │ │ │ │ ├── test_c_api.py
│ │ │ │ │ ├── test_datatypes.py
│ │ │ │ │ ├── test_filters.py
│ │ │ │ │ ├── test_io.py
│ │ │ │ │ ├── test_measurements.py
│ │ │ │ │ ├── test_ndimage.py
│ │ │ │ │ ├── test_regression.py
│ │ │ │ │ └── test_splines.py
│ │ │ │ ├── odr
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __odrpack.cp36-win_amd64.pyd
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── add_newdocs.cpython-36.pyc
│ │ │ │ │ │ ├── models.cpython-36.pyc
│ │ │ │ │ │ ├── odrpack.cpython-36.pyc
│ │ │ │ │ │ └── setup.cpython-36.pyc
│ │ │ │ │ ├── add_newdocs.py
│ │ │ │ │ ├── models.py
│ │ │ │ │ ├── odrpack.py
│ │ │ │ │ ├── setup.py
│ │ │ │ │ └── tests
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ └── test_odr.cpython-36.pyc
│ │ │ │ │ └── test_odr.py
│ │ │ │ ├── optimize
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _basinhopping.cpython-36.pyc
│ │ │ │ │ │ ├── _constraints.cpython-36.pyc
│ │ │ │ │ │ ├── _differentiable_functions.cpython-36.pyc
│ │ │ │ │ │ ├── _differentialevolution.cpython-36.pyc
│ │ │ │ │ │ ├── _hessian_update_strategy.cpython-36.pyc
│ │ │ │ │ │ ├── _hungarian.cpython-36.pyc
│ │ │ │ │ │ ├── _linprog.cpython-36.pyc
│ │ │ │ │ │ ├── _linprog_ip.cpython-36.pyc
│ │ │ │ │ │ ├── _minimize.cpython-36.pyc
│ │ │ │ │ │ ├── _numdiff.cpython-36.pyc
│ │ │ │ │ │ ├── _remove_redundancy.cpython-36.pyc
│ │ │ │ │ │ ├── _root.cpython-36.pyc
│ │ │ │ │ │ ├── _spectral.cpython-36.pyc
│ │ │ │ │ │ ├── _trustregion.cpython-36.pyc
│ │ │ │ │ │ ├── _trustregion_dogleg.cpython-36.pyc
│ │ │ │ │ │ ├── _trustregion_exact.cpython-36.pyc
│ │ │ │ │ │ ├── _trustregion_krylov.cpython-36.pyc
│ │ │ │ │ │ ├── _trustregion_ncg.cpython-36.pyc
│ │ │ │ │ │ ├── _tstutils.cpython-36.pyc
│ │ │ │ │ │ ├── cobyla.cpython-36.pyc
│ │ │ │ │ │ ├── lbfgsb.cpython-36.pyc
│ │ │ │ │ │ ├── linesearch.cpython-36.pyc
│ │ │ │ │ │ ├── minpack.cpython-36.pyc
│ │ │ │ │ │ ├── nnls.cpython-36.pyc
│ │ │ │ │ │ ├── nonlin.cpython-36.pyc
│ │ │ │ │ │ ├── optimize.cpython-36.pyc
│ │ │ │ │ │ ├── setup.cpython-36.pyc
│ │ │ │ │ │ ├── slsqp.cpython-36.pyc
│ │ │ │ │ │ ├── tnc.cpython-36.pyc
│ │ │ │ │ │ └── zeros.cpython-36.pyc
│ │ │ │ │ ├── _basinhopping.py
│ │ │ │ │ ├── _cobyla.cp36-win_amd64.pyd
│ │ │ │ │ ├── _constraints.py
│ │ │ │ │ ├── _differentiable_functions.py
│ │ │ │ │ ├── _differentialevolution.py
│ │ │ │ │ ├── _group_columns.cp36-win_amd64.pyd
│ │ │ │ │ ├── _hessian_update_strategy.py
│ │ │ │ │ ├── _hungarian.py
│ │ │ │ │ ├── _lbfgsb.cp36-win_amd64.pyd
│ │ │ │ │ ├── _linprog.py
│ │ │ │ │ ├── _linprog_ip.py
│ │ │ │ │ ├── _lsq
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── bvls.cpython-36.pyc
│ │ │ │ │ │ │ ├── common.cpython-36.pyc
│ │ │ │ │ │ │ ├── dogbox.cpython-36.pyc
│ │ │ │ │ │ │ ├── least_squares.cpython-36.pyc
│ │ │ │ │ │ │ ├── lsq_linear.cpython-36.pyc
│ │ │ │ │ │ │ ├── setup.cpython-36.pyc
│ │ │ │ │ │ │ ├── trf.cpython-36.pyc
│ │ │ │ │ │ │ └── trf_linear.cpython-36.pyc
│ │ │ │ │ │ ├── bvls.py
│ │ │ │ │ │ ├── common.py
│ │ │ │ │ │ ├── dogbox.py
│ │ │ │ │ │ ├── givens_elimination.cp36-win_amd64.pyd
│ │ │ │ │ │ ├── least_squares.py
│ │ │ │ │ │ ├── lsq_linear.py
│ │ │ │ │ │ ├── setup.py
│ │ │ │ │ │ ├── trf.py
│ │ │ │ │ │ └── trf_linear.py
│ │ │ │ │ ├── _minimize.py
│ │ │ │ │ ├── _minpack.cp36-win_amd64.pyd
│ │ │ │ │ ├── _nnls.cp36-win_amd64.pyd
│ │ │ │ │ ├── _numdiff.py
│ │ │ │ │ ├── _remove_redundancy.py
│ │ │ │ │ ├── _root.py
│ │ │ │ │ ├── _slsqp.cp36-win_amd64.pyd
│ │ │ │ │ ├── _spectral.py
│ │ │ │ │ ├── _trlib
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ └── setup.cpython-36.pyc
│ │ │ │ │ │ ├── _trlib.cp36-win_amd64.pyd
│ │ │ │ │ │ └── setup.py
│ │ │ │ │ ├── _trustregion.py
│ │ │ │ │ ├── _trustregion_constr
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── canonical_constraint.cpython-36.pyc
│ │ │ │ │ │ │ ├── equality_constrained_sqp.cpython-36.pyc
│ │ │ │ │ │ │ ├── minimize_trustregion_constr.cpython-36.pyc
│ │ │ │ │ │ │ ├── projections.cpython-36.pyc
│ │ │ │ │ │ │ ├── qp_subproblem.cpython-36.pyc
│ │ │ │ │ │ │ ├── report.cpython-36.pyc
│ │ │ │ │ │ │ ├── setup.cpython-36.pyc
│ │ │ │ │ │ │ └── tr_interior_point.cpython-36.pyc
│ │ │ │ │ │ ├── canonical_constraint.py
│ │ │ │ │ │ ├── equality_constrained_sqp.py
│ │ │ │ │ │ ├── minimize_trustregion_constr.py
│ │ │ │ │ │ ├── projections.py
│ │ │ │ │ │ ├── qp_subproblem.py
│ │ │ │ │ │ ├── report.py
│ │ │ │ │ │ ├── setup.py
│ │ │ │ │ │ ├── tests
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── test_canonical_constraint.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── test_projections.cpython-36.pyc
│ │ │ │ │ │ │ │ └── test_qp_subproblem.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_canonical_constraint.py
│ │ │ │ │ │ │ ├── test_projections.py
│ │ │ │ │ │ │ └── test_qp_subproblem.py
│ │ │ │ │ │ └── tr_interior_point.py
│ │ │ │ │ ├── _trustregion_dogleg.py
│ │ │ │ │ ├── _trustregion_exact.py
│ │ │ │ │ ├── _trustregion_krylov.py
│ │ │ │ │ ├── _trustregion_ncg.py
│ │ │ │ │ ├── _tstutils.py
│ │ │ │ │ ├── _zeros.cp36-win_amd64.pyd
│ │ │ │ │ ├── cobyla.py
│ │ │ │ │ ├── lbfgsb
│ │ │ │ │ │ └── README
│ │ │ │ │ ├── lbfgsb.py
│ │ │ │ │ ├── linesearch.py
│ │ │ │ │ ├── minpack.py
│ │ │ │ │ ├── minpack2.cp36-win_amd64.pyd
│ │ │ │ │ ├── moduleTNC.cp36-win_amd64.pyd
│ │ │ │ │ ├── nnls.py
│ │ │ │ │ ├── nonlin.py
│ │ │ │ │ ├── optimize.py
│ │ │ │ │ ├── setup.py
│ │ │ │ │ ├── slsqp.py
│ │ │ │ │ ├── tests
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── test__basinhopping.cpython-36.pyc
│ │ │ │ │ │ │ ├── test__differential_evolution.cpython-36.pyc
│ │ │ │ │ │ │ ├── test__linprog_ip_clean_inputs.cpython-36.pyc
│ │ │ │ │ │ │ ├── test__numdiff.cpython-36.pyc
│ │ │ │ │ │ │ ├── test__remove_redundancy.cpython-36.pyc
│ │ │ │ │ │ │ ├── test__root.cpython-36.pyc
│ │ │ │ │ │ │ ├── test__spectral.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_cobyla.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_constraints.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_differentiable_functions.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_hessian_update_strategy.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_hungarian.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_lbfgsb_hessinv.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_least_squares.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_linesearch.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_linprog.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_lsq_common.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_lsq_linear.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_minimize_constrained.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_minpack.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_nnls.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_nonlin.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_optimize.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_regression.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_slsqp.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_tnc.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_trustregion.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_trustregion_exact.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_trustregion_krylov.cpython-36.pyc
│ │ │ │ │ │ │ └── test_zeros.cpython-36.pyc
│ │ │ │ │ │ ├── test__basinhopping.py
│ │ │ │ │ │ ├── test__differential_evolution.py
│ │ │ │ │ │ ├── test__linprog_ip_clean_inputs.py
│ │ │ │ │ │ ├── test__numdiff.py
│ │ │ │ │ │ ├── test__remove_redundancy.py
│ │ │ │ │ │ ├── test__root.py
│ │ │ │ │ │ ├── test__spectral.py
│ │ │ │ │ │ ├── test_cobyla.py
│ │ │ │ │ │ ├── test_constraints.py
│ │ │ │ │ │ ├── test_differentiable_functions.py
│ │ │ │ │ │ ├── test_hessian_update_strategy.py
│ │ │ │ │ │ ├── test_hungarian.py
│ │ │ │ │ │ ├── test_lbfgsb_hessinv.py
│ │ │ │ │ │ ├── test_least_squares.py
│ │ │ │ │ │ ├── test_linesearch.py
│ │ │ │ │ │ ├── test_linprog.py
│ │ │ │ │ │ ├── test_lsq_common.py
│ │ │ │ │ │ ├── test_lsq_linear.py
│ │ │ │ │ │ ├── test_minimize_constrained.py
│ │ │ │ │ │ ├── test_minpack.py
│ │ │ │ │ │ ├── test_nnls.py
│ │ │ │ │ │ ├── test_nonlin.py
│ │ │ │ │ │ ├── test_optimize.py
│ │ │ │ │ │ ├── test_regression.py
│ │ │ │ │ │ ├── test_slsqp.py
│ │ │ │ │ │ ├── test_tnc.py
│ │ │ │ │ │ ├── test_trustregion.py
│ │ │ │ │ │ ├── test_trustregion_exact.py
│ │ │ │ │ │ ├── test_trustregion_krylov.py
│ │ │ │ │ │ └── test_zeros.py
│ │ │ │ │ ├── tnc.py
│ │ │ │ │ └── zeros.py
│ │ │ │ ├── setup.py
│ │ │ │ ├── signal
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _arraytools.cpython-36.pyc
│ │ │ │ │ │ ├── _max_len_seq.cpython-36.pyc
│ │ │ │ │ │ ├── _peak_finding.cpython-36.pyc
│ │ │ │ │ │ ├── _savitzky_golay.cpython-36.pyc
│ │ │ │ │ │ ├── _upfirdn.cpython-36.pyc
│ │ │ │ │ │ ├── bsplines.cpython-36.pyc
│ │ │ │ │ │ ├── filter_design.cpython-36.pyc
│ │ │ │ │ │ ├── fir_filter_design.cpython-36.pyc
│ │ │ │ │ │ ├── lti_conversion.cpython-36.pyc
│ │ │ │ │ │ ├── ltisys.cpython-36.pyc
│ │ │ │ │ │ ├── setup.cpython-36.pyc
│ │ │ │ │ │ ├── signaltools.cpython-36.pyc
│ │ │ │ │ │ ├── spectral.cpython-36.pyc
│ │ │ │ │ │ ├── waveforms.cpython-36.pyc
│ │ │ │ │ │ └── wavelets.cpython-36.pyc
│ │ │ │ │ ├── _arraytools.py
│ │ │ │ │ ├── _max_len_seq.py
│ │ │ │ │ ├── _max_len_seq_inner.cp36-win_amd64.pyd
│ │ │ │ │ ├── _peak_finding.py
│ │ │ │ │ ├── _peak_finding_utils.cp36-win_amd64.pyd
│ │ │ │ │ ├── _savitzky_golay.py
│ │ │ │ │ ├── _spectral.cp36-win_amd64.pyd
│ │ │ │ │ ├── _upfirdn.py
│ │ │ │ │ ├── _upfirdn_apply.cp36-win_amd64.pyd
│ │ │ │ │ ├── bsplines.py
│ │ │ │ │ ├── filter_design.py
│ │ │ │ │ ├── fir_filter_design.py
│ │ │ │ │ ├── lti_conversion.py
│ │ │ │ │ ├── ltisys.py
│ │ │ │ │ ├── setup.py
│ │ │ │ │ ├── signaltools.py
│ │ │ │ │ ├── sigtools.cp36-win_amd64.pyd
│ │ │ │ │ ├── spectral.py
│ │ │ │ │ ├── spline.cp36-win_amd64.pyd
│ │ │ │ │ ├── tests
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── mpsig.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_array_tools.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_cont2discrete.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_dltisys.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_filter_design.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_fir_filter_design.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_ltisys.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_max_len_seq.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_peak_finding.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_savitzky_golay.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_signaltools.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_spectral.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_upfirdn.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_waveforms.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_wavelets.cpython-36.pyc
│ │ │ │ │ │ │ └── test_windows.cpython-36.pyc
│ │ │ │ │ │ ├── mpsig.py
│ │ │ │ │ │ ├── test_array_tools.py
│ │ │ │ │ │ ├── test_cont2discrete.py
│ │ │ │ │ │ ├── test_dltisys.py
│ │ │ │ │ │ ├── test_filter_design.py
│ │ │ │ │ │ ├── test_fir_filter_design.py
│ │ │ │ │ │ ├── test_ltisys.py
│ │ │ │ │ │ ├── test_max_len_seq.py
│ │ │ │ │ │ ├── test_peak_finding.py
│ │ │ │ │ │ ├── test_savitzky_golay.py
│ │ │ │ │ │ ├── test_signaltools.py
│ │ │ │ │ │ ├── test_spectral.py
│ │ │ │ │ │ ├── test_upfirdn.py
│ │ │ │ │ │ ├── test_waveforms.py
│ │ │ │ │ │ ├── test_wavelets.py
│ │ │ │ │ │ └── test_windows.py
│ │ │ │ │ ├── waveforms.py
│ │ │ │ │ ├── wavelets.py
│ │ │ │ │ └── windows
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── setup.cpython-36.pyc
│ │ │ │ │ │ └── windows.cpython-36.pyc
│ │ │ │ │ ├── setup.py
│ │ │ │ │ └── windows.py
│ │ │ │ ├── sparse
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _matrix_io.cpython-36.pyc
│ │ │ │ │ │ ├── base.cpython-36.pyc
│ │ │ │ │ │ ├── bsr.cpython-36.pyc
│ │ │ │ │ │ ├── compressed.cpython-36.pyc
│ │ │ │ │ │ ├── construct.cpython-36.pyc
│ │ │ │ │ │ ├── coo.cpython-36.pyc
│ │ │ │ │ │ ├── csc.cpython-36.pyc
│ │ │ │ │ │ ├── csr.cpython-36.pyc
│ │ │ │ │ │ ├── data.cpython-36.pyc
│ │ │ │ │ │ ├── dia.cpython-36.pyc
│ │ │ │ │ │ ├── dok.cpython-36.pyc
│ │ │ │ │ │ ├── extract.cpython-36.pyc
│ │ │ │ │ │ ├── generate_sparsetools.cpython-36.pyc
│ │ │ │ │ │ ├── lil.cpython-36.pyc
│ │ │ │ │ │ ├── setup.cpython-36.pyc
│ │ │ │ │ │ ├── sparsetools.cpython-36.pyc
│ │ │ │ │ │ ├── spfuncs.cpython-36.pyc
│ │ │ │ │ │ └── sputils.cpython-36.pyc
│ │ │ │ │ ├── _csparsetools.cp36-win_amd64.pyd
│ │ │ │ │ ├── _matrix_io.py
│ │ │ │ │ ├── _sparsetools.cp36-win_amd64.pyd
│ │ │ │ │ ├── base.py
│ │ │ │ │ ├── bsr.py
│ │ │ │ │ ├── compressed.py
│ │ │ │ │ ├── construct.py
│ │ │ │ │ ├── coo.py
│ │ │ │ │ ├── csc.py
│ │ │ │ │ ├── csgraph
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── _laplacian.cpython-36.pyc
│ │ │ │ │ │ │ ├── _validation.cpython-36.pyc
│ │ │ │ │ │ │ └── setup.cpython-36.pyc
│ │ │ │ │ │ ├── _laplacian.py
│ │ │ │ │ │ ├── _min_spanning_tree.cp36-win_amd64.pyd
│ │ │ │ │ │ ├── _reordering.cp36-win_amd64.pyd
│ │ │ │ │ │ ├── _shortest_path.cp36-win_amd64.pyd
│ │ │ │ │ │ ├── _tools.cp36-win_amd64.pyd
│ │ │ │ │ │ ├── _traversal.cp36-win_amd64.pyd
│ │ │ │ │ │ ├── _validation.py
│ │ │ │ │ │ ├── setup.py
│ │ │ │ │ │ └── tests
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_connected_components.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_conversions.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_graph_laplacian.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_reordering.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_shortest_path.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_spanning_tree.cpython-36.pyc
│ │ │ │ │ │ │ └── test_traversal.cpython-36.pyc
│ │ │ │ │ │ ├── test_connected_components.py
│ │ │ │ │ │ ├── test_conversions.py
│ │ │ │ │ │ ├── test_graph_laplacian.py
│ │ │ │ │ │ ├── test_reordering.py
│ │ │ │ │ │ ├── test_shortest_path.py
│ │ │ │ │ │ ├── test_spanning_tree.py
│ │ │ │ │ │ └── test_traversal.py
│ │ │ │ │ ├── csr.py
│ │ │ │ │ ├── data.py
│ │ │ │ │ ├── dia.py
│ │ │ │ │ ├── dok.py
│ │ │ │ │ ├── extract.py
│ │ │ │ │ ├── generate_sparsetools.py
│ │ │ │ │ ├── lil.py
│ │ │ │ │ ├── linalg
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── _expm_multiply.cpython-36.pyc
│ │ │ │ │ │ │ ├── _norm.cpython-36.pyc
│ │ │ │ │ │ │ ├── _onenormest.cpython-36.pyc
│ │ │ │ │ │ │ ├── interface.cpython-36.pyc
│ │ │ │ │ │ │ ├── matfuncs.cpython-36.pyc
│ │ │ │ │ │ │ └── setup.cpython-36.pyc
│ │ │ │ │ │ ├── _expm_multiply.py
│ │ │ │ │ │ ├── _norm.py
│ │ │ │ │ │ ├── _onenormest.py
│ │ │ │ │ │ ├── dsolve
│ │ │ │ │ │ │ ├── SuperLU
│ │ │ │ │ │ │ │ └── License.txt
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── _add_newdocs.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── linsolve.cpython-36.pyc
│ │ │ │ │ │ │ │ └── setup.cpython-36.pyc
│ │ │ │ │ │ │ ├── _add_newdocs.py
│ │ │ │ │ │ │ ├── _superlu.cp36-win_amd64.pyd
│ │ │ │ │ │ │ ├── linsolve.py
│ │ │ │ │ │ │ ├── setup.py
│ │ │ │ │ │ │ └── tests
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ │ └── test_linsolve.cpython-36.pyc
│ │ │ │ │ │ │ └── test_linsolve.py
│ │ │ │ │ │ ├── eigen
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ │ └── setup.cpython-36.pyc
│ │ │ │ │ │ │ ├── arpack
│ │ │ │ │ │ │ │ ├── ARPACK
│ │ │ │ │ │ │ │ │ └── COPYING
│ │ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ │ │ ├── arpack.cpython-36.pyc
│ │ │ │ │ │ │ │ │ └── setup.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── _arpack.cp36-win_amd64.pyd
│ │ │ │ │ │ │ │ ├── arpack.py
│ │ │ │ │ │ │ │ ├── setup.py
│ │ │ │ │ │ │ │ └── tests
│ │ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ │ │ └── test_arpack.cpython-36.pyc
│ │ │ │ │ │ │ │ └── test_arpack.py
│ │ │ │ │ │ │ ├── lobpcg
│ │ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ │ │ ├── lobpcg.cpython-36.pyc
│ │ │ │ │ │ │ │ │ └── setup.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── lobpcg.py
│ │ │ │ │ │ │ │ ├── setup.py
│ │ │ │ │ │ │ │ └── tests
│ │ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ │ │ └── test_lobpcg.cpython-36.pyc
│ │ │ │ │ │ │ │ └── test_lobpcg.py
│ │ │ │ │ │ │ └── setup.py
│ │ │ │ │ │ ├── interface.py
│ │ │ │ │ │ ├── isolve
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── _gcrotmk.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── iterative.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── lgmres.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── lsmr.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── lsqr.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── minres.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── setup.cpython-36.pyc
│ │ │ │ │ │ │ │ └── utils.cpython-36.pyc
│ │ │ │ │ │ │ ├── _gcrotmk.py
│ │ │ │ │ │ │ ├── _iterative.cp36-win_amd64.pyd
│ │ │ │ │ │ │ ├── iterative.py
│ │ │ │ │ │ │ ├── lgmres.py
│ │ │ │ │ │ │ ├── lsmr.py
│ │ │ │ │ │ │ ├── lsqr.py
│ │ │ │ │ │ │ ├── minres.py
│ │ │ │ │ │ │ ├── setup.py
│ │ │ │ │ │ │ ├── tests
│ │ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ │ │ ├── demo_lgmres.cpython-36.pyc
│ │ │ │ │ │ │ │ │ ├── test_gcrotmk.cpython-36.pyc
│ │ │ │ │ │ │ │ │ ├── test_iterative.cpython-36.pyc
│ │ │ │ │ │ │ │ │ ├── test_lgmres.cpython-36.pyc
│ │ │ │ │ │ │ │ │ ├── test_lsmr.cpython-36.pyc
│ │ │ │ │ │ │ │ │ ├── test_lsqr.cpython-36.pyc
│ │ │ │ │ │ │ │ │ ├── test_minres.cpython-36.pyc
│ │ │ │ │ │ │ │ │ └── test_utils.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── demo_lgmres.py
│ │ │ │ │ │ │ │ ├── test_gcrotmk.py
│ │ │ │ │ │ │ │ ├── test_iterative.py
│ │ │ │ │ │ │ │ ├── test_lgmres.py
│ │ │ │ │ │ │ │ ├── test_lsmr.py
│ │ │ │ │ │ │ │ ├── test_lsqr.py
│ │ │ │ │ │ │ │ ├── test_minres.py
│ │ │ │ │ │ │ │ └── test_utils.py
│ │ │ │ │ │ │ └── utils.py
│ │ │ │ │ │ ├── matfuncs.py
│ │ │ │ │ │ ├── setup.py
│ │ │ │ │ │ └── tests
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_expm_multiply.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_interface.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_matfuncs.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_norm.cpython-36.pyc
│ │ │ │ │ │ │ └── test_onenormest.cpython-36.pyc
│ │ │ │ │ │ ├── test_expm_multiply.py
│ │ │ │ │ │ ├── test_interface.py
│ │ │ │ │ │ ├── test_matfuncs.py
│ │ │ │ │ │ ├── test_norm.py
│ │ │ │ │ │ └── test_onenormest.py
│ │ │ │ │ ├── setup.py
│ │ │ │ │ ├── sparsetools.py
│ │ │ │ │ ├── spfuncs.py
│ │ │ │ │ ├── sputils.py
│ │ │ │ │ └── tests
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_base.cpython-36.pyc
│ │ │ │ │ │ ├── test_construct.cpython-36.pyc
│ │ │ │ │ │ ├── test_csc.cpython-36.pyc
│ │ │ │ │ │ ├── test_csr.cpython-36.pyc
│ │ │ │ │ │ ├── test_extract.cpython-36.pyc
│ │ │ │ │ │ ├── test_matrix_io.cpython-36.pyc
│ │ │ │ │ │ ├── test_sparsetools.cpython-36.pyc
│ │ │ │ │ │ ├── test_spfuncs.cpython-36.pyc
│ │ │ │ │ │ └── test_sputils.cpython-36.pyc
│ │ │ │ │ ├── data
│ │ │ │ │ │ ├── csc_py2.npz
│ │ │ │ │ │ └── csc_py3.npz
│ │ │ │ │ ├── test_base.py
│ │ │ │ │ ├── test_construct.py
│ │ │ │ │ ├── test_csc.py
│ │ │ │ │ ├── test_csr.py
│ │ │ │ │ ├── test_extract.py
│ │ │ │ │ ├── test_matrix_io.py
│ │ │ │ │ ├── test_sparsetools.py
│ │ │ │ │ ├── test_spfuncs.py
│ │ │ │ │ └── test_sputils.py
│ │ │ │ ├── spatial
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _plotutils.cpython-36.pyc
│ │ │ │ │ │ ├── _procrustes.cpython-36.pyc
│ │ │ │ │ │ ├── _spherical_voronoi.cpython-36.pyc
│ │ │ │ │ │ ├── distance.cpython-36.pyc
│ │ │ │ │ │ ├── kdtree.cpython-36.pyc
│ │ │ │ │ │ └── setup.cpython-36.pyc
│ │ │ │ │ ├── _distance_wrap.cp36-win_amd64.pyd
│ │ │ │ │ ├── _hausdorff.cp36-win_amd64.pyd
│ │ │ │ │ ├── _plotutils.py
│ │ │ │ │ ├── _procrustes.py
│ │ │ │ │ ├── _spherical_voronoi.py
│ │ │ │ │ ├── _voronoi.cp36-win_amd64.pyd
│ │ │ │ │ ├── ckdtree.cp36-win_amd64.pyd
│ │ │ │ │ ├── distance.py
│ │ │ │ │ ├── kdtree.py
│ │ │ │ │ ├── qhull
│ │ │ │ │ │ └── COPYING.txt
│ │ │ │ │ ├── qhull.cp36-win_amd64.pyd
│ │ │ │ │ ├── setup.py
│ │ │ │ │ └── tests
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test__plotutils.cpython-36.pyc
│ │ │ │ │ │ ├── test__procrustes.cpython-36.pyc
│ │ │ │ │ │ ├── test_distance.cpython-36.pyc
│ │ │ │ │ │ ├── test_hausdorff.cpython-36.pyc
│ │ │ │ │ │ ├── test_kdtree.cpython-36.pyc
│ │ │ │ │ │ ├── test_qhull.cpython-36.pyc
│ │ │ │ │ │ └── test_spherical_voronoi.cpython-36.pyc
│ │ │ │ │ ├── data
│ │ │ │ │ │ ├── cdist-X1.txt
│ │ │ │ │ │ ├── cdist-X2.txt
│ │ │ │ │ │ ├── degenerate_pointset.npz
│ │ │ │ │ │ ├── iris.txt
│ │ │ │ │ │ ├── pdist-boolean-inp.txt
│ │ │ │ │ │ ├── pdist-chebyshev-ml-iris.txt
│ │ │ │ │ │ ├── pdist-chebyshev-ml.txt
│ │ │ │ │ │ ├── pdist-cityblock-ml-iris.txt
│ │ │ │ │ │ ├── pdist-cityblock-ml.txt
│ │ │ │ │ │ ├── pdist-correlation-ml-iris.txt
│ │ │ │ │ │ ├── pdist-correlation-ml.txt
│ │ │ │ │ │ ├── pdist-cosine-ml-iris.txt
│ │ │ │ │ │ ├── pdist-cosine-ml.txt
│ │ │ │ │ │ ├── pdist-double-inp.txt
│ │ │ │ │ │ ├── pdist-euclidean-ml-iris.txt
│ │ │ │ │ │ ├── pdist-euclidean-ml.txt
│ │ │ │ │ │ ├── pdist-hamming-ml.txt
│ │ │ │ │ │ ├── pdist-jaccard-ml.txt
│ │ │ │ │ │ ├── pdist-minkowski-3.2-ml-iris.txt
│ │ │ │ │ │ ├── pdist-minkowski-3.2-ml.txt
│ │ │ │ │ │ ├── pdist-minkowski-5.8-ml-iris.txt
│ │ │ │ │ │ ├── pdist-seuclidean-ml-iris.txt
│ │ │ │ │ │ ├── pdist-seuclidean-ml.txt
│ │ │ │ │ │ ├── pdist-spearman-ml.txt
│ │ │ │ │ │ ├── random-bool-data.txt
│ │ │ │ │ │ ├── random-double-data.txt
│ │ │ │ │ │ ├── random-int-data.txt
│ │ │ │ │ │ ├── random-uint-data.txt
│ │ │ │ │ │ └── selfdual-4d-polytope.txt
│ │ │ │ │ ├── test__plotutils.py
│ │ │ │ │ ├── test__procrustes.py
│ │ │ │ │ ├── test_distance.py
│ │ │ │ │ ├── test_hausdorff.py
│ │ │ │ │ ├── test_kdtree.py
│ │ │ │ │ ├── test_qhull.py
│ │ │ │ │ └── test_spherical_voronoi.py
│ │ │ │ ├── special
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _ellip_harm.cpython-36.pyc
│ │ │ │ │ │ ├── _generate_pyx.cpython-36.pyc
│ │ │ │ │ │ ├── _logsumexp.cpython-36.pyc
│ │ │ │ │ │ ├── _mptestutils.cpython-36.pyc
│ │ │ │ │ │ ├── _spherical_bessel.cpython-36.pyc
│ │ │ │ │ │ ├── _testutils.cpython-36.pyc
│ │ │ │ │ │ ├── add_newdocs.cpython-36.pyc
│ │ │ │ │ │ ├── basic.cpython-36.pyc
│ │ │ │ │ │ ├── lambertw.cpython-36.pyc
│ │ │ │ │ │ ├── orthogonal.cpython-36.pyc
│ │ │ │ │ │ ├── setup.cpython-36.pyc
│ │ │ │ │ │ ├── sf_error.cpython-36.pyc
│ │ │ │ │ │ └── spfun_stats.cpython-36.pyc
│ │ │ │ │ ├── _comb.cp36-win_amd64.pyd
│ │ │ │ │ ├── _ellip_harm.py
│ │ │ │ │ ├── _ellip_harm_2.cp36-win_amd64.pyd
│ │ │ │ │ ├── _generate_pyx.py
│ │ │ │ │ ├── _logsumexp.py
│ │ │ │ │ ├── _mptestutils.py
│ │ │ │ │ ├── _precompute
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── expn_asy.cpython-36.pyc
│ │ │ │ │ │ │ ├── gammainc_asy.cpython-36.pyc
│ │ │ │ │ │ │ ├── gammainc_data.cpython-36.pyc
│ │ │ │ │ │ │ ├── lambertw.cpython-36.pyc
│ │ │ │ │ │ │ ├── loggamma.cpython-36.pyc
│ │ │ │ │ │ │ ├── setup.cpython-36.pyc
│ │ │ │ │ │ │ ├── struve_convergence.cpython-36.pyc
│ │ │ │ │ │ │ ├── utils.cpython-36.pyc
│ │ │ │ │ │ │ └── zetac.cpython-36.pyc
│ │ │ │ │ │ ├── expn_asy.py
│ │ │ │ │ │ ├── gammainc_asy.py
│ │ │ │ │ │ ├── gammainc_data.py
│ │ │ │ │ │ ├── lambertw.py
│ │ │ │ │ │ ├── loggamma.py
│ │ │ │ │ │ ├── setup.py
│ │ │ │ │ │ ├── struve_convergence.py
│ │ │ │ │ │ ├── utils.py
│ │ │ │ │ │ └── zetac.py
│ │ │ │ │ ├── _spherical_bessel.py
│ │ │ │ │ ├── _test_round.cp36-win_amd64.pyd
│ │ │ │ │ ├── _testutils.py
│ │ │ │ │ ├── _ufuncs.cp36-win_amd64.pyd
│ │ │ │ │ ├── _ufuncs_cxx.cp36-win_amd64.pyd
│ │ │ │ │ ├── add_newdocs.py
│ │ │ │ │ ├── basic.py
│ │ │ │ │ ├── cython_special.cp36-win_amd64.pyd
│ │ │ │ │ ├── cython_special.pxd
│ │ │ │ │ ├── lambertw.py
│ │ │ │ │ ├── orthogonal.py
│ │ │ │ │ ├── setup.py
│ │ │ │ │ ├── sf_error.py
│ │ │ │ │ ├── specfun.cp36-win_amd64.pyd
│ │ │ │ │ ├── spfun_stats.py
│ │ │ │ │ └── tests
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_basic.cpython-36.pyc
│ │ │ │ │ │ ├── test_boxcox.cpython-36.pyc
│ │ │ │ │ │ ├── test_cdflib.cpython-36.pyc
│ │ │ │ │ │ ├── test_cython_special.cpython-36.pyc
│ │ │ │ │ │ ├── test_data.cpython-36.pyc
│ │ │ │ │ │ ├── test_digamma.cpython-36.pyc
│ │ │ │ │ │ ├── test_ellip_harm.cpython-36.pyc
│ │ │ │ │ │ ├── test_gammainc.cpython-36.pyc
│ │ │ │ │ │ ├── test_kolmogorov.cpython-36.pyc
│ │ │ │ │ │ ├── test_lambertw.cpython-36.pyc
│ │ │ │ │ │ ├── test_loggamma.cpython-36.pyc
│ │ │ │ │ │ ├── test_logit.cpython-36.pyc
│ │ │ │ │ │ ├── test_logsumexp.cpython-36.pyc
│ │ │ │ │ │ ├── test_mpmath.cpython-36.pyc
│ │ │ │ │ │ ├── test_nan_inputs.cpython-36.pyc
│ │ │ │ │ │ ├── test_orthogonal.cpython-36.pyc
│ │ │ │ │ │ ├── test_orthogonal_eval.cpython-36.pyc
│ │ │ │ │ │ ├── test_owens_t.cpython-36.pyc
│ │ │ │ │ │ ├── test_pcf.cpython-36.pyc
│ │ │ │ │ │ ├── test_precompute_expn_asy.cpython-36.pyc
│ │ │ │ │ │ ├── test_precompute_gammainc.cpython-36.pyc
│ │ │ │ │ │ ├── test_precompute_utils.cpython-36.pyc
│ │ │ │ │ │ ├── test_round.cpython-36.pyc
│ │ │ │ │ │ ├── test_sf_error.cpython-36.pyc
│ │ │ │ │ │ ├── test_sici.cpython-36.pyc
│ │ │ │ │ │ ├── test_spence.cpython-36.pyc
│ │ │ │ │ │ ├── test_spfun_stats.cpython-36.pyc
│ │ │ │ │ │ ├── test_sph_harm.cpython-36.pyc
│ │ │ │ │ │ ├── test_spherical_bessel.cpython-36.pyc
│ │ │ │ │ │ ├── test_trig.cpython-36.pyc
│ │ │ │ │ │ ├── test_wrightomega.cpython-36.pyc
│ │ │ │ │ │ └── test_zeta.cpython-36.pyc
│ │ │ │ │ ├── data
│ │ │ │ │ │ ├── README
│ │ │ │ │ │ ├── boost.npz
│ │ │ │ │ │ ├── gsl.npz
│ │ │ │ │ │ └── local.npz
│ │ │ │ │ ├── test_basic.py
│ │ │ │ │ ├── test_boxcox.py
│ │ │ │ │ ├── test_cdflib.py
│ │ │ │ │ ├── test_cython_special.py
│ │ │ │ │ ├── test_data.py
│ │ │ │ │ ├── test_digamma.py
│ │ │ │ │ ├── test_ellip_harm.py
│ │ │ │ │ ├── test_gammainc.py
│ │ │ │ │ ├── test_kolmogorov.py
│ │ │ │ │ ├── test_lambertw.py
│ │ │ │ │ ├── test_loggamma.py
│ │ │ │ │ ├── test_logit.py
│ │ │ │ │ ├── test_logsumexp.py
│ │ │ │ │ ├── test_mpmath.py
│ │ │ │ │ ├── test_nan_inputs.py
│ │ │ │ │ ├── test_orthogonal.py
│ │ │ │ │ ├── test_orthogonal_eval.py
│ │ │ │ │ ├── test_owens_t.py
│ │ │ │ │ ├── test_pcf.py
│ │ │ │ │ ├── test_precompute_expn_asy.py
│ │ │ │ │ ├── test_precompute_gammainc.py
│ │ │ │ │ ├── test_precompute_utils.py
│ │ │ │ │ ├── test_round.py
│ │ │ │ │ ├── test_sf_error.py
│ │ │ │ │ ├── test_sici.py
│ │ │ │ │ ├── test_spence.py
│ │ │ │ │ ├── test_spfun_stats.py
│ │ │ │ │ ├── test_sph_harm.py
│ │ │ │ │ ├── test_spherical_bessel.py
│ │ │ │ │ ├── test_trig.py
│ │ │ │ │ ├── test_wrightomega.py
│ │ │ │ │ └── test_zeta.py
│ │ │ │ ├── special.pxd
│ │ │ │ ├── stats
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _binned_statistic.cpython-36.pyc
│ │ │ │ │ │ ├── _constants.cpython-36.pyc
│ │ │ │ │ │ ├── _continuous_distns.cpython-36.pyc
│ │ │ │ │ │ ├── _discrete_distns.cpython-36.pyc
│ │ │ │ │ │ ├── _distn_infrastructure.cpython-36.pyc
│ │ │ │ │ │ ├── _distr_params.cpython-36.pyc
│ │ │ │ │ │ ├── _multivariate.cpython-36.pyc
│ │ │ │ │ │ ├── _stats_mstats_common.cpython-36.pyc
│ │ │ │ │ │ ├── _tukeylambda_stats.cpython-36.pyc
│ │ │ │ │ │ ├── contingency.cpython-36.pyc
│ │ │ │ │ │ ├── distributions.cpython-36.pyc
│ │ │ │ │ │ ├── kde.cpython-36.pyc
│ │ │ │ │ │ ├── morestats.cpython-36.pyc
│ │ │ │ │ │ ├── mstats.cpython-36.pyc
│ │ │ │ │ │ ├── mstats_basic.cpython-36.pyc
│ │ │ │ │ │ ├── mstats_extras.cpython-36.pyc
│ │ │ │ │ │ ├── setup.cpython-36.pyc
│ │ │ │ │ │ ├── stats.cpython-36.pyc
│ │ │ │ │ │ └── vonmises.cpython-36.pyc
│ │ │ │ │ ├── _binned_statistic.py
│ │ │ │ │ ├── _constants.py
│ │ │ │ │ ├── _continuous_distns.py
│ │ │ │ │ ├── _discrete_distns.py
│ │ │ │ │ ├── _distn_infrastructure.py
│ │ │ │ │ ├── _distr_params.py
│ │ │ │ │ ├── _multivariate.py
│ │ │ │ │ ├── _stats.cp36-win_amd64.pyd
│ │ │ │ │ ├── _stats_mstats_common.py
│ │ │ │ │ ├── _tukeylambda_stats.py
│ │ │ │ │ ├── contingency.py
│ │ │ │ │ ├── distributions.py
│ │ │ │ │ ├── kde.py
│ │ │ │ │ ├── morestats.py
│ │ │ │ │ ├── mstats.py
│ │ │ │ │ ├── mstats_basic.py
│ │ │ │ │ ├── mstats_extras.py
│ │ │ │ │ ├── mvn.cp36-win_amd64.pyd
│ │ │ │ │ ├── setup.py
│ │ │ │ │ ├── statlib.cp36-win_amd64.pyd
│ │ │ │ │ ├── stats.py
│ │ │ │ │ ├── tests
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── common_tests.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_binned_statistic.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_contingency.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_continuous_basic.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_discrete_basic.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_discrete_distns.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_distributions.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_fit.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_kdeoth.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_morestats.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_mstats_basic.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_mstats_extras.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_multivariate.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_rank.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_stats.cpython-36.pyc
│ │ │ │ │ │ │ └── test_tukeylambda_stats.cpython-36.pyc
│ │ │ │ │ │ ├── common_tests.py
│ │ │ │ │ │ ├── data
│ │ │ │ │ │ │ ├── nist_anova
│ │ │ │ │ │ │ │ ├── AtmWtAg.dat
│ │ │ │ │ │ │ │ ├── SiRstv.dat
│ │ │ │ │ │ │ │ ├── SmLs01.dat
│ │ │ │ │ │ │ │ ├── SmLs02.dat
│ │ │ │ │ │ │ │ ├── SmLs03.dat
│ │ │ │ │ │ │ │ ├── SmLs04.dat
│ │ │ │ │ │ │ │ ├── SmLs05.dat
│ │ │ │ │ │ │ │ ├── SmLs06.dat
│ │ │ │ │ │ │ │ ├── SmLs07.dat
│ │ │ │ │ │ │ │ ├── SmLs08.dat
│ │ │ │ │ │ │ │ └── SmLs09.dat
│ │ │ │ │ │ │ └── nist_linregress
│ │ │ │ │ │ │ └── Norris.dat
│ │ │ │ │ │ ├── test_binned_statistic.py
│ │ │ │ │ │ ├── test_contingency.py
│ │ │ │ │ │ ├── test_continuous_basic.py
│ │ │ │ │ │ ├── test_discrete_basic.py
│ │ │ │ │ │ ├── test_discrete_distns.py
│ │ │ │ │ │ ├── test_distributions.py
│ │ │ │ │ │ ├── test_fit.py
│ │ │ │ │ │ ├── test_kdeoth.py
│ │ │ │ │ │ ├── test_morestats.py
│ │ │ │ │ │ ├── test_mstats_basic.py
│ │ │ │ │ │ ├── test_mstats_extras.py
│ │ │ │ │ │ ├── test_multivariate.py
│ │ │ │ │ │ ├── test_rank.py
│ │ │ │ │ │ ├── test_stats.py
│ │ │ │ │ │ └── test_tukeylambda_stats.py
│ │ │ │ │ └── vonmises.py
│ │ │ │ └── version.py
│ │ │ ├── scipy-1.1.0.dist-info
│ │ │ │ ├── DESCRIPTION.rst
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── WHEEL
│ │ │ │ ├── metadata.json
│ │ │ │ └── top_level.txt
│ │ │ ├── selenium
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ ├── common
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ └── exceptions.cpython-36.pyc
│ │ │ │ │ └── exceptions.py
│ │ │ │ └── webdriver
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ ├── android
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ └── webdriver.cpython-36.pyc
│ │ │ │ │ └── webdriver.py
│ │ │ │ ├── blackberry
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ └── webdriver.cpython-36.pyc
│ │ │ │ │ └── webdriver.py
│ │ │ │ ├── chrome
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── options.cpython-36.pyc
│ │ │ │ │ │ ├── remote_connection.cpython-36.pyc
│ │ │ │ │ │ ├── service.cpython-36.pyc
│ │ │ │ │ │ └── webdriver.cpython-36.pyc
│ │ │ │ │ ├── options.py
│ │ │ │ │ ├── remote_connection.py
│ │ │ │ │ ├── service.py
│ │ │ │ │ └── webdriver.py
│ │ │ │ ├── common
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── action_chains.cpython-36.pyc
│ │ │ │ │ │ ├── alert.cpython-36.pyc
│ │ │ │ │ │ ├── by.cpython-36.pyc
│ │ │ │ │ │ ├── desired_capabilities.cpython-36.pyc
│ │ │ │ │ │ ├── keys.cpython-36.pyc
│ │ │ │ │ │ ├── proxy.cpython-36.pyc
│ │ │ │ │ │ ├── service.cpython-36.pyc
│ │ │ │ │ │ ├── touch_actions.cpython-36.pyc
│ │ │ │ │ │ └── utils.cpython-36.pyc
│ │ │ │ │ ├── action_chains.py
│ │ │ │ │ ├── actions
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── action_builder.cpython-36.pyc
│ │ │ │ │ │ │ ├── input_device.cpython-36.pyc
│ │ │ │ │ │ │ ├── interaction.cpython-36.pyc
│ │ │ │ │ │ │ ├── key_actions.cpython-36.pyc
│ │ │ │ │ │ │ ├── key_input.cpython-36.pyc
│ │ │ │ │ │ │ ├── mouse_button.cpython-36.pyc
│ │ │ │ │ │ │ ├── pointer_actions.cpython-36.pyc
│ │ │ │ │ │ │ └── pointer_input.cpython-36.pyc
│ │ │ │ │ │ ├── action_builder.py
│ │ │ │ │ │ ├── input_device.py
│ │ │ │ │ │ ├── interaction.py
│ │ │ │ │ │ ├── key_actions.py
│ │ │ │ │ │ ├── key_input.py
│ │ │ │ │ │ ├── mouse_button.py
│ │ │ │ │ │ ├── pointer_actions.py
│ │ │ │ │ │ └── pointer_input.py
│ │ │ │ │ ├── alert.py
│ │ │ │ │ ├── by.py
│ │ │ │ │ ├── desired_capabilities.py
│ │ │ │ │ ├── html5
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ └── application_cache.cpython-36.pyc
│ │ │ │ │ │ └── application_cache.py
│ │ │ │ │ ├── keys.py
│ │ │ │ │ ├── proxy.py
│ │ │ │ │ ├── service.py
│ │ │ │ │ ├── touch_actions.py
│ │ │ │ │ └── utils.py
│ │ │ │ ├── edge
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── options.cpython-36.pyc
│ │ │ │ │ │ ├── service.cpython-36.pyc
│ │ │ │ │ │ └── webdriver.cpython-36.pyc
│ │ │ │ │ ├── options.py
│ │ │ │ │ ├── service.py
│ │ │ │ │ └── webdriver.py
│ │ │ │ ├── firefox
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── extension_connection.cpython-36.pyc
│ │ │ │ │ │ ├── firefox_binary.cpython-36.pyc
│ │ │ │ │ │ ├── firefox_profile.cpython-36.pyc
│ │ │ │ │ │ ├── options.cpython-36.pyc
│ │ │ │ │ │ ├── remote_connection.cpython-36.pyc
│ │ │ │ │ │ ├── service.cpython-36.pyc
│ │ │ │ │ │ ├── webdriver.cpython-36.pyc
│ │ │ │ │ │ └── webelement.cpython-36.pyc
│ │ │ │ │ ├── amd64
│ │ │ │ │ │ └── x_ignore_nofocus.so
│ │ │ │ │ ├── extension_connection.py
│ │ │ │ │ ├── firefox_binary.py
│ │ │ │ │ ├── firefox_profile.py
│ │ │ │ │ ├── options.py
│ │ │ │ │ ├── remote_connection.py
│ │ │ │ │ ├── service.py
│ │ │ │ │ ├── webdriver.py
│ │ │ │ │ ├── webdriver.xpi
│ │ │ │ │ ├── webdriver_prefs.json
│ │ │ │ │ ├── webelement.py
│ │ │ │ │ └── x86
│ │ │ │ │ └── x_ignore_nofocus.so
│ │ │ │ ├── ie
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── options.cpython-36.pyc
│ │ │ │ │ │ ├── service.cpython-36.pyc
│ │ │ │ │ │ └── webdriver.cpython-36.pyc
│ │ │ │ │ ├── options.py
│ │ │ │ │ ├── service.py
│ │ │ │ │ └── webdriver.py
│ │ │ │ ├── opera
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── options.cpython-36.pyc
│ │ │ │ │ │ └── webdriver.cpython-36.pyc
│ │ │ │ │ ├── options.py
│ │ │ │ │ └── webdriver.py
│ │ │ │ ├── phantomjs
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── service.cpython-36.pyc
│ │ │ │ │ │ └── webdriver.cpython-36.pyc
│ │ │ │ │ ├── service.py
│ │ │ │ │ └── webdriver.py
│ │ │ │ ├── remote
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── command.cpython-36.pyc
│ │ │ │ │ │ ├── errorhandler.cpython-36.pyc
│ │ │ │ │ │ ├── file_detector.cpython-36.pyc
│ │ │ │ │ │ ├── mobile.cpython-36.pyc
│ │ │ │ │ │ ├── remote_connection.cpython-36.pyc
│ │ │ │ │ │ ├── switch_to.cpython-36.pyc
│ │ │ │ │ │ ├── utils.cpython-36.pyc
│ │ │ │ │ │ ├── webdriver.cpython-36.pyc
│ │ │ │ │ │ └── webelement.cpython-36.pyc
│ │ │ │ │ ├── command.py
│ │ │ │ │ ├── errorhandler.py
│ │ │ │ │ ├── file_detector.py
│ │ │ │ │ ├── getAttribute.js
│ │ │ │ │ ├── isDisplayed.js
│ │ │ │ │ ├── mobile.py
│ │ │ │ │ ├── remote_connection.py
│ │ │ │ │ ├── switch_to.py
│ │ │ │ │ ├── utils.py
│ │ │ │ │ ├── webdriver.py
│ │ │ │ │ └── webelement.py
│ │ │ │ ├── safari
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── permissions.cpython-36.pyc
│ │ │ │ │ │ ├── remote_connection.cpython-36.pyc
│ │ │ │ │ │ ├── service.cpython-36.pyc
│ │ │ │ │ │ └── webdriver.cpython-36.pyc
│ │ │ │ │ ├── permissions.py
│ │ │ │ │ ├── remote_connection.py
│ │ │ │ │ ├── service.py
│ │ │ │ │ └── webdriver.py
│ │ │ │ ├── support
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── abstract_event_listener.cpython-36.pyc
│ │ │ │ │ │ ├── color.cpython-36.pyc
│ │ │ │ │ │ ├── event_firing_webdriver.cpython-36.pyc
│ │ │ │ │ │ ├── events.cpython-36.pyc
│ │ │ │ │ │ ├── expected_conditions.cpython-36.pyc
│ │ │ │ │ │ ├── select.cpython-36.pyc
│ │ │ │ │ │ ├── ui.cpython-36.pyc
│ │ │ │ │ │ └── wait.cpython-36.pyc
│ │ │ │ │ ├── abstract_event_listener.py
│ │ │ │ │ ├── color.py
│ │ │ │ │ ├── event_firing_webdriver.py
│ │ │ │ │ ├── events.py
│ │ │ │ │ ├── expected_conditions.py
│ │ │ │ │ ├── select.py
│ │ │ │ │ ├── ui.py
│ │ │ │ │ └── wait.py
│ │ │ │ └── webkitgtk
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── options.cpython-36.pyc
│ │ │ │ │ ├── service.cpython-36.pyc
│ │ │ │ │ └── webdriver.cpython-36.pyc
│ │ │ │ ├── options.py
│ │ │ │ ├── service.py
│ │ │ │ └── webdriver.py
│ │ │ ├── selenium-3.141.0.dist-info
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── LICENSE
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── WHEEL
│ │ │ │ └── top_level.txt
│ │ │ ├── setuptools
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── archive_util.cpython-36.pyc
│ │ │ │ │ ├── build_meta.cpython-36.pyc
│ │ │ │ │ ├── config.cpython-36.pyc
│ │ │ │ │ ├── dep_util.cpython-36.pyc
│ │ │ │ │ ├── depends.cpython-36.pyc
│ │ │ │ │ ├── dist.cpython-36.pyc
│ │ │ │ │ ├── extension.cpython-36.pyc
│ │ │ │ │ ├── glibc.cpython-36.pyc
│ │ │ │ │ ├── glob.cpython-36.pyc
│ │ │ │ │ ├── launch.cpython-36.pyc
│ │ │ │ │ ├── lib2to3_ex.cpython-36.pyc
│ │ │ │ │ ├── monkey.cpython-36.pyc
│ │ │ │ │ ├── msvc.cpython-36.pyc
│ │ │ │ │ ├── namespaces.cpython-36.pyc
│ │ │ │ │ ├── package_index.cpython-36.pyc
│ │ │ │ │ ├── pep425tags.cpython-36.pyc
│ │ │ │ │ ├── py27compat.cpython-36.pyc
│ │ │ │ │ ├── py31compat.cpython-36.pyc
│ │ │ │ │ ├── py33compat.cpython-36.pyc
│ │ │ │ │ ├── py36compat.cpython-36.pyc
│ │ │ │ │ ├── sandbox.cpython-36.pyc
│ │ │ │ │ ├── site-patch.cpython-36.pyc
│ │ │ │ │ ├── ssl_support.cpython-36.pyc
│ │ │ │ │ ├── unicode_utils.cpython-36.pyc
│ │ │ │ │ ├── version.cpython-36.pyc
│ │ │ │ │ ├── wheel.cpython-36.pyc
│ │ │ │ │ └── windows_support.cpython-36.pyc
│ │ │ │ ├── _vendor
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── pyparsing.cpython-36.pyc
│ │ │ │ │ │ └── six.cpython-36.pyc
│ │ │ │ │ ├── packaging
│ │ │ │ │ │ ├── __about__.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __about__.cpython-36.pyc
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── _compat.cpython-36.pyc
│ │ │ │ │ │ │ ├── _structures.cpython-36.pyc
│ │ │ │ │ │ │ ├── markers.cpython-36.pyc
│ │ │ │ │ │ │ ├── requirements.cpython-36.pyc
│ │ │ │ │ │ │ ├── specifiers.cpython-36.pyc
│ │ │ │ │ │ │ ├── utils.cpython-36.pyc
│ │ │ │ │ │ │ └── version.cpython-36.pyc
│ │ │ │ │ │ ├── _compat.py
│ │ │ │ │ │ ├── _structures.py
│ │ │ │ │ │ ├── markers.py
│ │ │ │ │ │ ├── requirements.py
│ │ │ │ │ │ ├── specifiers.py
│ │ │ │ │ │ ├── utils.py
│ │ │ │ │ │ └── version.py
│ │ │ │ │ ├── pyparsing.py
│ │ │ │ │ └── six.py
│ │ │ │ ├── archive_util.py
│ │ │ │ ├── build_meta.py
│ │ │ │ ├── cli-32.exe
│ │ │ │ ├── cli-64.exe
│ │ │ │ ├── cli.exe
│ │ │ │ ├── command
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── alias.cpython-36.pyc
│ │ │ │ │ │ ├── bdist_egg.cpython-36.pyc
│ │ │ │ │ │ ├── bdist_rpm.cpython-36.pyc
│ │ │ │ │ │ ├── bdist_wininst.cpython-36.pyc
│ │ │ │ │ │ ├── build_clib.cpython-36.pyc
│ │ │ │ │ │ ├── build_ext.cpython-36.pyc
│ │ │ │ │ │ ├── build_py.cpython-36.pyc
│ │ │ │ │ │ ├── develop.cpython-36.pyc
│ │ │ │ │ │ ├── dist_info.cpython-36.pyc
│ │ │ │ │ │ ├── easy_install.cpython-36.pyc
│ │ │ │ │ │ ├── egg_info.cpython-36.pyc
│ │ │ │ │ │ ├── install.cpython-36.pyc
│ │ │ │ │ │ ├── install_egg_info.cpython-36.pyc
│ │ │ │ │ │ ├── install_lib.cpython-36.pyc
│ │ │ │ │ │ ├── install_scripts.cpython-36.pyc
│ │ │ │ │ │ ├── py36compat.cpython-36.pyc
│ │ │ │ │ │ ├── register.cpython-36.pyc
│ │ │ │ │ │ ├── rotate.cpython-36.pyc
│ │ │ │ │ │ ├── saveopts.cpython-36.pyc
│ │ │ │ │ │ ├── sdist.cpython-36.pyc
│ │ │ │ │ │ ├── setopt.cpython-36.pyc
│ │ │ │ │ │ ├── test.cpython-36.pyc
│ │ │ │ │ │ ├── upload.cpython-36.pyc
│ │ │ │ │ │ └── upload_docs.cpython-36.pyc
│ │ │ │ │ ├── alias.py
│ │ │ │ │ ├── bdist_egg.py
│ │ │ │ │ ├── bdist_rpm.py
│ │ │ │ │ ├── bdist_wininst.py
│ │ │ │ │ ├── build_clib.py
│ │ │ │ │ ├── build_ext.py
│ │ │ │ │ ├── build_py.py
│ │ │ │ │ ├── develop.py
│ │ │ │ │ ├── dist_info.py
│ │ │ │ │ ├── easy_install.py
│ │ │ │ │ ├── egg_info.py
│ │ │ │ │ ├── install.py
│ │ │ │ │ ├── install_egg_info.py
│ │ │ │ │ ├── install_lib.py
│ │ │ │ │ ├── install_scripts.py
│ │ │ │ │ ├── launcher manifest.xml
│ │ │ │ │ ├── py36compat.py
│ │ │ │ │ ├── register.py
│ │ │ │ │ ├── rotate.py
│ │ │ │ │ ├── saveopts.py
│ │ │ │ │ ├── sdist.py
│ │ │ │ │ ├── setopt.py
│ │ │ │ │ ├── test.py
│ │ │ │ │ ├── upload.py
│ │ │ │ │ └── upload_docs.py
│ │ │ │ ├── config.py
│ │ │ │ ├── dep_util.py
│ │ │ │ ├── depends.py
│ │ │ │ ├── dist.py
│ │ │ │ ├── extension.py
│ │ │ │ ├── extern
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── __pycache__
│ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ ├── glibc.py
│ │ │ │ ├── glob.py
│ │ │ │ ├── gui-32.exe
│ │ │ │ ├── gui-64.exe
│ │ │ │ ├── gui.exe
│ │ │ │ ├── launch.py
│ │ │ │ ├── lib2to3_ex.py
│ │ │ │ ├── monkey.py
│ │ │ │ ├── msvc.py
│ │ │ │ ├── namespaces.py
│ │ │ │ ├── package_index.py
│ │ │ │ ├── pep425tags.py
│ │ │ │ ├── py27compat.py
│ │ │ │ ├── py31compat.py
│ │ │ │ ├── py33compat.py
│ │ │ │ ├── py36compat.py
│ │ │ │ ├── sandbox.py
│ │ │ │ ├── script (dev).tmpl
│ │ │ │ ├── script.tmpl
│ │ │ │ ├── site-patch.py
│ │ │ │ ├── ssl_support.py
│ │ │ │ ├── unicode_utils.py
│ │ │ │ ├── version.py
│ │ │ │ ├── wheel.py
│ │ │ │ └── windows_support.py
│ │ │ ├── setuptools-40.5.0.dist-info
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── LICENSE
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── WHEEL
│ │ │ │ ├── dependency_links.txt
│ │ │ │ ├── entry_points.txt
│ │ │ │ ├── top_level.txt
│ │ │ │ └── zip-safe
│ │ │ ├── six-1.11.0.dist-info
│ │ │ │ ├── DESCRIPTION.rst
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── WHEEL
│ │ │ │ ├── metadata.json
│ │ │ │ └── top_level.txt
│ │ │ ├── six.py
│ │ │ ├── urllib3
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── _collections.cpython-36.pyc
│ │ │ │ │ ├── connection.cpython-36.pyc
│ │ │ │ │ ├── connectionpool.cpython-36.pyc
│ │ │ │ │ ├── exceptions.cpython-36.pyc
│ │ │ │ │ ├── fields.cpython-36.pyc
│ │ │ │ │ ├── filepost.cpython-36.pyc
│ │ │ │ │ ├── poolmanager.cpython-36.pyc
│ │ │ │ │ ├── request.cpython-36.pyc
│ │ │ │ │ └── response.cpython-36.pyc
│ │ │ │ ├── _collections.py
│ │ │ │ ├── connection.py
│ │ │ │ ├── connectionpool.py
│ │ │ │ ├── contrib
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _appengine_environ.cpython-36.pyc
│ │ │ │ │ │ ├── appengine.cpython-36.pyc
│ │ │ │ │ │ ├── ntlmpool.cpython-36.pyc
│ │ │ │ │ │ ├── pyopenssl.cpython-36.pyc
│ │ │ │ │ │ ├── securetransport.cpython-36.pyc
│ │ │ │ │ │ └── socks.cpython-36.pyc
│ │ │ │ │ ├── _appengine_environ.py
│ │ │ │ │ ├── _securetransport
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── bindings.cpython-36.pyc
│ │ │ │ │ │ │ └── low_level.cpython-36.pyc
│ │ │ │ │ │ ├── bindings.py
│ │ │ │ │ │ └── low_level.py
│ │ │ │ │ ├── appengine.py
│ │ │ │ │ ├── ntlmpool.py
│ │ │ │ │ ├── pyopenssl.py
│ │ │ │ │ ├── securetransport.py
│ │ │ │ │ └── socks.py
│ │ │ │ ├── exceptions.py
│ │ │ │ ├── fields.py
│ │ │ │ ├── filepost.py
│ │ │ │ ├── packages
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ └── six.cpython-36.pyc
│ │ │ │ │ ├── backports
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ └── makefile.cpython-36.pyc
│ │ │ │ │ │ └── makefile.py
│ │ │ │ │ ├── six.py
│ │ │ │ │ └── ssl_match_hostname
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ └── _implementation.cpython-36.pyc
│ │ │ │ │ └── _implementation.py
│ │ │ │ ├── poolmanager.py
│ │ │ │ ├── request.py
│ │ │ │ ├── response.py
│ │ │ │ └── util
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── connection.cpython-36.pyc
│ │ │ │ │ ├── queue.cpython-36.pyc
│ │ │ │ │ ├── request.cpython-36.pyc
│ │ │ │ │ ├── response.cpython-36.pyc
│ │ │ │ │ ├── retry.cpython-36.pyc
│ │ │ │ │ ├── ssl_.cpython-36.pyc
│ │ │ │ │ ├── timeout.cpython-36.pyc
│ │ │ │ │ ├── url.cpython-36.pyc
│ │ │ │ │ └── wait.cpython-36.pyc
│ │ │ │ ├── connection.py
│ │ │ │ ├── queue.py
│ │ │ │ ├── request.py
│ │ │ │ ├── response.py
│ │ │ │ ├── retry.py
│ │ │ │ ├── ssl_.py
│ │ │ │ ├── timeout.py
│ │ │ │ ├── url.py
│ │ │ │ └── wait.py
│ │ │ ├── urllib3-1.24.1.dist-info
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── WHEEL
│ │ │ │ └── top_level.txt
│ │ │ ├── wheel
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __main__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── __main__.cpython-36.pyc
│ │ │ │ │ ├── bdist_wheel.cpython-36.pyc
│ │ │ │ │ ├── metadata.cpython-36.pyc
│ │ │ │ │ ├── pep425tags.cpython-36.pyc
│ │ │ │ │ ├── pkginfo.cpython-36.pyc
│ │ │ │ │ ├── util.cpython-36.pyc
│ │ │ │ │ └── wheelfile.cpython-36.pyc
│ │ │ │ ├── bdist_wheel.py
│ │ │ │ ├── cli
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── convert.cpython-36.pyc
│ │ │ │ │ │ ├── install.cpython-36.pyc
│ │ │ │ │ │ ├── pack.cpython-36.pyc
│ │ │ │ │ │ └── unpack.cpython-36.pyc
│ │ │ │ │ ├── convert.py
│ │ │ │ │ ├── install.py
│ │ │ │ │ ├── pack.py
│ │ │ │ │ └── unpack.py
│ │ │ │ ├── metadata.py
│ │ │ │ ├── pep425tags.py
│ │ │ │ ├── pkginfo.py
│ │ │ │ ├── util.py
│ │ │ │ └── wheelfile.py
│ │ │ ├── wheel-0.32.2.dist-info
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── METADATA
│ │ │ │ ├── RECORD
│ │ │ │ ├── WHEEL
│ │ │ │ ├── entry_points.txt
│ │ │ │ └── top_level.txt
│ │ │ ├── wordcloud
│ │ │ │ ├── DroidSansMono.ttf
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __main__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── __main__.cpython-36.pyc
│ │ │ │ │ ├── _version.cpython-36.pyc
│ │ │ │ │ ├── color_from_image.cpython-36.pyc
│ │ │ │ │ ├── tokenization.cpython-36.pyc
│ │ │ │ │ ├── wordcloud.cpython-36.pyc
│ │ │ │ │ └── wordcloud_cli.cpython-36.pyc
│ │ │ │ ├── _version.py
│ │ │ │ ├── color_from_image.py
│ │ │ │ ├── query_integral_image.cp36-win_amd64.pyd
│ │ │ │ ├── stopwords
│ │ │ │ ├── tokenization.py
│ │ │ │ ├── wordcloud.py
│ │ │ │ └── wordcloud_cli.py
│ │ │ └── wordcloud-1.5.0.dist-info
│ │ │ ├── INSTALLER
│ │ │ ├── METADATA
│ │ │ ├── RECORD
│ │ │ ├── WHEEL
│ │ │ ├── entry_points.txt
│ │ │ └── top_level.txt
│ │ ├── site.py
│ │ ├── sre_compile.py
│ │ ├── sre_constants.py
│ │ ├── sre_parse.py
│ │ ├── stat.py
│ │ ├── struct.py
│ │ ├── tarfile.py
│ │ ├── tempfile.py
│ │ ├── token.py
│ │ ├── tokenize.py
│ │ ├── types.py
│ │ ├── warnings.py
│ │ └── weakref.py
│ ├── Scripts
│ │ ├── __pycache__
│ │ │ └── f2py.cpython-36.pyc
│ │ ├── activate
│ │ ├── activate.bat
│ │ ├── activate.ps1
│ │ ├── activate_this.py
│ │ ├── chardetect.exe
│ │ ├── chromedriver.exe
│ │ ├── deactivate.bat
│ │ ├── easy_install-3.6.exe
│ │ ├── easy_install.exe
│ │ ├── f2py.py
│ │ ├── pip.exe
│ │ ├── pip3.6.exe
│ │ ├── pip3.exe
│ │ ├── python.exe
│ │ ├── python36.dll
│ │ ├── pythonw.exe
│ │ ├── wheel.exe
│ │ └── wordcloud_cli.exe
│ ├── pip-selfcheck.json
│ └── tcl
│ ├── tcl8.6
│ │ ├── auto.tcl
│ │ ├── clock.tcl
│ │ ├── encoding
│ │ │ ├── ascii.enc
│ │ │ ├── big5.enc
│ │ │ ├── cp1250.enc
│ │ │ ├── cp1251.enc
│ │ │ ├── cp1252.enc
│ │ │ ├── cp1253.enc
│ │ │ ├── cp1254.enc
│ │ │ ├── cp1255.enc
│ │ │ ├── cp1256.enc
│ │ │ ├── cp1257.enc
│ │ │ ├── cp1258.enc
│ │ │ ├── cp437.enc
│ │ │ ├── cp737.enc
│ │ │ ├── cp775.enc
│ │ │ ├── cp850.enc
│ │ │ ├── cp852.enc
│ │ │ ├── cp855.enc
│ │ │ ├── cp857.enc
│ │ │ ├── cp860.enc
│ │ │ ├── cp861.enc
│ │ │ ├── cp862.enc
│ │ │ ├── cp863.enc
│ │ │ ├── cp864.enc
│ │ │ ├── cp865.enc
│ │ │ ├── cp866.enc
│ │ │ ├── cp869.enc
│ │ │ ├── cp874.enc
│ │ │ ├── cp932.enc
│ │ │ ├── cp936.enc
│ │ │ ├── cp949.enc
│ │ │ ├── cp950.enc
│ │ │ ├── dingbats.enc
│ │ │ ├── ebcdic.enc
│ │ │ ├── euc-cn.enc
│ │ │ ├── euc-jp.enc
│ │ │ ├── euc-kr.enc
│ │ │ ├── gb12345.enc
│ │ │ ├── gb1988.enc
│ │ │ ├── gb2312-raw.enc
│ │ │ ├── gb2312.enc
│ │ │ ├── iso2022-jp.enc
│ │ │ ├── iso2022-kr.enc
│ │ │ ├── iso2022.enc
│ │ │ ├── iso8859-1.enc
│ │ │ ├── iso8859-10.enc
│ │ │ ├── iso8859-13.enc
│ │ │ ├── iso8859-14.enc
│ │ │ ├── iso8859-15.enc
│ │ │ ├── iso8859-16.enc
│ │ │ ├── iso8859-2.enc
│ │ │ ├── iso8859-3.enc
│ │ │ ├── iso8859-4.enc
│ │ │ ├── iso8859-5.enc
│ │ │ ├── iso8859-6.enc
│ │ │ ├── iso8859-7.enc
│ │ │ ├── iso8859-8.enc
│ │ │ ├── iso8859-9.enc
│ │ │ ├── jis0201.enc
│ │ │ ├── jis0208.enc
│ │ │ ├── jis0212.enc
│ │ │ ├── koi8-r.enc
│ │ │ ├── koi8-u.enc
│ │ │ ├── ksc5601.enc
│ │ │ ├── macCentEuro.enc
│ │ │ ├── macCroatian.enc
│ │ │ ├── macCyrillic.enc
│ │ │ ├── macDingbats.enc
│ │ │ ├── macGreek.enc
│ │ │ ├── macIceland.enc
│ │ │ ├── macJapan.enc
│ │ │ ├── macRoman.enc
│ │ │ ├── macRomania.enc
│ │ │ ├── macThai.enc
│ │ │ ├── macTurkish.enc
│ │ │ ├── macUkraine.enc
│ │ │ ├── shiftjis.enc
│ │ │ ├── symbol.enc
│ │ │ └── tis-620.enc
│ │ ├── history.tcl
│ │ ├── http1.0
│ │ │ ├── http.tcl
│ │ │ └── pkgIndex.tcl
│ │ ├── init.tcl
│ │ ├── msgs
│ │ │ ├── af.msg
│ │ │ ├── af_za.msg
│ │ │ ├── ar.msg
│ │ │ ├── ar_in.msg
│ │ │ ├── ar_jo.msg
│ │ │ ├── ar_lb.msg
│ │ │ ├── ar_sy.msg
│ │ │ ├── be.msg
│ │ │ ├── bg.msg
│ │ │ ├── bn.msg
│ │ │ ├── bn_in.msg
│ │ │ ├── ca.msg
│ │ │ ├── cs.msg
│ │ │ ├── da.msg
│ │ │ ├── de.msg
│ │ │ ├── de_at.msg
│ │ │ ├── de_be.msg
│ │ │ ├── el.msg
│ │ │ ├── en_au.msg
│ │ │ ├── en_be.msg
│ │ │ ├── en_bw.msg
│ │ │ ├── en_ca.msg
│ │ │ ├── en_gb.msg
│ │ │ ├── en_hk.msg
│ │ │ ├── en_ie.msg
│ │ │ ├── en_in.msg
│ │ │ ├── en_nz.msg
│ │ │ ├── en_ph.msg
│ │ │ ├── en_sg.msg
│ │ │ ├── en_za.msg
│ │ │ ├── en_zw.msg
│ │ │ ├── eo.msg
│ │ │ ├── es.msg
│ │ │ ├── es_ar.msg
│ │ │ ├── es_bo.msg
│ │ │ ├── es_cl.msg
│ │ │ ├── es_co.msg
│ │ │ ├── es_cr.msg
│ │ │ ├── es_do.msg
│ │ │ ├── es_ec.msg
│ │ │ ├── es_gt.msg
│ │ │ ├── es_hn.msg
│ │ │ ├── es_mx.msg
│ │ │ ├── es_ni.msg
│ │ │ ├── es_pa.msg
│ │ │ ├── es_pe.msg
│ │ │ ├── es_pr.msg
│ │ │ ├── es_py.msg
│ │ │ ├── es_sv.msg
│ │ │ ├── es_uy.msg
│ │ │ ├── es_ve.msg
│ │ │ ├── et.msg
│ │ │ ├── eu.msg
│ │ │ ├── eu_es.msg
│ │ │ ├── fa.msg
│ │ │ ├── fa_in.msg
│ │ │ ├── fa_ir.msg
│ │ │ ├── fi.msg
│ │ │ ├── fo.msg
│ │ │ ├── fo_fo.msg
│ │ │ ├── fr.msg
│ │ │ ├── fr_be.msg
│ │ │ ├── fr_ca.msg
│ │ │ ├── fr_ch.msg
│ │ │ ├── ga.msg
│ │ │ ├── ga_ie.msg
│ │ │ ├── gl.msg
│ │ │ ├── gl_es.msg
│ │ │ ├── gv.msg
│ │ │ ├── gv_gb.msg
│ │ │ ├── he.msg
│ │ │ ├── hi.msg
│ │ │ ├── hi_in.msg
│ │ │ ├── hr.msg
│ │ │ ├── hu.msg
│ │ │ ├── id.msg
│ │ │ ├── id_id.msg
│ │ │ ├── is.msg
│ │ │ ├── it.msg
│ │ │ ├── it_ch.msg
│ │ │ ├── ja.msg
│ │ │ ├── kl.msg
│ │ │ ├── kl_gl.msg
│ │ │ ├── ko.msg
│ │ │ ├── ko_kr.msg
│ │ │ ├── kok.msg
│ │ │ ├── kok_in.msg
│ │ │ ├── kw.msg
│ │ │ ├── kw_gb.msg
│ │ │ ├── lt.msg
│ │ │ ├── lv.msg
│ │ │ ├── mk.msg
│ │ │ ├── mr.msg
│ │ │ ├── mr_in.msg
│ │ │ ├── ms.msg
│ │ │ ├── ms_my.msg
│ │ │ ├── mt.msg
│ │ │ ├── nb.msg
│ │ │ ├── nl.msg
│ │ │ ├── nl_be.msg
│ │ │ ├── nn.msg
│ │ │ ├── pl.msg
│ │ │ ├── pt.msg
│ │ │ ├── pt_br.msg
│ │ │ ├── ro.msg
│ │ │ ├── ru.msg
│ │ │ ├── ru_ua.msg
│ │ │ ├── sh.msg
│ │ │ ├── sk.msg
│ │ │ ├── sl.msg
│ │ │ ├── sq.msg
│ │ │ ├── sr.msg
│ │ │ ├── sv.msg
│ │ │ ├── sw.msg
│ │ │ ├── ta.msg
│ │ │ ├── ta_in.msg
│ │ │ ├── te.msg
│ │ │ ├── te_in.msg
│ │ │ ├── th.msg
│ │ │ ├── tr.msg
│ │ │ ├── uk.msg
│ │ │ ├── vi.msg
│ │ │ ├── zh.msg
│ │ │ ├── zh_cn.msg
│ │ │ ├── zh_hk.msg
│ │ │ ├── zh_sg.msg
│ │ │ └── zh_tw.msg
│ │ ├── opt0.4
│ │ │ ├── optparse.tcl
│ │ │ └── pkgIndex.tcl
│ │ ├── package.tcl
│ │ ├── parray.tcl
│ │ ├── safe.tcl
│ │ ├── tclIndex
│ │ ├── tm.tcl
│ │ ├── tzdata
│ │ │ ├── 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_Nelson
│ │ │ │ ├── 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
│ │ │ │ ├── Barnaul
│ │ │ │ ├── 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
│ │ │ │ ├── Tomsk
│ │ │ │ ├── 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
│ │ │ │ ├── Astrakhan
│ │ │ │ ├── Athens
│ │ │ │ ├── Belfast
│ │ │ │ ├── Belgrade
│ │ │ │ ├── Berlin
│ │ │ │ ├── Bratislava
│ │ │ │ ├── Brussels
│ │ │ │ ├── Bucharest
│ │ │ │ ├── Budapest
│ │ │ │ ├── Busingen
│ │ │ │ ├── Chisinau
│ │ │ │ ├── Copenhagen
│ │ │ │ ├── Dublin
│ │ │ │ ├── Gibraltar
│ │ │ │ ├── Guernsey
│ │ │ │ ├── Helsinki
│ │ │ │ ├── Isle_of_Man
│ │ │ │ ├── Istanbul
│ │ │ │ ├── Jersey
│ │ │ │ ├── Kaliningrad
│ │ │ │ ├── Kiev
│ │ │ │ ├── Kirov
│ │ │ │ ├── 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
│ │ │ │ ├── Ulyanovsk
│ │ │ │ ├── Uzhgorod
│ │ │ │ ├── Vaduz
│ │ │ │ ├── Vatican
│ │ │ │ ├── Vienna
│ │ │ │ ├── Vilnius
│ │ │ │ ├── Volgograd
│ │ │ │ ├── Warsaw
│ │ │ │ ├── Zagreb
│ │ │ │ ├── Zaporozhye
│ │ │ │ └── Zurich
│ │ │ ├── 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
│ │ │ ├── SystemV
│ │ │ │ ├── AST4
│ │ │ │ ├── AST4ADT
│ │ │ │ ├── CST6
│ │ │ │ ├── CST6CDT
│ │ │ │ ├── EST5
│ │ │ │ ├── EST5EDT
│ │ │ │ ├── HST10
│ │ │ │ ├── MST7
│ │ │ │ ├── MST7MDT
│ │ │ │ ├── PST8
│ │ │ │ ├── PST8PDT
│ │ │ │ ├── YST9
│ │ │ │ └── YST9YDT
│ │ │ ├── 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
│ │ └── word.tcl
│ └── tk8.6
│ ├── bgerror.tcl
│ ├── button.tcl
│ ├── choosedir.tcl
│ ├── clrpick.tcl
│ ├── comdlg.tcl
│ ├── console.tcl
│ ├── demos
│ │ ├── README
│ │ ├── anilabel.tcl
│ │ ├── aniwave.tcl
│ │ ├── arrow.tcl
│ │ ├── bind.tcl
│ │ ├── bitmap.tcl
│ │ ├── browse
│ │ ├── button.tcl
│ │ ├── check.tcl
│ │ ├── clrpick.tcl
│ │ ├── colors.tcl
│ │ ├── combo.tcl
│ │ ├── cscroll.tcl
│ │ ├── ctext.tcl
│ │ ├── dialog1.tcl
│ │ ├── dialog2.tcl
│ │ ├── en.msg
│ │ ├── entry1.tcl
│ │ ├── entry2.tcl
│ │ ├── entry3.tcl
│ │ ├── filebox.tcl
│ │ ├── floor.tcl
│ │ ├── fontchoose.tcl
│ │ ├── form.tcl
│ │ ├── goldberg.tcl
│ │ ├── hello
│ │ ├── hscale.tcl
│ │ ├── icon.tcl
│ │ ├── image1.tcl
│ │ ├── image2.tcl
│ │ ├── images
│ │ │ ├── earth.gif
│ │ │ ├── earthris.gif
│ │ │ ├── flagdown.xbm
│ │ │ ├── flagup.xbm
│ │ │ ├── gray25.xbm
│ │ │ ├── letters.xbm
│ │ │ ├── noletter.xbm
│ │ │ ├── ouster.png
│ │ │ ├── pattern.xbm
│ │ │ ├── tcllogo.gif
│ │ │ └── teapot.ppm
│ │ ├── items.tcl
│ │ ├── ixset
│ │ ├── knightstour.tcl
│ │ ├── label.tcl
│ │ ├── labelframe.tcl
│ │ ├── license.terms
│ │ ├── mclist.tcl
│ │ ├── menu.tcl
│ │ ├── menubu.tcl
│ │ ├── msgbox.tcl
│ │ ├── nl.msg
│ │ ├── paned1.tcl
│ │ ├── paned2.tcl
│ │ ├── pendulum.tcl
│ │ ├── plot.tcl
│ │ ├── puzzle.tcl
│ │ ├── radio.tcl
│ │ ├── rmt
│ │ ├── rolodex
│ │ ├── ruler.tcl
│ │ ├── sayings.tcl
│ │ ├── search.tcl
│ │ ├── spin.tcl
│ │ ├── square
│ │ ├── states.tcl
│ │ ├── style.tcl
│ │ ├── tclIndex
│ │ ├── tcolor
│ │ ├── text.tcl
│ │ ├── textpeer.tcl
│ │ ├── timer
│ │ ├── toolbar.tcl
│ │ ├── tree.tcl
│ │ ├── ttkbut.tcl
│ │ ├── ttkmenu.tcl
│ │ ├── ttknote.tcl
│ │ ├── ttkpane.tcl
│ │ ├── ttkprogress.tcl
│ │ ├── ttkscale.tcl
│ │ ├── twind.tcl
│ │ ├── unicodeout.tcl
│ │ ├── vscale.tcl
│ │ └── widget
│ ├── dialog.tcl
│ ├── entry.tcl
│ ├── focus.tcl
│ ├── fontchooser.tcl
│ ├── iconlist.tcl
│ ├── icons.tcl
│ ├── images
│ │ ├── README
│ │ ├── logo.eps
│ │ ├── logo100.gif
│ │ ├── logo64.gif
│ │ ├── logoLarge.gif
│ │ ├── logoMed.gif
│ │ ├── pwrdLogo.eps
│ │ ├── pwrdLogo100.gif
│ │ ├── pwrdLogo150.gif
│ │ ├── pwrdLogo175.gif
│ │ ├── pwrdLogo200.gif
│ │ ├── pwrdLogo75.gif
│ │ └── tai-ku.gif
│ ├── license.terms
│ ├── listbox.tcl
│ ├── megawidget.tcl
│ ├── menu.tcl
│ ├── mkpsenc.tcl
│ ├── msgbox.tcl
│ ├── msgs
│ │ ├── cs.msg
│ │ ├── da.msg
│ │ ├── de.msg
│ │ ├── el.msg
│ │ ├── en.msg
│ │ ├── en_gb.msg
│ │ ├── eo.msg
│ │ ├── es.msg
│ │ ├── fr.msg
│ │ ├── hu.msg
│ │ ├── it.msg
│ │ ├── nl.msg
│ │ ├── pl.msg
│ │ ├── pt.msg
│ │ ├── ru.msg
│ │ └── sv.msg
│ ├── obsolete.tcl
│ ├── optMenu.tcl
│ ├── palette.tcl
│ ├── panedwindow.tcl
│ ├── pkgIndex.tcl
│ ├── safetk.tcl
│ ├── scale.tcl
│ ├── scrlbar.tcl
│ ├── spinbox.tcl
│ ├── tclIndex
│ ├── tearoff.tcl
│ ├── text.tcl
│ ├── tk.tcl
│ ├── tkfbox.tcl
│ ├── ttk
│ │ ├── altTheme.tcl
│ │ ├── aquaTheme.tcl
│ │ ├── button.tcl
│ │ ├── clamTheme.tcl
│ │ ├── classicTheme.tcl
│ │ ├── combobox.tcl
│ │ ├── cursors.tcl
│ │ ├── defaults.tcl
│ │ ├── entry.tcl
│ │ ├── fonts.tcl
│ │ ├── menubutton.tcl
│ │ ├── notebook.tcl
│ │ ├── panedwindow.tcl
│ │ ├── progress.tcl
│ │ ├── scale.tcl
│ │ ├── scrollbar.tcl
│ │ ├── sizegrip.tcl
│ │ ├── spinbox.tcl
│ │ ├── treeview.tcl
│ │ ├── ttk.tcl
│ │ ├── utils.tcl
│ │ ├── vistaTheme.tcl
│ │ ├── winTheme.tcl
│ │ └── xpTheme.tcl
│ ├── unsupported.tcl
│ └── xmfbox.tcl
├── weibo.py
├── wordcloud.gif
├── wordcloud.jpg
└── wordcloud_tencent.gif
559 directories, 6145 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论