在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 曲线匹配code

曲线匹配code

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:13.92M
  • 下载次数:9
  • 浏览次数:83
  • 发布时间:2020-10-31
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
python代码,进行曲线的匹配过程,完整可编译,有输入的样本可供实验
【实例截图】
【核心代码】
curvematching
└── curvematching
├── datastruct.py
├── datastruct.pyc
├── distance.py
├── distance.pyc
├── main.py
├── readdata.py
├── readdata.pyc
├── skylinePoints.txt
└── venv
├── Include
│   ├── abstract.h
│   ├── asdl.h
│   ├── ast.h
│   ├── bitset.h
│   ├── boolobject.h
│   ├── bufferobject.h
│   ├── bytearrayobject.h
│   ├── bytes_methods.h
│   ├── bytesobject.h
│   ├── cellobject.h
│   ├── ceval.h
│   ├── classobject.h
│   ├── cobject.h
│   ├── codecs.h
│   ├── code.h
│   ├── compile.h
│   ├── complexobject.h
│   ├── cStringIO.h
│   ├── datetime.h
│   ├── descrobject.h
│   ├── dictobject.h
│   ├── dtoa.h
│   ├── enumobject.h
│   ├── errcode.h
│   ├── eval.h
│   ├── fileobject.h
│   ├── floatobject.h
│   ├── frameobject.h
│   ├── funcobject.h
│   ├── genobject.h
│   ├── graminit.h
│   ├── grammar.h
│   ├── import.h
│   ├── intobject.h
│   ├── intrcheck.h
│   ├── iterobject.h
│   ├── listobject.h
│   ├── longintrepr.h
│   ├── longobject.h
│   ├── marshal.h
│   ├── memoryobject.h
│   ├── metagrammar.h
│   ├── methodobject.h
│   ├── modsupport.h
│   ├── moduleobject.h
│   ├── node.h
│   ├── object.h
│   ├── objimpl.h
│   ├── opcode.h
│   ├── osdefs.h
│   ├── parsetok.h
│   ├── patchlevel.h
│   ├── pgen.h
│   ├── pgenheaders.h
│   ├── pyarena.h
│   ├── pycapsule.h
│   ├── pyconfig.h
│   ├── pyctype.h
│   ├── py_curses.h
│   ├── pydebug.h
│   ├── pyerrors.h
│   ├── pyexpat.h
│   ├── pyfpe.h
│   ├── pygetopt.h
│   ├── pymacconfig.h
│   ├── pymactoolbox.h
│   ├── pymath.h
│   ├── pymem.h
│   ├── pyport.h
│   ├── pystate.h
│   ├── pystrcmp.h
│   ├── pystrtod.h
│   ├── Python-ast.h
│   ├── Python.h
│   ├── pythonrun.h
│   ├── pythread.h
│   ├── rangeobject.h
│   ├── setobject.h
│   ├── sliceobject.h
│   ├── stringobject.h
│   ├── structmember.h
│   ├── structseq.h
│   ├── symtable.h
│   ├── sysmodule.h
│   ├── timefuncs.h
│   ├── token.h
│   ├── traceback.h
│   ├── tupleobject.h
│   ├── ucnhash.h
│   ├── unicodeobject.h
│   ├── warnings.h
│   └── weakrefobject.h
├── Lib
│   ├── _abcoll.py
│   ├── _abcoll.pyc
│   ├── abc.py
│   ├── abc.pyc
│   ├── codecs.py
│   ├── codecs.pyc
│   ├── copy_reg.py
│   ├── copy_reg.pyc
│   ├── distutils
│   │   ├── distutils.cfg
│   │   └── __init__.py
│   ├── encodings
│   │   ├── aliases.py
│   │   ├── aliases.pyc
│   │   ├── ascii.py
│   │   ├── ascii.pyc
│   │   ├── base64_codec.py
│   │   ├── big5hkscs.py
│   │   ├── big5.py
│   │   ├── bz2_codec.py
│   │   ├── charmap.py
│   │   ├── cp037.py
│   │   ├── cp1006.py
│   │   ├── cp1026.py
│   │   ├── cp1140.py
│   │   ├── cp1250.py
│   │   ├── cp1251.py
│   │   ├── cp1252.py
│   │   ├── cp1253.py
│   │   ├── cp1254.py
│   │   ├── cp1255.py
│   │   ├── cp1256.py
│   │   ├── cp1257.py
│   │   ├── cp1258.py
│   │   ├── cp424.py
│   │   ├── cp437.py
│   │   ├── cp500.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
│   │   ├── gbk.pyc
│   │   ├── hex_codec.py
│   │   ├── hp_roman8.py
│   │   ├── hz.py
│   │   ├── idna.py
│   │   ├── __init__.py
│   │   ├── __init__.pyc
│   │   ├── iso2022_jp_1.py
│   │   ├── iso2022_jp_2004.py
│   │   ├── iso2022_jp_2.py
│   │   ├── iso2022_jp_3.py
│   │   ├── iso2022_jp_ext.py
│   │   ├── iso2022_jp.py
│   │   ├── iso2022_kr.py
│   │   ├── iso8859_10.py
│   │   ├── iso8859_11.py
│   │   ├── iso8859_13.py
│   │   ├── iso8859_14.py
│   │   ├── iso8859_15.py
│   │   ├── iso8859_16.py
│   │   ├── iso8859_1.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_u.py
│   │   ├── latin_1.py
│   │   ├── latin_1.pyc
│   │   ├── 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_romanian.py
│   │   ├── mac_roman.py
│   │   ├── mac_turkish.py
│   │   ├── mbcs.py
│   │   ├── mbcs.pyc
│   │   ├── palmos.py
│   │   ├── ptcp154.py
│   │   ├── punycode.py
│   │   ├── quopri_codec.py
│   │   ├── raw_unicode_escape.py
│   │   ├── rot_13.py
│   │   ├── shift_jis_2004.py
│   │   ├── shift_jis.py
│   │   ├── shift_jisx0213.py
│   │   ├── string_escape.py
│   │   ├── tis_620.py
│   │   ├── undefined.py
│   │   ├── unicode_escape.py
│   │   ├── unicode_internal.py
│   │   ├── utf_16_be.py
│   │   ├── utf_16_be.pyc
│   │   ├── utf_16_le.py
│   │   ├── utf_16_le.pyc
│   │   ├── utf_16.py
│   │   ├── utf_32_be.py
│   │   ├── utf_32_be.pyc
│   │   ├── utf_32_le.py
│   │   ├── utf_32.py
│   │   ├── utf_7.py
│   │   ├── utf_8.py
│   │   ├── utf_8.pyc
│   │   ├── utf_8_sig.py
│   │   ├── uu_codec.py
│   │   └── zlib_codec.py
│   ├── fnmatch.py
│   ├── fnmatch.pyc
│   ├── genericpath.py
│   ├── genericpath.pyc
│   ├── linecache.py
│   ├── linecache.pyc
│   ├── locale.py
│   ├── locale.pyc
│   ├── no-global-site-packages.txt
│   ├── ntpath.py
│   ├── ntpath.pyc
│   ├── orig-prefix.txt
│   ├── os.py
│   ├── os.pyc
│   ├── posixpath.py
│   ├── re.py
│   ├── re.pyc
│   ├── site-packages
│   │   ├── easy_install.py
│   │   ├── easy_install.pyc
│   │   ├── numpy
│   │   │   ├── add_newdocs.py
│   │   │   ├── add_newdocs.pyc
│   │   │   ├── compat
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __init__.pyc
│   │   │   │   ├── _inspect.py
│   │   │   │   ├── _inspect.pyc
│   │   │   │   ├── py3k.py
│   │   │   │   ├── py3k.pyc
│   │   │   │   ├── setup.py
│   │   │   │   └── setup.pyc
│   │   │   ├── __config__.py
│   │   │   ├── __config__.pyc
│   │   │   ├── conftest.py
│   │   │   ├── conftest.pyc
│   │   │   ├── core
│   │   │   │   ├── arrayprint.py
│   │   │   │   ├── arrayprint.pyc
│   │   │   │   ├── cversions.py
│   │   │   │   ├── cversions.pyc
│   │   │   │   ├── defchararray.py
│   │   │   │   ├── defchararray.pyc
│   │   │   │   ├── _dummy.pyd
│   │   │   │   ├── einsumfunc.py
│   │   │   │   ├── einsumfunc.pyc
│   │   │   │   ├── fromnumeric.py
│   │   │   │   ├── fromnumeric.pyc
│   │   │   │   ├── function_base.py
│   │   │   │   ├── function_base.pyc
│   │   │   │   ├── generate_numpy_api.py
│   │   │   │   ├── generate_numpy_api.pyc
│   │   │   │   ├── getlimits.py
│   │   │   │   ├── getlimits.pyc
│   │   │   │   ├── include
│   │   │   │   │   └── numpy
│   │   │   │   │   ├── arrayobject.h
│   │   │   │   │   ├── arrayscalars.h
│   │   │   │   │   ├── halffloat.h
│   │   │   │   │   ├── __multiarray_api.h
│   │   │   │   │   ├── multiarray_api.txt
│   │   │   │   │   ├── ndarrayobject.h
│   │   │   │   │   ├── ndarraytypes.h
│   │   │   │   │   ├── _neighborhood_iterator_imp.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
│   │   │   │   │   ├── numpyconfig.h
│   │   │   │   │   ├── old_defines.h
│   │   │   │   │   ├── oldnumeric.h
│   │   │   │   │   ├── __ufunc_api.h
│   │   │   │   │   ├── ufunc_api.txt
│   │   │   │   │   ├── ufuncobject.h
│   │   │   │   │   └── utils.h
│   │   │   │   ├── info.py
│   │   │   │   ├── info.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __init__.pyc
│   │   │   │   ├── _internal.py
│   │   │   │   ├── _internal.pyc
│   │   │   │   ├── lib
│   │   │   │   │   ├── npymath.lib
│   │   │   │   │   └── npy-pkg-config
│   │   │   │   │   ├── mlib.ini
│   │   │   │   │   └── npymath.ini
│   │   │   │   ├── machar.py
│   │   │   │   ├── machar.pyc
│   │   │   │   ├── memmap.py
│   │   │   │   ├── memmap.pyc
│   │   │   │   ├── _methods.py
│   │   │   │   ├── _methods.pyc
│   │   │   │   ├── multiarray.pyd
│   │   │   │   ├── multiarray_tests.pyd
│   │   │   │   ├── numeric.py
│   │   │   │   ├── numeric.pyc
│   │   │   │   ├── numerictypes.py
│   │   │   │   ├── numerictypes.pyc
│   │   │   │   ├── operand_flag_tests.pyd
│   │   │   │   ├── records.py
│   │   │   │   ├── records.pyc
│   │   │   │   ├── setup_common.py
│   │   │   │   ├── setup_common.pyc
│   │   │   │   ├── setup.py
│   │   │   │   ├── setup.pyc
│   │   │   │   ├── shape_base.py
│   │   │   │   ├── shape_base.pyc
│   │   │   │   ├── struct_ufunc_test.pyd
│   │   │   │   ├── test_rational.pyd
│   │   │   │   ├── tests
│   │   │   │   │   ├── data
│   │   │   │   │   │   ├── astype_copy.pkl
│   │   │   │   │   │   └── recarray_from_file.fits
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __init__.pyc
│   │   │   │   │   ├── test_abc.py
│   │   │   │   │   ├── test_abc.pyc
│   │   │   │   │   ├── test_api.py
│   │   │   │   │   ├── test_api.pyc
│   │   │   │   │   ├── test_arrayprint.py
│   │   │   │   │   ├── test_arrayprint.pyc
│   │   │   │   │   ├── test_datetime.py
│   │   │   │   │   ├── test_datetime.pyc
│   │   │   │   │   ├── test_defchararray.py
│   │   │   │   │   ├── test_defchararray.pyc
│   │   │   │   │   ├── test_deprecations.py
│   │   │   │   │   ├── test_deprecations.pyc
│   │   │   │   │   ├── test_dtype.py
│   │   │   │   │   ├── test_dtype.pyc
│   │   │   │   │   ├── test_einsum.py
│   │   │   │   │   ├── test_einsum.pyc
│   │   │   │   │   ├── test_errstate.py
│   │   │   │   │   ├── test_errstate.pyc
│   │   │   │   │   ├── test_extint128.py
│   │   │   │   │   ├── test_extint128.pyc
│   │   │   │   │   ├── test_function_base.py
│   │   │   │   │   ├── test_function_base.pyc
│   │   │   │   │   ├── test_getlimits.py
│   │   │   │   │   ├── test_getlimits.pyc
│   │   │   │   │   ├── test_half.py
│   │   │   │   │   ├── test_half.pyc
│   │   │   │   │   ├── test_indexerrors.py
│   │   │   │   │   ├── test_indexerrors.pyc
│   │   │   │   │   ├── test_indexing.py
│   │   │   │   │   ├── test_indexing.pyc
│   │   │   │   │   ├── test_item_selection.py
│   │   │   │   │   ├── test_item_selection.pyc
│   │   │   │   │   ├── test_longdouble.py
│   │   │   │   │   ├── test_longdouble.pyc
│   │   │   │   │   ├── test_machar.py
│   │   │   │   │   ├── test_machar.pyc
│   │   │   │   │   ├── test_memmap.py
│   │   │   │   │   ├── test_memmap.pyc
│   │   │   │   │   ├── test_mem_overlap.py
│   │   │   │   │   ├── test_mem_overlap.pyc
│   │   │   │   │   ├── test_multiarray.py
│   │   │   │   │   ├── test_multiarray.pyc
│   │   │   │   │   ├── test_nditer.py
│   │   │   │   │   ├── test_nditer.pyc
│   │   │   │   │   ├── test_numeric.py
│   │   │   │   │   ├── test_numeric.pyc
│   │   │   │   │   ├── test_numerictypes.py
│   │   │   │   │   ├── test_numerictypes.pyc
│   │   │   │   │   ├── test_print.py
│   │   │   │   │   ├── test_print.pyc
│   │   │   │   │   ├── test_records.py
│   │   │   │   │   ├── test_records.pyc
│   │   │   │   │   ├── test_regression.py
│   │   │   │   │   ├── test_regression.pyc
│   │   │   │   │   ├── test_scalar_ctors.py
│   │   │   │   │   ├── test_scalar_ctors.pyc
│   │   │   │   │   ├── test_scalarinherit.py
│   │   │   │   │   ├── test_scalarinherit.pyc
│   │   │   │   │   ├── test_scalarmath.py
│   │   │   │   │   ├── test_scalarmath.pyc
│   │   │   │   │   ├── test_scalarprint.py
│   │   │   │   │   ├── test_scalarprint.pyc
│   │   │   │   │   ├── test_shape_base.py
│   │   │   │   │   ├── test_shape_base.pyc
│   │   │   │   │   ├── test_ufunc.py
│   │   │   │   │   ├── test_ufunc.pyc
│   │   │   │   │   ├── test_umath_complex.py
│   │   │   │   │   ├── test_umath_complex.pyc
│   │   │   │   │   ├── test_umath.py
│   │   │   │   │   ├── test_umath.pyc
│   │   │   │   │   ├── test_unicode.py
│   │   │   │   │   └── test_unicode.pyc
│   │   │   │   ├── umath.pyd
│   │   │   │   └── umath_tests.pyd
│   │   │   ├── ctypeslib.py
│   │   │   ├── ctypeslib.pyc
│   │   │   ├── _distributor_init.py
│   │   │   ├── _distributor_init.pyc
│   │   │   ├── distutils
│   │   │   │   ├── ccompiler.py
│   │   │   │   ├── ccompiler.pyc
│   │   │   │   ├── command
│   │   │   │   │   ├── autodist.py
│   │   │   │   │   ├── autodist.pyc
│   │   │   │   │   ├── bdist_rpm.py
│   │   │   │   │   ├── bdist_rpm.pyc
│   │   │   │   │   ├── build_clib.py
│   │   │   │   │   ├── build_clib.pyc
│   │   │   │   │   ├── build_ext.py
│   │   │   │   │   ├── build_ext.pyc
│   │   │   │   │   ├── build.py
│   │   │   │   │   ├── build.pyc
│   │   │   │   │   ├── build_py.py
│   │   │   │   │   ├── build_py.pyc
│   │   │   │   │   ├── build_scripts.py
│   │   │   │   │   ├── build_scripts.pyc
│   │   │   │   │   ├── build_src.py
│   │   │   │   │   ├── build_src.pyc
│   │   │   │   │   ├── config_compiler.py
│   │   │   │   │   ├── config_compiler.pyc
│   │   │   │   │   ├── config.py
│   │   │   │   │   ├── config.pyc
│   │   │   │   │   ├── develop.py
│   │   │   │   │   ├── develop.pyc
│   │   │   │   │   ├── egg_info.py
│   │   │   │   │   ├── egg_info.pyc
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __init__.pyc
│   │   │   │   │   ├── install_clib.py
│   │   │   │   │   ├── install_clib.pyc
│   │   │   │   │   ├── install_data.py
│   │   │   │   │   ├── install_data.pyc
│   │   │   │   │   ├── install_headers.py
│   │   │   │   │   ├── install_headers.pyc
│   │   │   │   │   ├── install.py
│   │   │   │   │   ├── install.pyc
│   │   │   │   │   ├── sdist.py
│   │   │   │   │   └── sdist.pyc
│   │   │   │   ├── compat.py
│   │   │   │   ├── compat.pyc
│   │   │   │   ├── __config__.py
│   │   │   │   ├── __config__.pyc
│   │   │   │   ├── conv_template.py
│   │   │   │   ├── conv_template.pyc
│   │   │   │   ├── core.py
│   │   │   │   ├── core.pyc
│   │   │   │   ├── cpuinfo.py
│   │   │   │   ├── cpuinfo.pyc
│   │   │   │   ├── environment.py
│   │   │   │   ├── environment.pyc
│   │   │   │   ├── exec_command.py
│   │   │   │   ├── exec_command.pyc
│   │   │   │   ├── extension.py
│   │   │   │   ├── extension.pyc
│   │   │   │   ├── fcompiler
│   │   │   │   │   ├── absoft.py
│   │   │   │   │   ├── absoft.pyc
│   │   │   │   │   ├── compaq.py
│   │   │   │   │   ├── compaq.pyc
│   │   │   │   │   ├── g95.py
│   │   │   │   │   ├── g95.pyc
│   │   │   │   │   ├── gnu.py
│   │   │   │   │   ├── gnu.pyc
│   │   │   │   │   ├── hpux.py
│   │   │   │   │   ├── hpux.pyc
│   │   │   │   │   ├── ibm.py
│   │   │   │   │   ├── ibm.pyc
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __init__.pyc
│   │   │   │   │   ├── intel.py
│   │   │   │   │   ├── intel.pyc
│   │   │   │   │   ├── lahey.py
│   │   │   │   │   ├── lahey.pyc
│   │   │   │   │   ├── mips.py
│   │   │   │   │   ├── mips.pyc
│   │   │   │   │   ├── nag.py
│   │   │   │   │   ├── nag.pyc
│   │   │   │   │   ├── none.py
│   │   │   │   │   ├── none.pyc
│   │   │   │   │   ├── pathf95.py
│   │   │   │   │   ├── pathf95.pyc
│   │   │   │   │   ├── pg.py
│   │   │   │   │   ├── pg.pyc
│   │   │   │   │   ├── sun.py
│   │   │   │   │   ├── sun.pyc
│   │   │   │   │   ├── vast.py
│   │   │   │   │   └── vast.pyc
│   │   │   │   ├── from_template.py
│   │   │   │   ├── from_template.pyc
│   │   │   │   ├── info.py
│   │   │   │   ├── info.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __init__.pyc
│   │   │   │   ├── intelccompiler.py
│   │   │   │   ├── intelccompiler.pyc
│   │   │   │   ├── lib2def.py
│   │   │   │   ├── lib2def.pyc
│   │   │   │   ├── line_endings.py
│   │   │   │   ├── line_endings.pyc
│   │   │   │   ├── log.py
│   │   │   │   ├── log.pyc
│   │   │   │   ├── mingw
│   │   │   │   │   └── gfortran_vs2003_hack.c
│   │   │   │   ├── mingw32ccompiler.py
│   │   │   │   ├── mingw32ccompiler.pyc
│   │   │   │   ├── misc_util.py
│   │   │   │   ├── misc_util.pyc
│   │   │   │   ├── msvc9compiler.py
│   │   │   │   ├── msvc9compiler.pyc
│   │   │   │   ├── msvccompiler.py
│   │   │   │   ├── msvccompiler.pyc
│   │   │   │   ├── npy_pkg_config.py
│   │   │   │   ├── npy_pkg_config.pyc
│   │   │   │   ├── numpy_distribution.py
│   │   │   │   ├── numpy_distribution.pyc
│   │   │   │   ├── pathccompiler.py
│   │   │   │   ├── pathccompiler.pyc
│   │   │   │   ├── setup.py
│   │   │   │   ├── setup.pyc
│   │   │   │   ├── system_info.py
│   │   │   │   ├── system_info.pyc
│   │   │   │   ├── tests
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __init__.pyc
│   │   │   │   │   ├── test_exec_command.py
│   │   │   │   │   ├── test_exec_command.pyc
│   │   │   │   │   ├── test_fcompiler_gnu.py
│   │   │   │   │   ├── test_fcompiler_gnu.pyc
│   │   │   │   │   ├── test_fcompiler_intel.py
│   │   │   │   │   ├── test_fcompiler_intel.pyc
│   │   │   │   │   ├── test_fcompiler_nagfor.py
│   │   │   │   │   ├── test_fcompiler_nagfor.pyc
│   │   │   │   │   ├── test_misc_util.py
│   │   │   │   │   ├── test_misc_util.pyc
│   │   │   │   │   ├── test_npy_pkg_config.py
│   │   │   │   │   ├── test_npy_pkg_config.pyc
│   │   │   │   │   ├── test_system_info.py
│   │   │   │   │   └── test_system_info.pyc
│   │   │   │   ├── unixccompiler.py
│   │   │   │   ├── unixccompiler.pyc
│   │   │   │   ├── __version__.py
│   │   │   │   └── __version__.pyc
│   │   │   ├── doc
│   │   │   │   ├── basics.py
│   │   │   │   ├── basics.pyc
│   │   │   │   ├── broadcasting.py
│   │   │   │   ├── broadcasting.pyc
│   │   │   │   ├── byteswapping.py
│   │   │   │   ├── byteswapping.pyc
│   │   │   │   ├── constants.py
│   │   │   │   ├── constants.pyc
│   │   │   │   ├── creation.py
│   │   │   │   ├── creation.pyc
│   │   │   │   ├── glossary.py
│   │   │   │   ├── glossary.pyc
│   │   │   │   ├── indexing.py
│   │   │   │   ├── indexing.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __init__.pyc
│   │   │   │   ├── internals.py
│   │   │   │   ├── internals.pyc
│   │   │   │   ├── misc.py
│   │   │   │   ├── misc.pyc
│   │   │   │   ├── structured_arrays.py
│   │   │   │   ├── structured_arrays.pyc
│   │   │   │   ├── subclassing.py
│   │   │   │   ├── subclassing.pyc
│   │   │   │   ├── ufuncs.py
│   │   │   │   └── ufuncs.pyc
│   │   │   ├── dual.py
│   │   │   ├── dual.pyc
│   │   │   ├── f2py
│   │   │   │   ├── auxfuncs.py
│   │   │   │   ├── auxfuncs.pyc
│   │   │   │   ├── capi_maps.py
│   │   │   │   ├── capi_maps.pyc
│   │   │   │   ├── cb_rules.py
│   │   │   │   ├── cb_rules.pyc
│   │   │   │   ├── cfuncs.py
│   │   │   │   ├── cfuncs.pyc
│   │   │   │   ├── common_rules.py
│   │   │   │   ├── common_rules.pyc
│   │   │   │   ├── crackfortran.py
│   │   │   │   ├── crackfortran.pyc
│   │   │   │   ├── diagnose.py
│   │   │   │   ├── diagnose.pyc
│   │   │   │   ├── f2py2e.py
│   │   │   │   ├── f2py2e.pyc
│   │   │   │   ├── f2py_testing.py
│   │   │   │   ├── f2py_testing.pyc
│   │   │   │   ├── f90mod_rules.py
│   │   │   │   ├── f90mod_rules.pyc
│   │   │   │   ├── func2subr.py
│   │   │   │   ├── func2subr.pyc
│   │   │   │   ├── info.py
│   │   │   │   ├── info.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __init__.pyc
│   │   │   │   ├── __main__.py
│   │   │   │   ├── __main__.pyc
│   │   │   │   ├── rules.py
│   │   │   │   ├── rules.pyc
│   │   │   │   ├── setup.py
│   │   │   │   ├── setup.pyc
│   │   │   │   ├── src
│   │   │   │   │   ├── fortranobject.c
│   │   │   │   │   └── fortranobject.h
│   │   │   │   ├── tests
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __init__.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_array_from_pyobj.pyc
│   │   │   │   │   ├── test_assumed_shape.py
│   │   │   │   │   ├── test_assumed_shape.pyc
│   │   │   │   │   ├── test_block_docstring.py
│   │   │   │   │   ├── test_block_docstring.pyc
│   │   │   │   │   ├── test_callback.py
│   │   │   │   │   ├── test_callback.pyc
│   │   │   │   │   ├── test_common.py
│   │   │   │   │   ├── test_common.pyc
│   │   │   │   │   ├── test_kind.py
│   │   │   │   │   ├── test_kind.pyc
│   │   │   │   │   ├── test_mixed.py
│   │   │   │   │   ├── test_mixed.pyc
│   │   │   │   │   ├── test_parameter.py
│   │   │   │   │   ├── test_parameter.pyc
│   │   │   │   │   ├── test_regression.py
│   │   │   │   │   ├── test_regression.pyc
│   │   │   │   │   ├── test_return_character.py
│   │   │   │   │   ├── test_return_character.pyc
│   │   │   │   │   ├── test_return_complex.py
│   │   │   │   │   ├── test_return_complex.pyc
│   │   │   │   │   ├── test_return_integer.py
│   │   │   │   │   ├── test_return_integer.pyc
│   │   │   │   │   ├── test_return_logical.py
│   │   │   │   │   ├── test_return_logical.pyc
│   │   │   │   │   ├── test_return_real.py
│   │   │   │   │   ├── test_return_real.pyc
│   │   │   │   │   ├── test_size.py
│   │   │   │   │   ├── test_size.pyc
│   │   │   │   │   ├── test_string.py
│   │   │   │   │   ├── test_string.pyc
│   │   │   │   │   ├── util.py
│   │   │   │   │   └── util.pyc
│   │   │   │   ├── use_rules.py
│   │   │   │   ├── use_rules.pyc
│   │   │   │   ├── __version__.py
│   │   │   │   └── __version__.pyc
│   │   │   ├── fft
│   │   │   │   ├── fftpack_lite.pyd
│   │   │   │   ├── fftpack.py
│   │   │   │   ├── fftpack.pyc
│   │   │   │   ├── helper.py
│   │   │   │   ├── helper.pyc
│   │   │   │   ├── info.py
│   │   │   │   ├── info.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __init__.pyc
│   │   │   │   ├── setup.py
│   │   │   │   ├── setup.pyc
│   │   │   │   └── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __init__.pyc
│   │   │   │   ├── test_fftpack.py
│   │   │   │   ├── test_fftpack.pyc
│   │   │   │   ├── test_helper.py
│   │   │   │   └── test_helper.pyc
│   │   │   ├── _globals.py
│   │   │   ├── _globals.pyc
│   │   │   ├── _import_tools.py
│   │   │   ├── _import_tools.pyc
│   │   │   ├── __init__.py
│   │   │   ├── __init__.pyc
│   │   │   ├── lib
│   │   │   │   ├── arraypad.py
│   │   │   │   ├── arraypad.pyc
│   │   │   │   ├── arraysetops.py
│   │   │   │   ├── arraysetops.pyc
│   │   │   │   ├── arrayterator.py
│   │   │   │   ├── arrayterator.pyc
│   │   │   │   ├── _datasource.py
│   │   │   │   ├── _datasource.pyc
│   │   │   │   ├── financial.py
│   │   │   │   ├── financial.pyc
│   │   │   │   ├── format.py
│   │   │   │   ├── format.pyc
│   │   │   │   ├── function_base.py
│   │   │   │   ├── function_base.pyc
│   │   │   │   ├── index_tricks.py
│   │   │   │   ├── index_tricks.pyc
│   │   │   │   ├── info.py
│   │   │   │   ├── info.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __init__.pyc
│   │   │   │   ├── _iotools.py
│   │   │   │   ├── _iotools.pyc
│   │   │   │   ├── mixins.py
│   │   │   │   ├── mixins.pyc
│   │   │   │   ├── nanfunctions.py
│   │   │   │   ├── nanfunctions.pyc
│   │   │   │   ├── npyio.py
│   │   │   │   ├── npyio.pyc
│   │   │   │   ├── polynomial.py
│   │   │   │   ├── polynomial.pyc
│   │   │   │   ├── recfunctions.py
│   │   │   │   ├── recfunctions.pyc
│   │   │   │   ├── scimath.py
│   │   │   │   ├── scimath.pyc
│   │   │   │   ├── setup.py
│   │   │   │   ├── setup.pyc
│   │   │   │   ├── shape_base.py
│   │   │   │   ├── shape_base.pyc
│   │   │   │   ├── stride_tricks.py
│   │   │   │   ├── stride_tricks.pyc
│   │   │   │   ├── tests
│   │   │   │   │   ├── data
│   │   │   │   │   │   ├── py2-objarr.npy
│   │   │   │   │   │   ├── py2-objarr.npz
│   │   │   │   │   │   ├── py3-objarr.npy
│   │   │   │   │   │   ├── py3-objarr.npz
│   │   │   │   │   │   ├── python3.npy
│   │   │   │   │   │   └── win64python2.npy
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __init__.pyc
│   │   │   │   │   ├── test_arraypad.py
│   │   │   │   │   ├── test_arraypad.pyc
│   │   │   │   │   ├── test_arraysetops.py
│   │   │   │   │   ├── test_arraysetops.pyc
│   │   │   │   │   ├── test_arrayterator.py
│   │   │   │   │   ├── test_arrayterator.pyc
│   │   │   │   │   ├── test__datasource.py
│   │   │   │   │   ├── test__datasource.pyc
│   │   │   │   │   ├── test_financial.py
│   │   │   │   │   ├── test_financial.pyc
│   │   │   │   │   ├── test_format.py
│   │   │   │   │   ├── test_format.pyc
│   │   │   │   │   ├── test_function_base.py
│   │   │   │   │   ├── test_function_base.pyc
│   │   │   │   │   ├── test_index_tricks.py
│   │   │   │   │   ├── test_index_tricks.pyc
│   │   │   │   │   ├── test_io.py
│   │   │   │   │   ├── test_io.pyc
│   │   │   │   │   ├── test__iotools.py
│   │   │   │   │   ├── test__iotools.pyc
│   │   │   │   │   ├── test_mixins.py
│   │   │   │   │   ├── test_mixins.pyc
│   │   │   │   │   ├── test_nanfunctions.py
│   │   │   │   │   ├── test_nanfunctions.pyc
│   │   │   │   │   ├── test_packbits.py
│   │   │   │   │   ├── test_packbits.pyc
│   │   │   │   │   ├── test_polynomial.py
│   │   │   │   │   ├── test_polynomial.pyc
│   │   │   │   │   ├── test_recfunctions.py
│   │   │   │   │   ├── test_recfunctions.pyc
│   │   │   │   │   ├── test_regression.py
│   │   │   │   │   ├── test_regression.pyc
│   │   │   │   │   ├── test_shape_base.py
│   │   │   │   │   ├── test_shape_base.pyc
│   │   │   │   │   ├── test_stride_tricks.py
│   │   │   │   │   ├── test_stride_tricks.pyc
│   │   │   │   │   ├── test_twodim_base.py
│   │   │   │   │   ├── test_twodim_base.pyc
│   │   │   │   │   ├── test_type_check.py
│   │   │   │   │   ├── test_type_check.pyc
│   │   │   │   │   ├── test_ufunclike.py
│   │   │   │   │   ├── test_ufunclike.pyc
│   │   │   │   │   ├── test_utils.py
│   │   │   │   │   ├── test_utils.pyc
│   │   │   │   │   ├── test__version.py
│   │   │   │   │   └── test__version.pyc
│   │   │   │   ├── twodim_base.py
│   │   │   │   ├── twodim_base.pyc
│   │   │   │   ├── type_check.py
│   │   │   │   ├── type_check.pyc
│   │   │   │   ├── ufunclike.py
│   │   │   │   ├── ufunclike.pyc
│   │   │   │   ├── user_array.py
│   │   │   │   ├── user_array.pyc
│   │   │   │   ├── utils.py
│   │   │   │   ├── utils.pyc
│   │   │   │   ├── _version.py
│   │   │   │   └── _version.pyc
│   │   │   ├── LICENSE.txt
│   │   │   ├── linalg
│   │   │   │   ├── info.py
│   │   │   │   ├── info.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __init__.pyc
│   │   │   │   ├── lapack_lite.pyd
│   │   │   │   ├── linalg.py
│   │   │   │   ├── linalg.pyc
│   │   │   │   ├── setup.py
│   │   │   │   ├── setup.pyc
│   │   │   │   ├── tests
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __init__.pyc
│   │   │   │   │   ├── test_build.py
│   │   │   │   │   ├── test_build.pyc
│   │   │   │   │   ├── test_deprecations.py
│   │   │   │   │   ├── test_deprecations.pyc
│   │   │   │   │   ├── test_linalg.py
│   │   │   │   │   ├── test_linalg.pyc
│   │   │   │   │   ├── test_regression.py
│   │   │   │   │   └── test_regression.pyc
│   │   │   │   └── _umath_linalg.pyd
│   │   │   ├── ma
│   │   │   │   ├── bench.py
│   │   │   │   ├── bench.pyc
│   │   │   │   ├── core.py
│   │   │   │   ├── core.pyc
│   │   │   │   ├── extras.py
│   │   │   │   ├── extras.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __init__.pyc
│   │   │   │   ├── mrecords.py
│   │   │   │   ├── mrecords.pyc
│   │   │   │   ├── setup.py
│   │   │   │   ├── setup.pyc
│   │   │   │   ├── tests
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __init__.pyc
│   │   │   │   │   ├── test_core.py
│   │   │   │   │   ├── test_core.pyc
│   │   │   │   │   ├── test_deprecations.py
│   │   │   │   │   ├── test_deprecations.pyc
│   │   │   │   │   ├── test_extras.py
│   │   │   │   │   ├── test_extras.pyc
│   │   │   │   │   ├── test_mrecords.py
│   │   │   │   │   ├── test_mrecords.pyc
│   │   │   │   │   ├── test_old_ma.py
│   │   │   │   │   ├── test_old_ma.pyc
│   │   │   │   │   ├── test_regression.py
│   │   │   │   │   ├── test_regression.pyc
│   │   │   │   │   ├── test_subclassing.py
│   │   │   │   │   └── test_subclassing.pyc
│   │   │   │   ├── testutils.py
│   │   │   │   ├── testutils.pyc
│   │   │   │   ├── timer_comparison.py
│   │   │   │   ├── timer_comparison.pyc
│   │   │   │   ├── version.py
│   │   │   │   └── version.pyc
│   │   │   ├── matlib.py
│   │   │   ├── matlib.pyc
│   │   │   ├── matrixlib
│   │   │   │   ├── defmatrix.py
│   │   │   │   ├── defmatrix.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __init__.pyc
│   │   │   │   ├── setup.py
│   │   │   │   ├── setup.pyc
│   │   │   │   └── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __init__.pyc
│   │   │   │   ├── test_defmatrix.py
│   │   │   │   ├── test_defmatrix.pyc
│   │   │   │   ├── test_multiarray.py
│   │   │   │   ├── test_multiarray.pyc
│   │   │   │   ├── test_numeric.py
│   │   │   │   ├── test_numeric.pyc
│   │   │   │   ├── test_regression.py
│   │   │   │   └── test_regression.pyc
│   │   │   ├── polynomial
│   │   │   │   ├── chebyshev.py
│   │   │   │   ├── chebyshev.pyc
│   │   │   │   ├── hermite_e.py
│   │   │   │   ├── hermite_e.pyc
│   │   │   │   ├── hermite.py
│   │   │   │   ├── hermite.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __init__.pyc
│   │   │   │   ├── laguerre.py
│   │   │   │   ├── laguerre.pyc
│   │   │   │   ├── legendre.py
│   │   │   │   ├── legendre.pyc
│   │   │   │   ├── _polybase.py
│   │   │   │   ├── _polybase.pyc
│   │   │   │   ├── polynomial.py
│   │   │   │   ├── polynomial.pyc
│   │   │   │   ├── polyutils.py
│   │   │   │   ├── polyutils.pyc
│   │   │   │   ├── setup.py
│   │   │   │   ├── setup.pyc
│   │   │   │   └── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __init__.pyc
│   │   │   │   ├── test_chebyshev.py
│   │   │   │   ├── test_chebyshev.pyc
│   │   │   │   ├── test_classes.py
│   │   │   │   ├── test_classes.pyc
│   │   │   │   ├── test_hermite_e.py
│   │   │   │   ├── test_hermite_e.pyc
│   │   │   │   ├── test_hermite.py
│   │   │   │   ├── test_hermite.pyc
│   │   │   │   ├── test_laguerre.py
│   │   │   │   ├── test_laguerre.pyc
│   │   │   │   ├── test_legendre.py
│   │   │   │   ├── test_legendre.pyc
│   │   │   │   ├── test_polynomial.py
│   │   │   │   ├── test_polynomial.pyc
│   │   │   │   ├── test_polyutils.py
│   │   │   │   ├── test_polyutils.pyc
│   │   │   │   ├── test_printing.py
│   │   │   │   └── test_printing.pyc
│   │   │   ├── random
│   │   │   │   ├── info.py
│   │   │   │   ├── info.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __init__.pyc
│   │   │   │   ├── mtrand.pyd
│   │   │   │   ├── randomkit.h
│   │   │   │   ├── setup.py
│   │   │   │   ├── setup.pyc
│   │   │   │   └── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __init__.pyc
│   │   │   │   ├── test_random.py
│   │   │   │   ├── test_random.pyc
│   │   │   │   ├── test_regression.py
│   │   │   │   └── test_regression.pyc
│   │   │   ├── setup.py
│   │   │   ├── setup.pyc
│   │   │   ├── testing
│   │   │   │   ├── decorators.py
│   │   │   │   ├── decorators.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __init__.pyc
│   │   │   │   ├── noseclasses.py
│   │   │   │   ├── noseclasses.pyc
│   │   │   │   ├── nosetester.py
│   │   │   │   ├── nosetester.pyc
│   │   │   │   ├── nose_tools
│   │   │   │   │   ├── decorators.py
│   │   │   │   │   ├── decorators.pyc
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __init__.pyc
│   │   │   │   │   ├── noseclasses.py
│   │   │   │   │   ├── noseclasses.pyc
│   │   │   │   │   ├── nosetester.py
│   │   │   │   │   ├── nosetester.pyc
│   │   │   │   │   ├── parameterized.py
│   │   │   │   │   ├── parameterized.pyc
│   │   │   │   │   ├── utils.py
│   │   │   │   │   └── utils.pyc
│   │   │   │   ├── print_coercion_tables.py
│   │   │   │   ├── print_coercion_tables.pyc
│   │   │   │   ├── setup.py
│   │   │   │   ├── setup.pyc
│   │   │   │   ├── tests
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __init__.pyc
│   │   │   │   │   ├── test_decorators.py
│   │   │   │   │   ├── test_decorators.pyc
│   │   │   │   │   ├── test_doctesting.py
│   │   │   │   │   ├── test_doctesting.pyc
│   │   │   │   │   ├── test_utils.py
│   │   │   │   │   └── test_utils.pyc
│   │   │   │   ├── utils.py
│   │   │   │   └── utils.pyc
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __init__.pyc
│   │   │   │   ├── test_ctypeslib.py
│   │   │   │   ├── test_ctypeslib.pyc
│   │   │   │   ├── test_matlib.py
│   │   │   │   ├── test_matlib.pyc
│   │   │   │   ├── test_numpy_version.py
│   │   │   │   ├── test_numpy_version.pyc
│   │   │   │   ├── test_reloading.py
│   │   │   │   ├── test_reloading.pyc
│   │   │   │   ├── test_scripts.py
│   │   │   │   ├── test_scripts.pyc
│   │   │   │   ├── test_warnings.py
│   │   │   │   └── test_warnings.pyc
│   │   │   ├── version.py
│   │   │   └── version.pyc
│   │   ├── numpy-1.14.2.dist-info
│   │   │   ├── DESCRIPTION.rst
│   │   │   ├── INSTALLER
│   │   │   ├── METADATA
│   │   │   ├── metadata.json
│   │   │   ├── RECORD
│   │   │   ├── top_level.txt
│   │   │   └── WHEEL
│   │   ├── pip
│   │   │   ├── basecommand.py
│   │   │   ├── basecommand.pyc
│   │   │   ├── baseparser.py
│   │   │   ├── baseparser.pyc
│   │   │   ├── cmdoptions.py
│   │   │   ├── cmdoptions.pyc
│   │   │   ├── commands
│   │   │   │   ├── check.py
│   │   │   │   ├── check.pyc
│   │   │   │   ├── completion.py
│   │   │   │   ├── completion.pyc
│   │   │   │   ├── download.py
│   │   │   │   ├── download.pyc
│   │   │   │   ├── freeze.py
│   │   │   │   ├── freeze.pyc
│   │   │   │   ├── hash.py
│   │   │   │   ├── hash.pyc
│   │   │   │   ├── help.py
│   │   │   │   ├── help.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __init__.pyc
│   │   │   │   ├── install.py
│   │   │   │   ├── install.pyc
│   │   │   │   ├── list.py
│   │   │   │   ├── list.pyc
│   │   │   │   ├── search.py
│   │   │   │   ├── search.pyc
│   │   │   │   ├── show.py
│   │   │   │   ├── show.pyc
│   │   │   │   ├── uninstall.py
│   │   │   │   ├── uninstall.pyc
│   │   │   │   ├── wheel.py
│   │   │   │   └── wheel.pyc
│   │   │   ├── compat
│   │   │   │   ├── dictconfig.py
│   │   │   │   ├── dictconfig.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   └── __init__.pyc
│   │   │   ├── download.py
│   │   │   ├── download.pyc
│   │   │   ├── exceptions.py
│   │   │   ├── exceptions.pyc
│   │   │   ├── index.py
│   │   │   ├── index.pyc
│   │   │   ├── __init__.py
│   │   │   ├── __init__.pyc
│   │   │   ├── locations.py
│   │   │   ├── locations.pyc
│   │   │   ├── __main__.py
│   │   │   ├── __main__.pyc
│   │   │   ├── models
│   │   │   │   ├── index.py
│   │   │   │   ├── index.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   └── __init__.pyc
│   │   │   ├── operations
│   │   │   │   ├── check.py
│   │   │   │   ├── check.pyc
│   │   │   │   ├── freeze.py
│   │   │   │   ├── freeze.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   └── __init__.pyc
│   │   │   ├── pep425tags.py
│   │   │   ├── pep425tags.pyc
│   │   │   ├── req
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __init__.pyc
│   │   │   │   ├── req_file.py
│   │   │   │   ├── req_file.pyc
│   │   │   │   ├── req_install.py
│   │   │   │   ├── req_install.pyc
│   │   │   │   ├── req_set.py
│   │   │   │   ├── req_set.pyc
│   │   │   │   ├── req_uninstall.py
│   │   │   │   └── req_uninstall.pyc
│   │   │   ├── status_codes.py
│   │   │   ├── status_codes.pyc
│   │   │   ├── utils
│   │   │   │   ├── appdirs.py
│   │   │   │   ├── appdirs.pyc
│   │   │   │   ├── build.py
│   │   │   │   ├── build.pyc
│   │   │   │   ├── deprecation.py
│   │   │   │   ├── deprecation.pyc
│   │   │   │   ├── encoding.py
│   │   │   │   ├── encoding.pyc
│   │   │   │   ├── filesystem.py
│   │   │   │   ├── filesystem.pyc
│   │   │   │   ├── glibc.py
│   │   │   │   ├── glibc.pyc
│   │   │   │   ├── hashes.py
│   │   │   │   ├── hashes.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __init__.pyc
│   │   │   │   ├── logging.py
│   │   │   │   ├── logging.pyc
│   │   │   │   ├── outdated.py
│   │   │   │   ├── outdated.pyc
│   │   │   │   ├── packaging.py
│   │   │   │   ├── packaging.pyc
│   │   │   │   ├── setuptools_build.py
│   │   │   │   ├── setuptools_build.pyc
│   │   │   │   ├── ui.py
│   │   │   │   └── ui.pyc
│   │   │   ├── vcs
│   │   │   │   ├── bazaar.py
│   │   │   │   ├── bazaar.pyc
│   │   │   │   ├── git.py
│   │   │   │   ├── git.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __init__.pyc
│   │   │   │   ├── mercurial.py
│   │   │   │   ├── mercurial.pyc
│   │   │   │   ├── subversion.py
│   │   │   │   └── subversion.pyc
│   │   │   ├── _vendor
│   │   │   │   ├── appdirs.py
│   │   │   │   ├── appdirs.pyc
│   │   │   │   ├── cachecontrol
│   │   │   │   │   ├── adapter.py
│   │   │   │   │   ├── adapter.pyc
│   │   │   │   │   ├── cache.py
│   │   │   │   │   ├── cache.pyc
│   │   │   │   │   ├── caches
│   │   │   │   │   │   ├── file_cache.py
│   │   │   │   │   │   ├── file_cache.pyc
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── __init__.pyc
│   │   │   │   │   │   ├── redis_cache.py
│   │   │   │   │   │   └── redis_cache.pyc
│   │   │   │   │   ├── _cmd.py
│   │   │   │   │   ├── _cmd.pyc
│   │   │   │   │   ├── compat.py
│   │   │   │   │   ├── compat.pyc
│   │   │   │   │   ├── controller.py
│   │   │   │   │   ├── controller.pyc
│   │   │   │   │   ├── filewrapper.py
│   │   │   │   │   ├── filewrapper.pyc
│   │   │   │   │   ├── heuristics.py
│   │   │   │   │   ├── heuristics.pyc
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __init__.pyc
│   │   │   │   │   ├── serialize.py
│   │   │   │   │   ├── serialize.pyc
│   │   │   │   │   ├── wrapper.py
│   │   │   │   │   └── wrapper.pyc
│   │   │   │   ├── colorama
│   │   │   │   │   ├── ansi.py
│   │   │   │   │   ├── ansi.pyc
│   │   │   │   │   ├── ansitowin32.py
│   │   │   │   │   ├── ansitowin32.pyc
│   │   │   │   │   ├── initialise.py
│   │   │   │   │   ├── initialise.pyc
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __init__.pyc
│   │   │   │   │   ├── win32.py
│   │   │   │   │   ├── win32.pyc
│   │   │   │   │   ├── winterm.py
│   │   │   │   │   └── winterm.pyc
│   │   │   │   ├── distlib
│   │   │   │   │   ├── _backport
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── __init__.pyc
│   │   │   │   │   │   ├── misc.py
│   │   │   │   │   │   ├── misc.pyc
│   │   │   │   │   │   ├── shutil.py
│   │   │   │   │   │   ├── shutil.pyc
│   │   │   │   │   │   ├── sysconfig.cfg
│   │   │   │   │   │   ├── sysconfig.py
│   │   │   │   │   │   ├── sysconfig.pyc
│   │   │   │   │   │   ├── tarfile.py
│   │   │   │   │   │   └── tarfile.pyc
│   │   │   │   │   ├── compat.py
│   │   │   │   │   ├── compat.pyc
│   │   │   │   │   ├── database.py
│   │   │   │   │   ├── database.pyc
│   │   │   │   │   ├── index.py
│   │   │   │   │   ├── index.pyc
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __init__.pyc
│   │   │   │   │   ├── locators.py
│   │   │   │   │   ├── locators.pyc
│   │   │   │   │   ├── manifest.py
│   │   │   │   │   ├── manifest.pyc
│   │   │   │   │   ├── markers.py
│   │   │   │   │   ├── markers.pyc
│   │   │   │   │   ├── metadata.py
│   │   │   │   │   ├── metadata.pyc
│   │   │   │   │   ├── resources.py
│   │   │   │   │   ├── resources.pyc
│   │   │   │   │   ├── scripts.py
│   │   │   │   │   ├── scripts.pyc
│   │   │   │   │   ├── t32.exe
│   │   │   │   │   ├── t64.exe
│   │   │   │   │   ├── util.py
│   │   │   │   │   ├── util.pyc
│   │   │   │   │   ├── version.py
│   │   │   │   │   ├── version.pyc
│   │   │   │   │   ├── w32.exe
│   │   │   │   │   ├── w64.exe
│   │   │   │   │   ├── wheel.py
│   │   │   │   │   └── wheel.pyc
│   │   │   │   ├── distro.py
│   │   │   │   ├── distro.pyc
│   │   │   │   ├── html5lib
│   │   │   │   │   ├── constants.py
│   │   │   │   │   ├── constants.pyc
│   │   │   │   │   ├── filters
│   │   │   │   │   │   ├── alphabeticalattributes.py
│   │   │   │   │   │   ├── alphabeticalattributes.pyc
│   │   │   │   │   │   ├── base.py
│   │   │   │   │   │   ├── base.pyc
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── __init__.pyc
│   │   │   │   │   │   ├── inject_meta_charset.py
│   │   │   │   │   │   ├── inject_meta_charset.pyc
│   │   │   │   │   │   ├── lint.py
│   │   │   │   │   │   ├── lint.pyc
│   │   │   │   │   │   ├── optionaltags.py
│   │   │   │   │   │   ├── optionaltags.pyc
│   │   │   │   │   │   ├── sanitizer.py
│   │   │   │   │   │   ├── sanitizer.pyc
│   │   │   │   │   │   ├── whitespace.py
│   │   │   │   │   │   └── whitespace.pyc
│   │   │   │   │   ├── html5parser.py
│   │   │   │   │   ├── html5parser.pyc
│   │   │   │   │   ├── _ihatexml.py
│   │   │   │   │   ├── _ihatexml.pyc
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __init__.pyc
│   │   │   │   │   ├── _inputstream.py
│   │   │   │   │   ├── _inputstream.pyc
│   │   │   │   │   ├── serializer.py
│   │   │   │   │   ├── serializer.pyc
│   │   │   │   │   ├── _tokenizer.py
│   │   │   │   │   ├── _tokenizer.pyc
│   │   │   │   │   ├── treeadapters
│   │   │   │   │   │   ├── genshi.py
│   │   │   │   │   │   ├── genshi.pyc
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── __init__.pyc
│   │   │   │   │   │   ├── sax.py
│   │   │   │   │   │   └── sax.pyc
│   │   │   │   │   ├── treebuilders
│   │   │   │   │   │   ├── base.py
│   │   │   │   │   │   ├── base.pyc
│   │   │   │   │   │   ├── dom.py
│   │   │   │   │   │   ├── dom.pyc
│   │   │   │   │   │   ├── etree_lxml.py
│   │   │   │   │   │   ├── etree_lxml.pyc
│   │   │   │   │   │   ├── etree.py
│   │   │   │   │   │   ├── etree.pyc
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   └── __init__.pyc
│   │   │   │   │   ├── treewalkers
│   │   │   │   │   │   ├── base.py
│   │   │   │   │   │   ├── base.pyc
│   │   │   │   │   │   ├── dom.py
│   │   │   │   │   │   ├── dom.pyc
│   │   │   │   │   │   ├── etree_lxml.py
│   │   │   │   │   │   ├── etree_lxml.pyc
│   │   │   │   │   │   ├── etree.py
│   │   │   │   │   │   ├── etree.pyc
│   │   │   │   │   │   ├── genshi.py
│   │   │   │   │   │   ├── genshi.pyc
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   └── __init__.pyc
│   │   │   │   │   ├── _trie
│   │   │   │   │   │   ├── _base.py
│   │   │   │   │   │   ├── _base.pyc
│   │   │   │   │   │   ├── datrie.py
│   │   │   │   │   │   ├── datrie.pyc
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── __init__.pyc
│   │   │   │   │   │   ├── py.py
│   │   │   │   │   │   └── py.pyc
│   │   │   │   │   ├── _utils.py
│   │   │   │   │   └── _utils.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __init__.pyc
│   │   │   │   ├── ipaddress.py
│   │   │   │   ├── ipaddress.pyc
│   │   │   │   ├── lockfile
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __init__.pyc
│   │   │   │   │   ├── linklockfile.py
│   │   │   │   │   ├── linklockfile.pyc
│   │   │   │   │   ├── mkdirlockfile.py
│   │   │   │   │   ├── mkdirlockfile.pyc
│   │   │   │   │   ├── pidlockfile.py
│   │   │   │   │   ├── pidlockfile.pyc
│   │   │   │   │   ├── sqlitelockfile.py
│   │   │   │   │   ├── sqlitelockfile.pyc
│   │   │   │   │   ├── symlinklockfile.py
│   │   │   │   │   └── symlinklockfile.pyc
│   │   │   │   ├── ordereddict.py
│   │   │   │   ├── ordereddict.pyc
│   │   │   │   ├── packaging
│   │   │   │   │   ├── __about__.py
│   │   │   │   │   ├── __about__.pyc
│   │   │   │   │   ├── _compat.py
│   │   │   │   │   ├── _compat.pyc
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __init__.pyc
│   │   │   │   │   ├── markers.py
│   │   │   │   │   ├── markers.pyc
│   │   │   │   │   ├── requirements.py
│   │   │   │   │   ├── requirements.pyc
│   │   │   │   │   ├── specifiers.py
│   │   │   │   │   ├── specifiers.pyc
│   │   │   │   │   ├── _structures.py
│   │   │   │   │   ├── _structures.pyc
│   │   │   │   │   ├── utils.py
│   │   │   │   │   ├── utils.pyc
│   │   │   │   │   ├── version.py
│   │   │   │   │   └── version.pyc
│   │   │   │   ├── pkg_resources
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── __init__.pyc
│   │   │   │   ├── progress
│   │   │   │   │   ├── bar.py
│   │   │   │   │   ├── bar.pyc
│   │   │   │   │   ├── counter.py
│   │   │   │   │   ├── counter.pyc
│   │   │   │   │   ├── helpers.py
│   │   │   │   │   ├── helpers.pyc
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __init__.pyc
│   │   │   │   │   ├── spinner.py
│   │   │   │   │   └── spinner.pyc
│   │   │   │   ├── pyparsing.py
│   │   │   │   ├── pyparsing.pyc
│   │   │   │   ├── requests
│   │   │   │   │   ├── adapters.py
│   │   │   │   │   ├── adapters.pyc
│   │   │   │   │   ├── api.py
│   │   │   │   │   ├── api.pyc
│   │   │   │   │   ├── auth.py
│   │   │   │   │   ├── auth.pyc
│   │   │   │   │   ├── cacert.pem
│   │   │   │   │   ├── certs.py
│   │   │   │   │   ├── certs.pyc
│   │   │   │   │   ├── compat.py
│   │   │   │   │   ├── compat.pyc
│   │   │   │   │   ├── cookies.py
│   │   │   │   │   ├── cookies.pyc
│   │   │   │   │   ├── exceptions.py
│   │   │   │   │   ├── exceptions.pyc
│   │   │   │   │   ├── hooks.py
│   │   │   │   │   ├── hooks.pyc
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __init__.pyc
│   │   │   │   │   ├── models.py
│   │   │   │   │   ├── models.pyc
│   │   │   │   │   ├── packages
│   │   │   │   │   │   ├── chardet
│   │   │   │   │   │   │   ├── big5freq.py
│   │   │   │   │   │   │   ├── big5freq.pyc
│   │   │   │   │   │   │   ├── big5prober.py
│   │   │   │   │   │   │   ├── big5prober.pyc
│   │   │   │   │   │   │   ├── chardetect.py
│   │   │   │   │   │   │   ├── chardetect.pyc
│   │   │   │   │   │   │   ├── chardistribution.py
│   │   │   │   │   │   │   ├── chardistribution.pyc
│   │   │   │   │   │   │   ├── charsetgroupprober.py
│   │   │   │   │   │   │   ├── charsetgroupprober.pyc
│   │   │   │   │   │   │   ├── charsetprober.py
│   │   │   │   │   │   │   ├── charsetprober.pyc
│   │   │   │   │   │   │   ├── codingstatemachine.py
│   │   │   │   │   │   │   ├── codingstatemachine.pyc
│   │   │   │   │   │   │   ├── compat.py
│   │   │   │   │   │   │   ├── compat.pyc
│   │   │   │   │   │   │   ├── constants.py
│   │   │   │   │   │   │   ├── constants.pyc
│   │   │   │   │   │   │   ├── cp949prober.py
│   │   │   │   │   │   │   ├── cp949prober.pyc
│   │   │   │   │   │   │   ├── escprober.py
│   │   │   │   │   │   │   ├── escprober.pyc
│   │   │   │   │   │   │   ├── escsm.py
│   │   │   │   │   │   │   ├── escsm.pyc
│   │   │   │   │   │   │   ├── eucjpprober.py
│   │   │   │   │   │   │   ├── eucjpprober.pyc
│   │   │   │   │   │   │   ├── euckrfreq.py
│   │   │   │   │   │   │   ├── euckrfreq.pyc
│   │   │   │   │   │   │   ├── euckrprober.py
│   │   │   │   │   │   │   ├── euckrprober.pyc
│   │   │   │   │   │   │   ├── euctwfreq.py
│   │   │   │   │   │   │   ├── euctwfreq.pyc
│   │   │   │   │   │   │   ├── euctwprober.py
│   │   │   │   │   │   │   ├── euctwprober.pyc
│   │   │   │   │   │   │   ├── gb2312freq.py
│   │   │   │   │   │   │   ├── gb2312freq.pyc
│   │   │   │   │   │   │   ├── gb2312prober.py
│   │   │   │   │   │   │   ├── gb2312prober.pyc
│   │   │   │   │   │   │   ├── hebrewprober.py
│   │   │   │   │   │   │   ├── hebrewprober.pyc
│   │   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   │   ├── __init__.pyc
│   │   │   │   │   │   │   ├── jisfreq.py
│   │   │   │   │   │   │   ├── jisfreq.pyc
│   │   │   │   │   │   │   ├── jpcntx.py
│   │   │   │   │   │   │   ├── jpcntx.pyc
│   │   │   │   │   │   │   ├── langbulgarianmodel.py
│   │   │   │   │   │   │   ├── langbulgarianmodel.pyc
│   │   │   │   │   │   │   ├── langcyrillicmodel.py
│   │   │   │   │   │   │   ├── langcyrillicmodel.pyc
│   │   │   │   │   │   │   ├── langgreekmodel.py
│   │   │   │   │   │   │   ├── langgreekmodel.pyc
│   │   │   │   │   │   │   ├── langhebrewmodel.py
│   │   │   │   │   │   │   ├── langhebrewmodel.pyc
│   │   │   │   │   │   │   ├── langhungarianmodel.py
│   │   │   │   │   │   │   ├── langhungarianmodel.pyc
│   │   │   │   │   │   │   ├── langthaimodel.py
│   │   │   │   │   │   │   ├── langthaimodel.pyc
│   │   │   │   │   │   │   ├── latin1prober.py
│   │   │   │   │   │   │   ├── latin1prober.pyc
│   │   │   │   │   │   │   ├── mbcharsetprober.py
│   │   │   │   │   │   │   ├── mbcharsetprober.pyc
│   │   │   │   │   │   │   ├── mbcsgroupprober.py
│   │   │   │   │   │   │   ├── mbcsgroupprober.pyc
│   │   │   │   │   │   │   ├── mbcssm.py
│   │   │   │   │   │   │   ├── mbcssm.pyc
│   │   │   │   │   │   │   ├── sbcharsetprober.py
│   │   │   │   │   │   │   ├── sbcharsetprober.pyc
│   │   │   │   │   │   │   ├── sbcsgroupprober.py
│   │   │   │   │   │   │   ├── sbcsgroupprober.pyc
│   │   │   │   │   │   │   ├── sjisprober.py
│   │   │   │   │   │   │   ├── sjisprober.pyc
│   │   │   │   │   │   │   ├── universaldetector.py
│   │   │   │   │   │   │   ├── universaldetector.pyc
│   │   │   │   │   │   │   ├── utf8prober.py
│   │   │   │   │   │   │   └── utf8prober.pyc
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── __init__.pyc
│   │   │   │   │   │   └── urllib3
│   │   │   │   │   │   ├── _collections.py
│   │   │   │   │   │   ├── _collections.pyc
│   │   │   │   │   │   ├── connectionpool.py
│   │   │   │   │   │   ├── connectionpool.pyc
│   │   │   │   │   │   ├── connection.py
│   │   │   │   │   │   ├── connection.pyc
│   │   │   │   │   │   ├── contrib
│   │   │   │   │   │   │   ├── appengine.py
│   │   │   │   │   │   │   ├── appengine.pyc
│   │   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   │   ├── __init__.pyc
│   │   │   │   │   │   │   ├── ntlmpool.py
│   │   │   │   │   │   │   ├── ntlmpool.pyc
│   │   │   │   │   │   │   ├── pyopenssl.py
│   │   │   │   │   │   │   ├── pyopenssl.pyc
│   │   │   │   │   │   │   ├── socks.py
│   │   │   │   │   │   │   └── socks.pyc
│   │   │   │   │   │   ├── exceptions.py
│   │   │   │   │   │   ├── exceptions.pyc
│   │   │   │   │   │   ├── fields.py
│   │   │   │   │   │   ├── fields.pyc
│   │   │   │   │   │   ├── filepost.py
│   │   │   │   │   │   ├── filepost.pyc
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── __init__.pyc
│   │   │   │   │   │   ├── packages
│   │   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   │   ├── __init__.pyc
│   │   │   │   │   │   │   ├── ordered_dict.py
│   │   │   │   │   │   │   ├── ordered_dict.pyc
│   │   │   │   │   │   │   ├── six.py
│   │   │   │   │   │   │   ├── six.pyc
│   │   │   │   │   │   │   └── ssl_match_hostname
│   │   │   │   │   │   │   ├── _implementation.py
│   │   │   │   │   │   │   ├── _implementation.pyc
│   │   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   │   └── __init__.pyc
│   │   │   │   │   │   ├── poolmanager.py
│   │   │   │   │   │   ├── poolmanager.pyc
│   │   │   │   │   │   ├── request.py
│   │   │   │   │   │   ├── request.pyc
│   │   │   │   │   │   ├── response.py
│   │   │   │   │   │   ├── response.pyc
│   │   │   │   │   │   └── util
│   │   │   │   │   │   ├── connection.py
│   │   │   │   │   │   ├── connection.pyc
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── __init__.pyc
│   │   │   │   │   │   ├── request.py
│   │   │   │   │   │   ├── request.pyc
│   │   │   │   │   │   ├── response.py
│   │   │   │   │   │   ├── response.pyc
│   │   │   │   │   │   ├── retry.py
│   │   │   │   │   │   ├── retry.pyc
│   │   │   │   │   │   ├── ssl_.py
│   │   │   │   │   │   ├── ssl_.pyc
│   │   │   │   │   │   ├── timeout.py
│   │   │   │   │   │   ├── timeout.pyc
│   │   │   │   │   │   ├── url.py
│   │   │   │   │   │   └── url.pyc
│   │   │   │   │   ├── sessions.py
│   │   │   │   │   ├── sessions.pyc
│   │   │   │   │   ├── status_codes.py
│   │   │   │   │   ├── status_codes.pyc
│   │   │   │   │   ├── structures.py
│   │   │   │   │   ├── structures.pyc
│   │   │   │   │   ├── utils.py
│   │   │   │   │   └── utils.pyc
│   │   │   │   ├── retrying.py
│   │   │   │   ├── retrying.pyc
│   │   │   │   ├── re-vendor.py
│   │   │   │   ├── re-vendor.pyc
│   │   │   │   ├── six.py
│   │   │   │   ├── six.pyc
│   │   │   │   └── webencodings
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __init__.pyc
│   │   │   │   ├── labels.py
│   │   │   │   ├── labels.pyc
│   │   │   │   ├── mklabels.py
│   │   │   │   ├── mklabels.pyc
│   │   │   │   ├── tests.py
│   │   │   │   ├── tests.pyc
│   │   │   │   ├── x_user_defined.py
│   │   │   │   └── x_user_defined.pyc
│   │   │   ├── wheel.py
│   │   │   └── wheel.pyc
│   │   ├── pip-9.0.1.dist-info
│   │   │   ├── DESCRIPTION.rst
│   │   │   ├── entry_points.txt
│   │   │   ├── INSTALLER
│   │   │   ├── METADATA
│   │   │   ├── metadata.json
│   │   │   ├── RECORD
│   │   │   ├── top_level.txt
│   │   │   └── WHEEL
│   │   ├── pkg_resources
│   │   │   ├── extern
│   │   │   │   ├── __init__.py
│   │   │   │   └── __init__.pyc
│   │   │   ├── __init__.py
│   │   │   ├── __init__.pyc
│   │   │   └── _vendor
│   │   │   ├── appdirs.py
│   │   │   ├── appdirs.pyc
│   │   │   ├── __init__.py
│   │   │   ├── __init__.pyc
│   │   │   ├── packaging
│   │   │   │   ├── __about__.py
│   │   │   │   ├── __about__.pyc
│   │   │   │   ├── _compat.py
│   │   │   │   ├── _compat.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __init__.pyc
│   │   │   │   ├── markers.py
│   │   │   │   ├── markers.pyc
│   │   │   │   ├── requirements.py
│   │   │   │   ├── requirements.pyc
│   │   │   │   ├── specifiers.py
│   │   │   │   ├── specifiers.pyc
│   │   │   │   ├── _structures.py
│   │   │   │   ├── _structures.pyc
│   │   │   │   ├── utils.py
│   │   │   │   ├── utils.pyc
│   │   │   │   ├── version.py
│   │   │   │   └── version.pyc
│   │   │   ├── pyparsing.py
│   │   │   ├── pyparsing.pyc
│   │   │   ├── six.py
│   │   │   └── six.pyc
│   │   ├── setuptools
│   │   │   ├── archive_util.py
│   │   │   ├── archive_util.pyc
│   │   │   ├── cli-32.exe
│   │   │   ├── cli-64.exe
│   │   │   ├── cli.exe
│   │   │   ├── command
│   │   │   │   ├── alias.py
│   │   │   │   ├── alias.pyc
│   │   │   │   ├── bdist_egg.py
│   │   │   │   ├── bdist_egg.pyc
│   │   │   │   ├── bdist_rpm.py
│   │   │   │   ├── bdist_rpm.pyc
│   │   │   │   ├── bdist_wininst.py
│   │   │   │   ├── bdist_wininst.pyc
│   │   │   │   ├── build_ext.py
│   │   │   │   ├── build_ext.pyc
│   │   │   │   ├── build_py.py
│   │   │   │   ├── build_py.pyc
│   │   │   │   ├── develop.py
│   │   │   │   ├── develop.pyc
│   │   │   │   ├── easy_install.py
│   │   │   │   ├── easy_install.pyc
│   │   │   │   ├── egg_info.py
│   │   │   │   ├── egg_info.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __init__.pyc
│   │   │   │   ├── install_egg_info.py
│   │   │   │   ├── install_egg_info.pyc
│   │   │   │   ├── install_lib.py
│   │   │   │   ├── install_lib.pyc
│   │   │   │   ├── install.py
│   │   │   │   ├── install.pyc
│   │   │   │   ├── install_scripts.py
│   │   │   │   ├── install_scripts.pyc
│   │   │   │   ├── launcher manifest.xml
│   │   │   │   ├── py36compat.py
│   │   │   │   ├── py36compat.pyc
│   │   │   │   ├── register.py
│   │   │   │   ├── register.pyc
│   │   │   │   ├── rotate.py
│   │   │   │   ├── rotate.pyc
│   │   │   │   ├── saveopts.py
│   │   │   │   ├── saveopts.pyc
│   │   │   │   ├── sdist.py
│   │   │   │   ├── sdist.pyc
│   │   │   │   ├── setopt.py
│   │   │   │   ├── setopt.pyc
│   │   │   │   ├── test.py
│   │   │   │   ├── test.pyc
│   │   │   │   ├── upload_docs.py
│   │   │   │   ├── upload_docs.pyc
│   │   │   │   ├── upload.py
│   │   │   │   └── upload.pyc
│   │   │   ├── depends.py
│   │   │   ├── depends.pyc
│   │   │   ├── dist.py
│   │   │   ├── dist.pyc
│   │   │   ├── extension.py
│   │   │   ├── extension.pyc
│   │   │   ├── extern
│   │   │   │   ├── __init__.py
│   │   │   │   └── __init__.pyc
│   │   │   ├── glob.py
│   │   │   ├── glob.pyc
│   │   │   ├── gui-32.exe
│   │   │   ├── gui-64.exe
│   │   │   ├── gui.exe
│   │   │   ├── __init__.py
│   │   │   ├── __init__.pyc
│   │   │   ├── launch.py
│   │   │   ├── launch.pyc
│   │   │   ├── lib2to3_ex.py
│   │   │   ├── lib2to3_ex.pyc
│   │   │   ├── monkey.py
│   │   │   ├── monkey.pyc
│   │   │   ├── msvc.py
│   │   │   ├── msvc.pyc
│   │   │   ├── namespaces.py
│   │   │   ├── namespaces.pyc
│   │   │   ├── package_index.py
│   │   │   ├── package_index.pyc
│   │   │   ├── py26compat.py
│   │   │   ├── py26compat.pyc
│   │   │   ├── py27compat.py
│   │   │   ├── py27compat.pyc
│   │   │   ├── py31compat.py
│   │   │   ├── py31compat.pyc
│   │   │   ├── sandbox.py
│   │   │   ├── sandbox.pyc
│   │   │   ├── script (dev).tmpl
│   │   │   ├── script.tmpl
│   │   │   ├── site-patch.py
│   │   │   ├── site-patch.pyc
│   │   │   ├── ssl_support.py
│   │   │   ├── ssl_support.pyc
│   │   │   ├── unicode_utils.py
│   │   │   ├── unicode_utils.pyc
│   │   │   ├── version.py
│   │   │   ├── version.pyc
│   │   │   ├── windows_support.py
│   │   │   └── windows_support.pyc
│   │   ├── setuptools-28.8.0.dist-info
│   │   │   ├── dependency_links.txt
│   │   │   ├── DESCRIPTION.rst
│   │   │   ├── entry_points.txt
│   │   │   ├── INSTALLER
│   │   │   ├── METADATA
│   │   │   ├── metadata.json
│   │   │   ├── RECORD
│   │   │   ├── top_level.txt
│   │   │   ├── WHEEL
│   │   │   └── zip-safe
│   │   ├── wheel
│   │   │   ├── archive.py
│   │   │   ├── archive.pyc
│   │   │   ├── bdist_wheel.py
│   │   │   ├── bdist_wheel.pyc
│   │   │   ├── decorator.py
│   │   │   ├── decorator.pyc
│   │   │   ├── egg2wheel.py
│   │   │   ├── egg2wheel.pyc
│   │   │   ├── eggnames.txt
│   │   │   ├── __init__.py
│   │   │   ├── __init__.pyc
│   │   │   ├── install.py
│   │   │   ├── install.pyc
│   │   │   ├── __main__.py
│   │   │   ├── __main__.pyc
│   │   │   ├── metadata.py
│   │   │   ├── metadata.pyc
│   │   │   ├── paths.py
│   │   │   ├── paths.pyc
│   │   │   ├── pep425tags.py
│   │   │   ├── pep425tags.pyc
│   │   │   ├── pkginfo.py
│   │   │   ├── pkginfo.pyc
│   │   │   ├── signatures
│   │   │   │   ├── djbec.py
│   │   │   │   ├── djbec.pyc
│   │   │   │   ├── ed25519py.py
│   │   │   │   ├── ed25519py.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __init__.pyc
│   │   │   │   ├── keys.py
│   │   │   │   └── keys.pyc
│   │   │   ├── test
│   │   │   │   ├── complex-dist
│   │   │   │   │   ├── complexdist
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   └── __init__.pyc
│   │   │   │   │   ├── setup.py
│   │   │   │   │   └── setup.pyc
│   │   │   │   ├── headers.dist
│   │   │   │   │   ├── header.h
│   │   │   │   │   ├── headersdist.py
│   │   │   │   │   ├── headersdist.pyc
│   │   │   │   │   ├── setup.py
│   │   │   │   │   └── setup.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __init__.pyc
│   │   │   │   ├── pydist-schema.json
│   │   │   │   ├── simple.dist
│   │   │   │   │   ├── setup.py
│   │   │   │   │   ├── setup.pyc
│   │   │   │   │   └── simpledist
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── __init__.pyc
│   │   │   │   ├── test-1.0-py2.py3-none-win32.whl
│   │   │   │   ├── test_basic.py
│   │   │   │   ├── test_basic.pyc
│   │   │   │   ├── test_install.py
│   │   │   │   ├── test_install.pyc
│   │   │   │   ├── test_keys.py
│   │   │   │   ├── test_keys.pyc
│   │   │   │   ├── test_paths.py
│   │   │   │   ├── test_paths.pyc
│   │   │   │   ├── test_ranking.py
│   │   │   │   ├── test_ranking.pyc
│   │   │   │   ├── test_signatures.py
│   │   │   │   ├── test_signatures.pyc
│   │   │   │   ├── test_tagopt.py
│   │   │   │   ├── test_tagopt.pyc
│   │   │   │   ├── test_tool.py
│   │   │   │   ├── test_tool.pyc
│   │   │   │   ├── test_wheelfile.py
│   │   │   │   └── test_wheelfile.pyc
│   │   │   ├── tool
│   │   │   │   ├── __init__.py
│   │   │   │   └── __init__.pyc
│   │   │   ├── util.py
│   │   │   ├── util.pyc
│   │   │   ├── wininst2wheel.py
│   │   │   └── wininst2wheel.pyc
│   │   └── wheel-0.29.0.dist-info
│   │   ├── DESCRIPTION.rst
│   │   ├── entry_points.txt
│   │   ├── INSTALLER
│   │   ├── LICENSE.txt
│   │   ├── METADATA
│   │   ├── metadata.json
│   │   ├── RECORD
│   │   ├── top_level.txt
│   │   └── WHEEL
│   ├── site.py
│   ├── site.pyc
│   ├── sre_compile.py
│   ├── sre_compile.pyc
│   ├── sre_constants.py
│   ├── sre_constants.pyc
│   ├── sre_parse.py
│   ├── sre_parse.pyc
│   ├── sre.py
│   ├── stat.py
│   ├── stat.pyc
│   ├── types.py
│   ├── types.pyc
│   ├── UserDict.py
│   ├── UserDict.pyc
│   ├── warnings.py
│   ├── warnings.pyc
│   ├── _weakrefset.py
│   └── _weakrefset.pyc
├── pip-selfcheck.json
├── Scripts
│   ├── activate
│   ├── activate.bat
│   ├── activate.ps1
│   ├── activate_this.py
│   ├── deactivate.bat
│   ├── easy_install-2.7.exe
│   ├── easy_install.exe
│   ├── f2py.py
│   ├── f2py.pyc
│   ├── pip2.7.exe
│   ├── pip2.exe
│   ├── pip.exe
│   ├── python.exe
│   ├── pythonw.exe
│   └── wheel.exe
└── tcl
├── tcl8.5
│   ├── 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.enc
│   │   ├── gb2312-raw.enc
│   │   ├── iso2022.enc
│   │   ├── iso2022-jp.enc
│   │   ├── iso2022-kr.enc
│   │   ├── iso8859-10.enc
│   │   ├── iso8859-13.enc
│   │   ├── iso8859-14.enc
│   │   ├── iso8859-15.enc
│   │   ├── iso8859-16.enc
│   │   ├── iso8859-1.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_in.msg
│   │   ├── ar_jo.msg
│   │   ├── ar_lb.msg
│   │   ├── ar.msg
│   │   ├── ar_sy.msg
│   │   ├── be.msg
│   │   ├── bg.msg
│   │   ├── bn_in.msg
│   │   ├── bn.msg
│   │   ├── ca.msg
│   │   ├── cs.msg
│   │   ├── da.msg
│   │   ├── de_at.msg
│   │   ├── de_be.msg
│   │   ├── de.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_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.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_es.msg
│   │   ├── eu.msg
│   │   ├── fa_in.msg
│   │   ├── fa_ir.msg
│   │   ├── fa.msg
│   │   ├── fi.msg
│   │   ├── fo_fo.msg
│   │   ├── fo.msg
│   │   ├── fr_be.msg
│   │   ├── fr_ca.msg
│   │   ├── fr_ch.msg
│   │   ├── fr.msg
│   │   ├── ga_ie.msg
│   │   ├── ga.msg
│   │   ├── gl_es.msg
│   │   ├── gl.msg
│   │   ├── gv_gb.msg
│   │   ├── gv.msg
│   │   ├── he.msg
│   │   ├── hi_in.msg
│   │   ├── hi.msg
│   │   ├── hr.msg
│   │   ├── hu.msg
│   │   ├── id_id.msg
│   │   ├── id.msg
│   │   ├── is.msg
│   │   ├── it_ch.msg
│   │   ├── it.msg
│   │   ├── ja.msg
│   │   ├── kl_gl.msg
│   │   ├── kl.msg
│   │   ├── kok_in.msg
│   │   ├── kok.msg
│   │   ├── ko_kr.msg
│   │   ├── ko.msg
│   │   ├── kw_gb.msg
│   │   ├── kw.msg
│   │   ├── lt.msg
│   │   ├── lv.msg
│   │   ├── mk.msg
│   │   ├── mr_in.msg
│   │   ├── mr.msg
│   │   ├── ms.msg
│   │   ├── ms_my.msg
│   │   ├── mt.msg
│   │   ├── nb.msg
│   │   ├── nl_be.msg
│   │   ├── nl.msg
│   │   ├── nn.msg
│   │   ├── pl.msg
│   │   ├── pt_br.msg
│   │   ├── pt.msg
│   │   ├── ro.msg
│   │   ├── ru.msg
│   │   ├── ru_ua.msg
│   │   ├── sh.msg
│   │   ├── sk.msg
│   │   ├── sl.msg
│   │   ├── sq.msg
│   │   ├── sr.msg
│   │   ├── sv.msg
│   │   ├── sw.msg
│   │   ├── ta_in.msg
│   │   ├── ta.msg
│   │   ├── te_in.msg
│   │   ├── te.msg
│   │   ├── th.msg
│   │   ├── tr.msg
│   │   ├── uk.msg
│   │   ├── vi.msg
│   │   ├── zh_cn.msg
│   │   ├── zh_hk.msg
│   │   ├── zh.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
│   │   │   ├── Fortaleza
│   │   │   ├── Fort_Wayne
│   │   │   ├── 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
│   │   │   ├── Porto_Acre
│   │   │   ├── Port_of_Spain
│   │   │   ├── 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
│   │   │   └── Vostok
│   │   ├── Arctic
│   │   │   └── Longyearbyen
│   │   ├── Asia
│   │   │   ├── Aden
│   │   │   ├── Almaty
│   │   │   ├── Amman
│   │   │   ├── Anadyr
│   │   │   ├── Aqtau
│   │   │   ├── Aqtobe
│   │   │   ├── Ashgabat
│   │   │   ├── Ashkhabad
│   │   │   ├── Baghdad
│   │   │   ├── Bahrain
│   │   │   ├── Baku
│   │   │   ├── Bangkok
│   │   │   ├── Beirut
│   │   │   ├── Bishkek
│   │   │   ├── Brunei
│   │   │   ├── Calcutta
│   │   │   ├── 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
│   │   │   ├── Taipei
│   │   │   ├── Tashkent
│   │   │   ├── Tbilisi
│   │   │   ├── Tehran
│   │   │   ├── Tel_Aviv
│   │   │   ├── Thimbu
│   │   │   ├── Thimphu
│   │   │   ├── Tokyo
│   │   │   ├── Ujung_Pandang
│   │   │   ├── Ulaanbaatar
│   │   │   ├── Ulan_Bator
│   │   │   ├── Urumqi
│   │   │   ├── Ust-Nera
│   │   │   ├── Vientiane
│   │   │   ├── Vladivostok
│   │   │   ├── Yakutsk
│   │   │   ├── Yekaterinburg
│   │   │   └── Yerevan
│   │   ├── Atlantic
│   │   │   ├── Azores
│   │   │   ├── Bermuda
│   │   │   ├── Canary
│   │   │   ├── Cape_Verde
│   │   │   ├── Faeroe
│   │   │   ├── Faroe
│   │   │   ├── Jan_Mayen
│   │   │   ├── Madeira
│   │   │   ├── Reykjavik
│   │   │   ├── South_Georgia
│   │   │   ├── Stanley
│   │   │   └── St_Helena
│   │   ├── Australia
│   │   │   ├── ACT
│   │   │   ├── Adelaide
│   │   │   ├── Brisbane
│   │   │   ├── Broken_Hill
│   │   │   ├── Canberra
│   │   │   ├── Currie
│   │   │   ├── Darwin
│   │   │   ├── Eucla
│   │   │   ├── Hobart
│   │   │   ├── LHI
│   │   │   ├── Lindeman
│   │   │   ├── Lord_Howe
│   │   │   ├── Melbourne
│   │   │   ├── North
│   │   │   ├── NSW
│   │   │   ├── Perth
│   │   │   ├── Queensland
│   │   │   ├── South
│   │   │   ├── Sydney
│   │   │   ├── Tasmania
│   │   │   ├── Victoria
│   │   │   ├── West
│   │   │   └── Yancowinna
│   │   ├── Brazil
│   │   │   ├── Acre
│   │   │   ├── DeNoronha
│   │   │   ├── East
│   │   │   └── West
│   │   ├── Canada
│   │   │   ├── Atlantic
│   │   │   ├── Central
│   │   │   ├── Eastern
│   │   │   ├── East-Saskatchewan
│   │   │   ├── Mountain
│   │   │   ├── Newfoundland
│   │   │   ├── Pacific
│   │   │   ├── Saskatchewan
│   │   │   └── Yukon
│   │   ├── CET
│   │   ├── Chile
│   │   │   ├── Continental
│   │   │   └── EasterIsland
│   │   ├── CST6CDT
│   │   ├── Cuba
│   │   ├── EET
│   │   ├── Egypt
│   │   ├── Eire
│   │   ├── EST
│   │   ├── EST5EDT
│   │   ├── Etc
│   │   │   ├── GMT
│   │   │   ├── GMT+0
│   │   │   ├── GMT-0
│   │   │   ├── GMT0
│   │   │   ├── GMT+1
│   │   │   ├── GMT-1
│   │   │   ├── GMT+10
│   │   │   ├── GMT-10
│   │   │   ├── GMT+11
│   │   │   ├── GMT-11
│   │   │   ├── GMT+12
│   │   │   ├── GMT-12
│   │   │   ├── GMT-13
│   │   │   ├── GMT-14
│   │   │   ├── GMT+2
│   │   │   ├── GMT-2
│   │   │   ├── GMT+3
│   │   │   ├── GMT-3
│   │   │   ├── GMT+4
│   │   │   ├── GMT-4
│   │   │   ├── GMT+5
│   │   │   ├── GMT-5
│   │   │   ├── GMT+6
│   │   │   ├── GMT-6
│   │   │   ├── GMT+7
│   │   │   ├── GMT-7
│   │   │   ├── GMT+8
│   │   │   ├── GMT-8
│   │   │   ├── GMT+9
│   │   │   ├── GMT-9
│   │   │   ├── Greenwich
│   │   │   ├── UCT
│   │   │   ├── Universal
│   │   │   ├── UTC
│   │   │   └── Zulu
│   │   ├── Europe
│   │   │   ├── Amsterdam
│   │   │   ├── Andorra
│   │   │   ├── Athens
│   │   │   ├── Belfast
│   │   │   ├── Belgrade
│   │   │   ├── Berlin
│   │   │   ├── Bratislava
│   │   │   ├── Brussels
│   │   │   ├── Bucharest
│   │   │   ├── Budapest
│   │   │   ├── Busingen
│   │   │   ├── Chisinau
│   │   │   ├── Copenhagen
│   │   │   ├── Dublin
│   │   │   ├── Gibraltar
│   │   │   ├── Guernsey
│   │   │   ├── Helsinki
│   │   │   ├── Isle_of_Man
│   │   │   ├── Istanbul
│   │   │   ├── Jersey
│   │   │   ├── Kaliningrad
│   │   │   ├── Kiev
│   │   │   ├── Lisbon
│   │   │   ├── Ljubljana
│   │   │   ├── London
│   │   │   ├── Luxembourg
│   │   │   ├── Madrid
│   │   │   ├── Malta
│   │   │   ├── Mariehamn
│   │   │   ├── Minsk
│   │   │   ├── Monaco
│   │   │   ├── Moscow
│   │   │   ├── Nicosia
│   │   │   ├── Oslo
│   │   │   ├── Paris
│   │   │   ├── Podgorica
│   │   │   ├── Prague
│   │   │   ├── Riga
│   │   │   ├── Rome
│   │   │   ├── Samara
│   │   │   ├── San_Marino
│   │   │   ├── Sarajevo
│   │   │   ├── Simferopol
│   │   │   ├── Skopje
│   │   │   ├── Sofia
│   │   │   ├── Stockholm
│   │   │   ├── Tallinn
│   │   │   ├── Tirane
│   │   │   ├── Tiraspol
│   │   │   ├── Uzhgorod
│   │   │   ├── Vaduz
│   │   │   ├── Vatican
│   │   │   ├── Vienna
│   │   │   ├── Vilnius
│   │   │   ├── Volgograd
│   │   │   ├── Warsaw
│   │   │   ├── Zagreb
│   │   │   ├── Zaporozhye
│   │   │   └── Zurich
│   │   ├── GB
│   │   ├── GB-Eire
│   │   ├── GMT
│   │   ├── GMT+0
│   │   ├── GMT-0
│   │   ├── GMT0
│   │   ├── Greenwich
│   │   ├── Hongkong
│   │   ├── HST
│   │   ├── Iceland
│   │   ├── Indian
│   │   │   ├── Antananarivo
│   │   │   ├── Chagos
│   │   │   ├── Christmas
│   │   │   ├── Cocos
│   │   │   ├── Comoro
│   │   │   ├── Kerguelen
│   │   │   ├── Mahe
│   │   │   ├── Maldives
│   │   │   ├── Mauritius
│   │   │   ├── Mayotte
│   │   │   └── Reunion
│   │   ├── Iran
│   │   ├── Israel
│   │   ├── Jamaica
│   │   ├── Japan
│   │   ├── Kwajalein
│   │   ├── Libya
│   │   ├── MET
│   │   ├── Mexico
│   │   │   ├── BajaNorte
│   │   │   ├── BajaSur
│   │   │   └── General
│   │   ├── MST
│   │   ├── MST7MDT
│   │   ├── Navajo
│   │   ├── NZ
│   │   ├── NZ-CHAT
│   │   ├── Pacific
│   │   │   ├── Apia
│   │   │   ├── Auckland
│   │   │   ├── 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
│   │   ├── PRC
│   │   ├── PST8PDT
│   │   ├── ROC
│   │   ├── ROK
│   │   ├── Singapore
│   │   ├── SystemV
│   │   │   ├── AST4
│   │   │   ├── AST4ADT
│   │   │   ├── CST6
│   │   │   ├── CST6CDT
│   │   │   ├── EST5
│   │   │   ├── EST5EDT
│   │   │   ├── HST10
│   │   │   ├── MST7
│   │   │   ├── MST7MDT
│   │   │   ├── PST8
│   │   │   ├── PST8PDT
│   │   │   ├── YST9
│   │   │   └── YST9YDT
│   │   ├── Turkey
│   │   ├── UCT
│   │   ├── Universal
│   │   ├── US
│   │   │   ├── Alaska
│   │   │   ├── Aleutian
│   │   │   ├── Arizona
│   │   │   ├── Central
│   │   │   ├── Eastern
│   │   │   ├── East-Indiana
│   │   │   ├── Hawaii
│   │   │   ├── Indiana-Starke
│   │   │   ├── Michigan
│   │   │   ├── Mountain
│   │   │   ├── Pacific
│   │   │   ├── Pacific-New
│   │   │   └── Samoa
│   │   ├── UTC
│   │   ├── WET
│   │   ├── W-SU
│   │   └── Zulu
│   └── word.tcl
└── tk8.5
├── bgerror.tcl
├── button.tcl
├── choosedir.tcl
├── clrpick.tcl
├── comdlg.tcl
├── console.tcl
├── demos
│   ├── 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
│   ├── form.tcl
│   ├── goldberg.tcl
│   ├── hello
│   ├── hscale.tcl
│   ├── icon.tcl
│   ├── image1.tcl
│   ├── image2.tcl
│   ├── images
│   │   ├── earth.gif
│   │   ├── earthris.gif
│   │   ├── face.xbm
│   │   ├── flagdown.xbm
│   │   ├── flagup.xbm
│   │   ├── gray25.xbm
│   │   ├── letters.xbm
│   │   ├── noletter.xbm
│   │   ├── pattern.xbm
│   │   ├── tcllogo.gif
│   │   └── teapot.ppm
│   ├── items.tcl
│   ├── ixset
│   ├── knightstour.tcl
│   ├── labelframe.tcl
│   ├── label.tcl
│   ├── license.terms
│   ├── mclist.tcl
│   ├── menubu.tcl
│   ├── menu.tcl
│   ├── msgbox.tcl
│   ├── nl.msg
│   ├── paned1.tcl
│   ├── paned2.tcl
│   ├── pendulum.tcl
│   ├── plot.tcl
│   ├── puzzle.tcl
│   ├── radio.tcl
│   ├── README
│   ├── rmt
│   ├── rolodex
│   ├── ruler.tcl
│   ├── sayings.tcl
│   ├── search.tcl
│   ├── spin.tcl
│   ├── square
│   ├── states.tcl
│   ├── style.tcl
│   ├── tclIndex
│   ├── tcolor
│   ├── textpeer.tcl
│   ├── text.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
├── images
│   ├── logo100.gif
│   ├── logo64.gif
│   ├── logo.eps
│   ├── logoLarge.gif
│   ├── logoMed.gif
│   ├── pwrdLogo100.gif
│   ├── pwrdLogo150.gif
│   ├── pwrdLogo175.gif
│   ├── pwrdLogo200.gif
│   ├── pwrdLogo75.gif
│   ├── pwrdLogo.eps
│   ├── README
│   └── tai-ku.gif
├── license.terms
├── listbox.tcl
├── menu.tcl
├── mkpsenc.tcl
├── msgbox.tcl
├── msgs
│   ├── cs.msg
│   ├── da.msg
│   ├── de.msg
│   ├── el.msg
│   ├── en_gb.msg
│   ├── en.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
├── tkfbox.tcl
├── tk.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

142 directories, 2733 files

标签:

实例下载地址

曲线匹配code

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警