实例介绍
C#调用WebService接口
【实例截图】
【核心代码】
4744302543409874272.rar
└── demo
├── 1.py
├── 2.py
└── venv
├── Include
├── Lib
│ ├── site-packages
│ │ ├── dateutil
│ │ │ ├── _common.py
│ │ │ ├── easter.py
│ │ │ ├── __init__.py
│ │ │ ├── parser
│ │ │ │ ├── __init__.py
│ │ │ │ ├── isoparser.py
│ │ │ │ ├── _parser.py
│ │ │ │ └── __pycache__
│ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ ├── isoparser.cpython-36.pyc
│ │ │ │ └── _parser.cpython-36.pyc
│ │ │ ├── __pycache__
│ │ │ │ ├── _common.cpython-36.pyc
│ │ │ │ ├── easter.cpython-36.pyc
│ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ ├── relativedelta.cpython-36.pyc
│ │ │ │ ├── rrule.cpython-36.pyc
│ │ │ │ ├── tzwin.cpython-36.pyc
│ │ │ │ ├── utils.cpython-36.pyc
│ │ │ │ └── _version.cpython-36.pyc
│ │ │ ├── relativedelta.py
│ │ │ ├── rrule.py
│ │ │ ├── tz
│ │ │ │ ├── _common.py
│ │ │ │ ├── _factories.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── _common.cpython-36.pyc
│ │ │ │ │ ├── _factories.cpython-36.pyc
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── tz.cpython-36.pyc
│ │ │ │ │ └── win.cpython-36.pyc
│ │ │ │ ├── tz.py
│ │ │ │ └── win.py
│ │ │ ├── tzwin.py
│ │ │ ├── utils.py
│ │ │ ├── _version.py
│ │ │ └── zoneinfo
│ │ │ ├── dateutil-zoneinfo.tar.gz
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ └── rebuild.cpython-36.pyc
│ │ │ └── rebuild.py
│ │ ├── easy-install.pth
│ │ ├── numpy
│ │ │ ├── add_newdocs.py
│ │ │ ├── compat
│ │ │ │ ├── __init__.py
│ │ │ │ ├── _inspect.py
│ │ │ │ ├── py3k.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── _inspect.cpython-36.pyc
│ │ │ │ │ ├── py3k.cpython-36.pyc
│ │ │ │ │ └── setup.cpython-36.pyc
│ │ │ │ └── setup.py
│ │ │ ├── __config__.py
│ │ │ ├── conftest.py
│ │ │ ├── core
│ │ │ │ ├── arrayprint.py
│ │ │ │ ├── cversions.py
│ │ │ │ ├── defchararray.py
│ │ │ │ ├── _dummy.cp36-win_amd64.pyd
│ │ │ │ ├── einsumfunc.py
│ │ │ │ ├── fromnumeric.py
│ │ │ │ ├── function_base.py
│ │ │ │ ├── generate_numpy_api.py
│ │ │ │ ├── getlimits.py
│ │ │ │ ├── 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
│ │ │ │ ├── __init__.py
│ │ │ │ ├── _internal.py
│ │ │ │ ├── lib
│ │ │ │ │ ├── npymath.lib
│ │ │ │ │ └── npy-pkg-config
│ │ │ │ │ ├── mlib.ini
│ │ │ │ │ └── npymath.ini
│ │ │ │ ├── machar.py
│ │ │ │ ├── memmap.py
│ │ │ │ ├── _methods.py
│ │ │ │ ├── multiarray.cp36-win_amd64.pyd
│ │ │ │ ├── multiarray_tests.cp36-win_amd64.pyd
│ │ │ │ ├── numeric.py
│ │ │ │ ├── numerictypes.py
│ │ │ │ ├── operand_flag_tests.cp36-win_amd64.pyd
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── 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
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── _internal.cpython-36.pyc
│ │ │ │ │ ├── machar.cpython-36.pyc
│ │ │ │ │ ├── memmap.cpython-36.pyc
│ │ │ │ │ ├── _methods.cpython-36.pyc
│ │ │ │ │ ├── numeric.cpython-36.pyc
│ │ │ │ │ ├── numerictypes.cpython-36.pyc
│ │ │ │ │ ├── records.cpython-36.pyc
│ │ │ │ │ ├── setup_common.cpython-36.pyc
│ │ │ │ │ ├── setup.cpython-36.pyc
│ │ │ │ │ └── shape_base.cpython-36.pyc
│ │ │ │ ├── records.py
│ │ │ │ ├── setup_common.py
│ │ │ │ ├── setup.py
│ │ │ │ ├── shape_base.py
│ │ │ │ ├── struct_ufunc_test.cp36-win_amd64.pyd
│ │ │ │ ├── test_rational.cp36-win_amd64.pyd
│ │ │ │ ├── tests
│ │ │ │ │ ├── data
│ │ │ │ │ │ ├── astype_copy.pkl
│ │ │ │ │ │ └── recarray_from_file.fits
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.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_memmap.cpython-36.pyc
│ │ │ │ │ │ ├── test_mem_overlap.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_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_complex.cpython-36.pyc
│ │ │ │ │ │ ├── test_umath.cpython-36.pyc
│ │ │ │ │ │ └── test_unicode.cpython-36.pyc
│ │ │ │ │ ├── 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_memmap.py
│ │ │ │ │ ├── test_mem_overlap.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_scalarinherit.py
│ │ │ │ │ ├── test_scalarmath.py
│ │ │ │ │ ├── test_scalarprint.py
│ │ │ │ │ ├── test_shape_base.py
│ │ │ │ │ ├── test_ufunc.py
│ │ │ │ │ ├── test_umath_complex.py
│ │ │ │ │ ├── test_umath.py
│ │ │ │ │ └── test_unicode.py
│ │ │ │ ├── umath.cp36-win_amd64.pyd
│ │ │ │ └── umath_tests.cp36-win_amd64.pyd
│ │ │ ├── ctypeslib.py
│ │ │ ├── _distributor_init.py
│ │ │ ├── distutils
│ │ │ │ ├── ccompiler.py
│ │ │ │ ├── command
│ │ │ │ │ ├── autodist.py
│ │ │ │ │ ├── bdist_rpm.py
│ │ │ │ │ ├── build_clib.py
│ │ │ │ │ ├── build_ext.py
│ │ │ │ │ ├── build.py
│ │ │ │ │ ├── build_py.py
│ │ │ │ │ ├── build_scripts.py
│ │ │ │ │ ├── build_src.py
│ │ │ │ │ ├── config_compiler.py
│ │ │ │ │ ├── config.py
│ │ │ │ │ ├── develop.py
│ │ │ │ │ ├── egg_info.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── install_clib.py
│ │ │ │ │ ├── install_data.py
│ │ │ │ │ ├── install_headers.py
│ │ │ │ │ ├── install.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── autodist.cpython-36.pyc
│ │ │ │ │ │ ├── bdist_rpm.cpython-36.pyc
│ │ │ │ │ │ ├── build_clib.cpython-36.pyc
│ │ │ │ │ │ ├── build.cpython-36.pyc
│ │ │ │ │ │ ├── build_ext.cpython-36.pyc
│ │ │ │ │ │ ├── build_py.cpython-36.pyc
│ │ │ │ │ │ ├── build_scripts.cpython-36.pyc
│ │ │ │ │ │ ├── build_src.cpython-36.pyc
│ │ │ │ │ │ ├── config_compiler.cpython-36.pyc
│ │ │ │ │ │ ├── config.cpython-36.pyc
│ │ │ │ │ │ ├── develop.cpython-36.pyc
│ │ │ │ │ │ ├── egg_info.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── install_clib.cpython-36.pyc
│ │ │ │ │ │ ├── install.cpython-36.pyc
│ │ │ │ │ │ ├── install_data.cpython-36.pyc
│ │ │ │ │ │ ├── install_headers.cpython-36.pyc
│ │ │ │ │ │ └── sdist.cpython-36.pyc
│ │ │ │ │ └── sdist.py
│ │ │ │ ├── compat.py
│ │ │ │ ├── __config__.py
│ │ │ │ ├── conv_template.py
│ │ │ │ ├── core.py
│ │ │ │ ├── cpuinfo.py
│ │ │ │ ├── environment.py
│ │ │ │ ├── exec_command.py
│ │ │ │ ├── extension.py
│ │ │ │ ├── fcompiler
│ │ │ │ │ ├── absoft.py
│ │ │ │ │ ├── compaq.py
│ │ │ │ │ ├── g95.py
│ │ │ │ │ ├── gnu.py
│ │ │ │ │ ├── hpux.py
│ │ │ │ │ ├── ibm.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── intel.py
│ │ │ │ │ ├── lahey.py
│ │ │ │ │ ├── mips.py
│ │ │ │ │ ├── nag.py
│ │ │ │ │ ├── none.py
│ │ │ │ │ ├── pathf95.py
│ │ │ │ │ ├── pg.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── absoft.cpython-36.pyc
│ │ │ │ │ │ ├── compaq.cpython-36.pyc
│ │ │ │ │ │ ├── g95.cpython-36.pyc
│ │ │ │ │ │ ├── gnu.cpython-36.pyc
│ │ │ │ │ │ ├── hpux.cpython-36.pyc
│ │ │ │ │ │ ├── ibm.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.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
│ │ │ │ │ ├── sun.py
│ │ │ │ │ └── vast.py
│ │ │ │ ├── from_template.py
│ │ │ │ ├── info.py
│ │ │ │ ├── __init__.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
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── ccompiler.cpython-36.pyc
│ │ │ │ │ ├── compat.cpython-36.pyc
│ │ │ │ │ ├── __config__.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
│ │ │ │ │ ├── __init__.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__.cpython-36.pyc
│ │ │ │ ├── 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_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_misc_util.py
│ │ │ │ │ ├── test_npy_pkg_config.py
│ │ │ │ │ └── test_system_info.py
│ │ │ │ ├── unixccompiler.py
│ │ │ │ └── __version__.py
│ │ │ ├── doc
│ │ │ │ ├── basics.py
│ │ │ │ ├── broadcasting.py
│ │ │ │ ├── byteswapping.py
│ │ │ │ ├── constants.py
│ │ │ │ ├── creation.py
│ │ │ │ ├── glossary.py
│ │ │ │ ├── indexing.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── internals.py
│ │ │ │ ├── misc.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── 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
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── internals.cpython-36.pyc
│ │ │ │ │ ├── misc.cpython-36.pyc
│ │ │ │ │ ├── structured_arrays.cpython-36.pyc
│ │ │ │ │ ├── subclassing.cpython-36.pyc
│ │ │ │ │ └── ufuncs.cpython-36.pyc
│ │ │ │ ├── structured_arrays.py
│ │ │ │ ├── subclassing.py
│ │ │ │ └── ufuncs.py
│ │ │ ├── dual.py
│ │ │ ├── f2py
│ │ │ │ ├── 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
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __main__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── 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
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── __main__.cpython-36.pyc
│ │ │ │ │ ├── rules.cpython-36.pyc
│ │ │ │ │ ├── setup.cpython-36.pyc
│ │ │ │ │ ├── use_rules.cpython-36.pyc
│ │ │ │ │ └── __version__.cpython-36.pyc
│ │ │ │ ├── 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_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_size.py
│ │ │ │ │ ├── test_string.py
│ │ │ │ │ └── util.py
│ │ │ │ ├── use_rules.py
│ │ │ │ └── __version__.py
│ │ │ ├── fft
│ │ │ │ ├── fftpack_lite.cp36-win_amd64.pyd
│ │ │ │ ├── fftpack.py
│ │ │ │ ├── helper.py
│ │ │ │ ├── info.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── fftpack.cpython-36.pyc
│ │ │ │ │ ├── helper.cpython-36.pyc
│ │ │ │ │ ├── info.cpython-36.pyc
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ └── setup.cpython-36.pyc
│ │ │ │ ├── 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
│ │ │ ├── _globals.py
│ │ │ ├── _import_tools.py
│ │ │ ├── __init__.py
│ │ │ ├── lib
│ │ │ │ ├── arraypad.py
│ │ │ │ ├── arraysetops.py
│ │ │ │ ├── arrayterator.py
│ │ │ │ ├── _datasource.py
│ │ │ │ ├── financial.py
│ │ │ │ ├── format.py
│ │ │ │ ├── function_base.py
│ │ │ │ ├── index_tricks.py
│ │ │ │ ├── info.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── _iotools.py
│ │ │ │ ├── mixins.py
│ │ │ │ ├── nanfunctions.py
│ │ │ │ ├── npyio.py
│ │ │ │ ├── polynomial.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── arraypad.cpython-36.pyc
│ │ │ │ │ ├── arraysetops.cpython-36.pyc
│ │ │ │ │ ├── arrayterator.cpython-36.pyc
│ │ │ │ │ ├── _datasource.cpython-36.pyc
│ │ │ │ │ ├── financial.cpython-36.pyc
│ │ │ │ │ ├── format.cpython-36.pyc
│ │ │ │ │ ├── function_base.cpython-36.pyc
│ │ │ │ │ ├── index_tricks.cpython-36.pyc
│ │ │ │ │ ├── info.cpython-36.pyc
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── _iotools.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
│ │ │ │ │ └── _version.cpython-36.pyc
│ │ │ │ ├── recfunctions.py
│ │ │ │ ├── scimath.py
│ │ │ │ ├── setup.py
│ │ │ │ ├── shape_base.py
│ │ │ │ ├── stride_tricks.py
│ │ │ │ ├── tests
│ │ │ │ │ ├── data
│ │ │ │ │ │ ├── py2-objarr.npy
│ │ │ │ │ │ ├── py2-objarr.npz
│ │ │ │ │ │ ├── py3-objarr.npy
│ │ │ │ │ │ ├── py3-objarr.npz
│ │ │ │ │ │ ├── python3.npy
│ │ │ │ │ │ └── win64python2.npy
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_arraypad.cpython-36.pyc
│ │ │ │ │ │ ├── test_arraysetops.cpython-36.pyc
│ │ │ │ │ │ ├── test_arrayterator.cpython-36.pyc
│ │ │ │ │ │ ├── test__datasource.cpython-36.pyc
│ │ │ │ │ │ ├── test_financial.cpython-36.pyc
│ │ │ │ │ │ ├── test_format.cpython-36.pyc
│ │ │ │ │ │ ├── test_function_base.cpython-36.pyc
│ │ │ │ │ │ ├── test_index_tricks.cpython-36.pyc
│ │ │ │ │ │ ├── test_io.cpython-36.pyc
│ │ │ │ │ │ ├── test__iotools.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
│ │ │ │ │ │ └── test__version.cpython-36.pyc
│ │ │ │ │ ├── test_arraypad.py
│ │ │ │ │ ├── test_arraysetops.py
│ │ │ │ │ ├── test_arrayterator.py
│ │ │ │ │ ├── test__datasource.py
│ │ │ │ │ ├── test_financial.py
│ │ │ │ │ ├── test_format.py
│ │ │ │ │ ├── test_function_base.py
│ │ │ │ │ ├── test_index_tricks.py
│ │ │ │ │ ├── test_io.py
│ │ │ │ │ ├── test__iotools.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
│ │ │ │ │ └── test__version.py
│ │ │ │ ├── twodim_base.py
│ │ │ │ ├── type_check.py
│ │ │ │ ├── ufunclike.py
│ │ │ │ ├── user_array.py
│ │ │ │ ├── utils.py
│ │ │ │ └── _version.py
│ │ │ ├── LICENSE.txt
│ │ │ ├── linalg
│ │ │ │ ├── info.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── lapack_lite.cp36-win_amd64.pyd
│ │ │ │ ├── linalg.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── info.cpython-36.pyc
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── linalg.cpython-36.pyc
│ │ │ │ │ └── setup.cpython-36.pyc
│ │ │ │ ├── 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
│ │ │ │ └── _umath_linalg.cp36-win_amd64.pyd
│ │ │ ├── ma
│ │ │ │ ├── bench.py
│ │ │ │ ├── core.py
│ │ │ │ ├── extras.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── mrecords.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── bench.cpython-36.pyc
│ │ │ │ │ ├── core.cpython-36.pyc
│ │ │ │ │ ├── extras.cpython-36.pyc
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── mrecords.cpython-36.pyc
│ │ │ │ │ ├── setup.cpython-36.pyc
│ │ │ │ │ ├── testutils.cpython-36.pyc
│ │ │ │ │ ├── timer_comparison.cpython-36.pyc
│ │ │ │ │ └── version.cpython-36.pyc
│ │ │ │ ├── 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
│ │ │ │ ├── defmatrix.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── defmatrix.cpython-36.pyc
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ └── setup.cpython-36.pyc
│ │ │ │ ├── setup.py
│ │ │ │ └── tests
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── test_defmatrix.cpython-36.pyc
│ │ │ │ │ ├── test_multiarray.cpython-36.pyc
│ │ │ │ │ ├── test_numeric.cpython-36.pyc
│ │ │ │ │ └── test_regression.cpython-36.pyc
│ │ │ │ ├── test_defmatrix.py
│ │ │ │ ├── test_multiarray.py
│ │ │ │ ├── test_numeric.py
│ │ │ │ └── test_regression.py
│ │ │ ├── polynomial
│ │ │ │ ├── chebyshev.py
│ │ │ │ ├── hermite_e.py
│ │ │ │ ├── hermite.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── laguerre.py
│ │ │ │ ├── legendre.py
│ │ │ │ ├── _polybase.py
│ │ │ │ ├── polynomial.py
│ │ │ │ ├── polyutils.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── chebyshev.cpython-36.pyc
│ │ │ │ │ ├── hermite.cpython-36.pyc
│ │ │ │ │ ├── hermite_e.cpython-36.pyc
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── laguerre.cpython-36.pyc
│ │ │ │ │ ├── legendre.cpython-36.pyc
│ │ │ │ │ ├── _polybase.cpython-36.pyc
│ │ │ │ │ ├── polynomial.cpython-36.pyc
│ │ │ │ │ ├── polyutils.cpython-36.pyc
│ │ │ │ │ └── setup.cpython-36.pyc
│ │ │ │ ├── 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_e.py
│ │ │ │ ├── test_hermite.py
│ │ │ │ ├── test_laguerre.py
│ │ │ │ ├── test_legendre.py
│ │ │ │ ├── test_polynomial.py
│ │ │ │ ├── test_polyutils.py
│ │ │ │ └── test_printing.py
│ │ │ ├── __pycache__
│ │ │ │ ├── add_newdocs.cpython-36.pyc
│ │ │ │ ├── __config__.cpython-36.pyc
│ │ │ │ ├── conftest.cpython-36.pyc
│ │ │ │ ├── ctypeslib.cpython-36.pyc
│ │ │ │ ├── _distributor_init.cpython-36.pyc
│ │ │ │ ├── dual.cpython-36.pyc
│ │ │ │ ├── _globals.cpython-36.pyc
│ │ │ │ ├── _import_tools.cpython-36.pyc
│ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ ├── matlib.cpython-36.pyc
│ │ │ │ ├── setup.cpython-36.pyc
│ │ │ │ └── version.cpython-36.pyc
│ │ │ ├── random
│ │ │ │ ├── info.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── mtrand.cp36-win_amd64.pyd
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── info.cpython-36.pyc
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ └── setup.cpython-36.pyc
│ │ │ │ ├── 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
│ │ │ │ ├── decorators.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── noseclasses.py
│ │ │ │ ├── nosetester.py
│ │ │ │ ├── nose_tools
│ │ │ │ │ ├── decorators.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── noseclasses.py
│ │ │ │ │ ├── nosetester.py
│ │ │ │ │ ├── parameterized.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── decorators.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── noseclasses.cpython-36.pyc
│ │ │ │ │ │ ├── nosetester.cpython-36.pyc
│ │ │ │ │ │ ├── parameterized.cpython-36.pyc
│ │ │ │ │ │ └── utils.cpython-36.pyc
│ │ │ │ │ └── utils.py
│ │ │ │ ├── print_coercion_tables.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── decorators.cpython-36.pyc
│ │ │ │ │ ├── __init__.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
│ │ │ │ ├── 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.14.5.dist-info
│ │ │ ├── DESCRIPTION.rst
│ │ │ ├── INSTALLER
│ │ │ ├── METADATA
│ │ │ ├── metadata.json
│ │ │ ├── RECORD
│ │ │ ├── top_level.txt
│ │ │ └── WHEEL
│ │ ├── pandas
│ │ │ ├── api
│ │ │ │ ├── extensions
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── __pycache__
│ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ └── types
│ │ │ │ ├── __init__.py
│ │ │ │ └── __pycache__
│ │ │ │ └── __init__.cpython-36.pyc
│ │ │ ├── compat
│ │ │ │ ├── chainmap_impl.py
│ │ │ │ ├── chainmap.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── numpy
│ │ │ │ │ ├── function.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── __pycache__
│ │ │ │ │ ├── function.cpython-36.pyc
│ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ ├── pickle_compat.py
│ │ │ │ └── __pycache__
│ │ │ │ ├── chainmap.cpython-36.pyc
│ │ │ │ ├── chainmap_impl.cpython-36.pyc
│ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ └── pickle_compat.cpython-36.pyc
│ │ │ ├── computation
│ │ │ │ ├── expressions.py
│ │ │ │ ├── __init__.py
│ │ │ │ └── __pycache__
│ │ │ │ ├── expressions.cpython-36.pyc
│ │ │ │ └── __init__.cpython-36.pyc
│ │ │ ├── conftest.py
│ │ │ ├── core
│ │ │ │ ├── accessor.py
│ │ │ │ ├── algorithms.py
│ │ │ │ ├── api.py
│ │ │ │ ├── apply.py
│ │ │ │ ├── arrays
│ │ │ │ │ ├── base.py
│ │ │ │ │ ├── categorical.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── __pycache__
│ │ │ │ │ ├── base.cpython-36.pyc
│ │ │ │ │ ├── categorical.cpython-36.pyc
│ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ ├── base.py
│ │ │ │ ├── categorical.py
│ │ │ │ ├── common.py
│ │ │ │ ├── computation
│ │ │ │ │ ├── align.py
│ │ │ │ │ ├── api.py
│ │ │ │ │ ├── check.py
│ │ │ │ │ ├── common.py
│ │ │ │ │ ├── engines.py
│ │ │ │ │ ├── eval.py
│ │ │ │ │ ├── expressions.py
│ │ │ │ │ ├── expr.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── ops.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── align.cpython-36.pyc
│ │ │ │ │ │ ├── api.cpython-36.pyc
│ │ │ │ │ │ ├── check.cpython-36.pyc
│ │ │ │ │ │ ├── common.cpython-36.pyc
│ │ │ │ │ │ ├── engines.cpython-36.pyc
│ │ │ │ │ │ ├── eval.cpython-36.pyc
│ │ │ │ │ │ ├── expr.cpython-36.pyc
│ │ │ │ │ │ ├── expressions.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── ops.cpython-36.pyc
│ │ │ │ │ │ ├── pytables.cpython-36.pyc
│ │ │ │ │ │ └── scope.cpython-36.pyc
│ │ │ │ │ ├── pytables.py
│ │ │ │ │ └── scope.py
│ │ │ │ ├── config_init.py
│ │ │ │ ├── config.py
│ │ │ │ ├── datetools.py
│ │ │ │ ├── dtypes
│ │ │ │ │ ├── api.py
│ │ │ │ │ ├── base.py
│ │ │ │ │ ├── cast.py
│ │ │ │ │ ├── common.py
│ │ │ │ │ ├── concat.py
│ │ │ │ │ ├── dtypes.py
│ │ │ │ │ ├── generic.py
│ │ │ │ │ ├── inference.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── missing.py
│ │ │ │ │ └── __pycache__
│ │ │ │ │ ├── api.cpython-36.pyc
│ │ │ │ │ ├── base.cpython-36.pyc
│ │ │ │ │ ├── cast.cpython-36.pyc
│ │ │ │ │ ├── common.cpython-36.pyc
│ │ │ │ │ ├── concat.cpython-36.pyc
│ │ │ │ │ ├── dtypes.cpython-36.pyc
│ │ │ │ │ ├── generic.cpython-36.pyc
│ │ │ │ │ ├── inference.cpython-36.pyc
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ └── missing.cpython-36.pyc
│ │ │ │ ├── frame.py
│ │ │ │ ├── generic.py
│ │ │ │ ├── groupby
│ │ │ │ │ ├── groupby.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── __pycache__
│ │ │ │ │ ├── groupby.cpython-36.pyc
│ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ ├── indexes
│ │ │ │ │ ├── accessors.py
│ │ │ │ │ ├── api.py
│ │ │ │ │ ├── base.py
│ │ │ │ │ ├── category.py
│ │ │ │ │ ├── datetimelike.py
│ │ │ │ │ ├── datetimes.py
│ │ │ │ │ ├── frozen.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── interval.py
│ │ │ │ │ ├── multi.py
│ │ │ │ │ ├── numeric.py
│ │ │ │ │ ├── period.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── accessors.cpython-36.pyc
│ │ │ │ │ │ ├── api.cpython-36.pyc
│ │ │ │ │ │ ├── base.cpython-36.pyc
│ │ │ │ │ │ ├── category.cpython-36.pyc
│ │ │ │ │ │ ├── datetimelike.cpython-36.pyc
│ │ │ │ │ │ ├── datetimes.cpython-36.pyc
│ │ │ │ │ │ ├── frozen.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── interval.cpython-36.pyc
│ │ │ │ │ │ ├── multi.cpython-36.pyc
│ │ │ │ │ │ ├── numeric.cpython-36.pyc
│ │ │ │ │ │ ├── period.cpython-36.pyc
│ │ │ │ │ │ ├── range.cpython-36.pyc
│ │ │ │ │ │ └── timedeltas.cpython-36.pyc
│ │ │ │ │ ├── range.py
│ │ │ │ │ └── timedeltas.py
│ │ │ │ ├── indexing.py
│ │ │ │ ├── index.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── internals.py
│ │ │ │ ├── missing.py
│ │ │ │ ├── nanops.py
│ │ │ │ ├── ops.py
│ │ │ │ ├── panel.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── accessor.cpython-36.pyc
│ │ │ │ │ ├── algorithms.cpython-36.pyc
│ │ │ │ │ ├── api.cpython-36.pyc
│ │ │ │ │ ├── apply.cpython-36.pyc
│ │ │ │ │ ├── base.cpython-36.pyc
│ │ │ │ │ ├── categorical.cpython-36.pyc
│ │ │ │ │ ├── common.cpython-36.pyc
│ │ │ │ │ ├── config.cpython-36.pyc
│ │ │ │ │ ├── config_init.cpython-36.pyc
│ │ │ │ │ ├── datetools.cpython-36.pyc
│ │ │ │ │ ├── frame.cpython-36.pyc
│ │ │ │ │ ├── generic.cpython-36.pyc
│ │ │ │ │ ├── index.cpython-36.pyc
│ │ │ │ │ ├── indexing.cpython-36.pyc
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── internals.cpython-36.pyc
│ │ │ │ │ ├── missing.cpython-36.pyc
│ │ │ │ │ ├── nanops.cpython-36.pyc
│ │ │ │ │ ├── ops.cpython-36.pyc
│ │ │ │ │ ├── panel.cpython-36.pyc
│ │ │ │ │ ├── resample.cpython-36.pyc
│ │ │ │ │ ├── series.cpython-36.pyc
│ │ │ │ │ ├── sorting.cpython-36.pyc
│ │ │ │ │ ├── strings.cpython-36.pyc
│ │ │ │ │ └── window.cpython-36.pyc
│ │ │ │ ├── resample.py
│ │ │ │ ├── reshape
│ │ │ │ │ ├── api.py
│ │ │ │ │ ├── concat.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── melt.py
│ │ │ │ │ ├── merge.py
│ │ │ │ │ ├── pivot.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── api.cpython-36.pyc
│ │ │ │ │ │ ├── concat.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── melt.cpython-36.pyc
│ │ │ │ │ │ ├── merge.cpython-36.pyc
│ │ │ │ │ │ ├── pivot.cpython-36.pyc
│ │ │ │ │ │ ├── reshape.cpython-36.pyc
│ │ │ │ │ │ ├── tile.cpython-36.pyc
│ │ │ │ │ │ └── util.cpython-36.pyc
│ │ │ │ │ ├── reshape.py
│ │ │ │ │ ├── tile.py
│ │ │ │ │ └── util.py
│ │ │ │ ├── series.py
│ │ │ │ ├── sorting.py
│ │ │ │ ├── sparse
│ │ │ │ │ ├── api.py
│ │ │ │ │ ├── array.py
│ │ │ │ │ ├── frame.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── api.cpython-36.pyc
│ │ │ │ │ │ ├── array.cpython-36.pyc
│ │ │ │ │ │ ├── frame.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── scipy_sparse.cpython-36.pyc
│ │ │ │ │ │ └── series.cpython-36.pyc
│ │ │ │ │ ├── scipy_sparse.py
│ │ │ │ │ └── series.py
│ │ │ │ ├── strings.py
│ │ │ │ ├── tools
│ │ │ │ │ ├── datetimes.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── numeric.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── datetimes.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── numeric.cpython-36.pyc
│ │ │ │ │ │ └── timedeltas.cpython-36.pyc
│ │ │ │ │ └── timedeltas.py
│ │ │ │ ├── util
│ │ │ │ │ ├── hashing.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── __pycache__
│ │ │ │ │ ├── hashing.cpython-36.pyc
│ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ └── window.py
│ │ │ ├── errors
│ │ │ │ ├── __init__.py
│ │ │ │ └── __pycache__
│ │ │ │ └── __init__.cpython-36.pyc
│ │ │ ├── formats
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ └── style.cpython-36.pyc
│ │ │ │ └── style.py
│ │ │ ├── __init__.py
│ │ │ ├── io
│ │ │ │ ├── api.py
│ │ │ │ ├── clipboard
│ │ │ │ │ ├── clipboards.py
│ │ │ │ │ ├── exceptions.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── clipboards.cpython-36.pyc
│ │ │ │ │ │ ├── exceptions.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ └── windows.cpython-36.pyc
│ │ │ │ │ └── windows.py
│ │ │ │ ├── clipboards.py
│ │ │ │ ├── common.py
│ │ │ │ ├── date_converters.py
│ │ │ │ ├── excel.py
│ │ │ │ ├── feather_format.py
│ │ │ │ ├── formats
│ │ │ │ │ ├── console.py
│ │ │ │ │ ├── css.py
│ │ │ │ │ ├── csvs.py
│ │ │ │ │ ├── excel.py
│ │ │ │ │ ├── format.py
│ │ │ │ │ ├── html.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── latex.py
│ │ │ │ │ ├── printing.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── console.cpython-36.pyc
│ │ │ │ │ │ ├── css.cpython-36.pyc
│ │ │ │ │ │ ├── csvs.cpython-36.pyc
│ │ │ │ │ │ ├── excel.cpython-36.pyc
│ │ │ │ │ │ ├── format.cpython-36.pyc
│ │ │ │ │ │ ├── html.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── latex.cpython-36.pyc
│ │ │ │ │ │ ├── printing.cpython-36.pyc
│ │ │ │ │ │ ├── style.cpython-36.pyc
│ │ │ │ │ │ └── terminal.cpython-36.pyc
│ │ │ │ │ ├── style.py
│ │ │ │ │ ├── templates
│ │ │ │ │ │ └── html.tpl
│ │ │ │ │ └── terminal.py
│ │ │ │ ├── gbq.py
│ │ │ │ ├── html.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── json
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── json.py
│ │ │ │ │ ├── normalize.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── json.cpython-36.pyc
│ │ │ │ │ │ ├── normalize.cpython-36.pyc
│ │ │ │ │ │ └── table_schema.cpython-36.pyc
│ │ │ │ │ └── table_schema.py
│ │ │ │ ├── msgpack
│ │ │ │ │ ├── exceptions.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── _packer.cp36-win_amd64.pyd
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── exceptions.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ └── _version.cpython-36.pyc
│ │ │ │ │ ├── _unpacker.cp36-win_amd64.pyd
│ │ │ │ │ └── _version.py
│ │ │ │ ├── packers.py
│ │ │ │ ├── parquet.py
│ │ │ │ ├── parsers.py
│ │ │ │ ├── pickle.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── api.cpython-36.pyc
│ │ │ │ │ ├── clipboards.cpython-36.pyc
│ │ │ │ │ ├── common.cpython-36.pyc
│ │ │ │ │ ├── date_converters.cpython-36.pyc
│ │ │ │ │ ├── excel.cpython-36.pyc
│ │ │ │ │ ├── feather_format.cpython-36.pyc
│ │ │ │ │ ├── gbq.cpython-36.pyc
│ │ │ │ │ ├── html.cpython-36.pyc
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── packers.cpython-36.pyc
│ │ │ │ │ ├── parquet.cpython-36.pyc
│ │ │ │ │ ├── parsers.cpython-36.pyc
│ │ │ │ │ ├── pickle.cpython-36.pyc
│ │ │ │ │ ├── pytables.cpython-36.pyc
│ │ │ │ │ ├── s3.cpython-36.pyc
│ │ │ │ │ ├── sql.cpython-36.pyc
│ │ │ │ │ └── stata.cpython-36.pyc
│ │ │ │ ├── pytables.py
│ │ │ │ ├── s3.py
│ │ │ │ ├── sas
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── sas7bdat.cpython-36.pyc
│ │ │ │ │ │ ├── sas_constants.cpython-36.pyc
│ │ │ │ │ │ ├── sasreader.cpython-36.pyc
│ │ │ │ │ │ └── sas_xport.cpython-36.pyc
│ │ │ │ │ ├── sas7bdat.py
│ │ │ │ │ ├── sas_constants.py
│ │ │ │ │ ├── _sas.cp36-win_amd64.pyd
│ │ │ │ │ ├── sasreader.py
│ │ │ │ │ └── sas_xport.py
│ │ │ │ ├── sql.py
│ │ │ │ └── stata.py
│ │ │ ├── json.py
│ │ │ ├── lib.py
│ │ │ ├── _libs
│ │ │ │ ├── algos.cp36-win_amd64.pyd
│ │ │ │ ├── concrt140.dll
│ │ │ │ ├── groupby.cp36-win_amd64.pyd
│ │ │ │ ├── hashing.cp36-win_amd64.pyd
│ │ │ │ ├── hashtable.cp36-win_amd64.pyd
│ │ │ │ ├── index.cp36-win_amd64.pyd
│ │ │ │ ├── indexing.cp36-win_amd64.pyd
│ │ │ │ ├── __init__.py
│ │ │ │ ├── internals.cp36-win_amd64.pyd
│ │ │ │ ├── interval.cp36-win_amd64.pyd
│ │ │ │ ├── join.cp36-win_amd64.pyd
│ │ │ │ ├── json.cp36-win_amd64.pyd
│ │ │ │ ├── lib.cp36-win_amd64.pyd
│ │ │ │ ├── missing.cp36-win_amd64.pyd
│ │ │ │ ├── msvcp140.dll
│ │ │ │ ├── ops.cp36-win_amd64.pyd
│ │ │ │ ├── parsers.cp36-win_amd64.pyd
│ │ │ │ ├── properties.cp36-win_amd64.pyd
│ │ │ │ ├── __pycache__
│ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ ├── reduction.cp36-win_amd64.pyd
│ │ │ │ ├── reshape.cp36-win_amd64.pyd
│ │ │ │ ├── skiplist.cp36-win_amd64.pyd
│ │ │ │ ├── sparse.cp36-win_amd64.pyd
│ │ │ │ ├── testing.cp36-win_amd64.pyd
│ │ │ │ ├── tslib.cp36-win_amd64.pyd
│ │ │ │ ├── tslibs
│ │ │ │ │ ├── ccalendar.cp36-win_amd64.pyd
│ │ │ │ │ ├── conversion.cp36-win_amd64.pyd
│ │ │ │ │ ├── fields.cp36-win_amd64.pyd
│ │ │ │ │ ├── frequencies.cp36-win_amd64.pyd
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── nattype.cp36-win_amd64.pyd
│ │ │ │ │ ├── np_datetime.cp36-win_amd64.pyd
│ │ │ │ │ ├── offsets.cp36-win_amd64.pyd
│ │ │ │ │ ├── parsing.cp36-win_amd64.pyd
│ │ │ │ │ ├── period.cp36-win_amd64.pyd
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ │ ├── resolution.cp36-win_amd64.pyd
│ │ │ │ │ ├── strptime.cp36-win_amd64.pyd
│ │ │ │ │ ├── timedeltas.cp36-win_amd64.pyd
│ │ │ │ │ ├── timestamps.cp36-win_amd64.pyd
│ │ │ │ │ └── timezones.cp36-win_amd64.pyd
│ │ │ │ ├── window.cp36-win_amd64.pyd
│ │ │ │ └── writers.cp36-win_amd64.pyd
│ │ │ ├── parser.py
│ │ │ ├── plotting
│ │ │ │ ├── _compat.py
│ │ │ │ ├── _converter.py
│ │ │ │ ├── _core.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── _misc.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── _compat.cpython-36.pyc
│ │ │ │ │ ├── _converter.cpython-36.pyc
│ │ │ │ │ ├── _core.cpython-36.pyc
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── _misc.cpython-36.pyc
│ │ │ │ │ ├── _style.cpython-36.pyc
│ │ │ │ │ ├── _timeseries.cpython-36.pyc
│ │ │ │ │ └── _tools.cpython-36.pyc
│ │ │ │ ├── _style.py
│ │ │ │ ├── _timeseries.py
│ │ │ │ └── _tools.py
│ │ │ ├── __pycache__
│ │ │ │ ├── conftest.cpython-36.pyc
│ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ ├── json.cpython-36.pyc
│ │ │ │ ├── lib.cpython-36.pyc
│ │ │ │ ├── parser.cpython-36.pyc
│ │ │ │ ├── testing.cpython-36.pyc
│ │ │ │ ├── tslib.cpython-36.pyc
│ │ │ │ └── _version.cpython-36.pyc
│ │ │ ├── testing.py
│ │ │ ├── tests
│ │ │ │ ├── api
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_api.cpython-36.pyc
│ │ │ │ │ │ └── test_types.cpython-36.pyc
│ │ │ │ │ ├── test_api.py
│ │ │ │ │ └── test_types.py
│ │ │ │ ├── categorical
│ │ │ │ │ ├── common.py
│ │ │ │ │ ├── conftest.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── common.cpython-36.pyc
│ │ │ │ │ │ ├── conftest.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_algos.cpython-36.pyc
│ │ │ │ │ │ ├── test_analytics.cpython-36.pyc
│ │ │ │ │ │ ├── test_api.cpython-36.pyc
│ │ │ │ │ │ ├── test_constructors.cpython-36.pyc
│ │ │ │ │ │ ├── test_dtypes.cpython-36.pyc
│ │ │ │ │ │ ├── test_indexing.cpython-36.pyc
│ │ │ │ │ │ ├── test_missing.cpython-36.pyc
│ │ │ │ │ │ ├── test_operators.cpython-36.pyc
│ │ │ │ │ │ ├── test_repr.cpython-36.pyc
│ │ │ │ │ │ ├── test_sorting.cpython-36.pyc
│ │ │ │ │ │ ├── test_subclass.cpython-36.pyc
│ │ │ │ │ │ └── test_warnings.cpython-36.pyc
│ │ │ │ │ ├── test_algos.py
│ │ │ │ │ ├── test_analytics.py
│ │ │ │ │ ├── test_api.py
│ │ │ │ │ ├── test_constructors.py
│ │ │ │ │ ├── test_dtypes.py
│ │ │ │ │ ├── test_indexing.py
│ │ │ │ │ ├── test_missing.py
│ │ │ │ │ ├── test_operators.py
│ │ │ │ │ ├── test_repr.py
│ │ │ │ │ ├── test_sorting.py
│ │ │ │ │ ├── test_subclass.py
│ │ │ │ │ └── test_warnings.py
│ │ │ │ ├── computation
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_compat.cpython-36.pyc
│ │ │ │ │ │ └── test_eval.cpython-36.pyc
│ │ │ │ │ ├── test_compat.py
│ │ │ │ │ └── test_eval.py
│ │ │ │ ├── data
│ │ │ │ │ ├── iris.csv
│ │ │ │ │ └── tips.csv
│ │ │ │ ├── dtypes
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_cast.cpython-36.pyc
│ │ │ │ │ │ ├── test_common.cpython-36.pyc
│ │ │ │ │ │ ├── test_concat.cpython-36.pyc
│ │ │ │ │ │ ├── test_dtypes.cpython-36.pyc
│ │ │ │ │ │ ├── test_generic.cpython-36.pyc
│ │ │ │ │ │ ├── test_inference.cpython-36.pyc
│ │ │ │ │ │ └── test_missing.cpython-36.pyc
│ │ │ │ │ ├── test_cast.py
│ │ │ │ │ ├── test_common.py
│ │ │ │ │ ├── test_concat.py
│ │ │ │ │ ├── test_dtypes.py
│ │ │ │ │ ├── test_generic.py
│ │ │ │ │ ├── test_inference.py
│ │ │ │ │ └── test_missing.py
│ │ │ │ ├── extension
│ │ │ │ │ ├── base
│ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ ├── casting.py
│ │ │ │ │ │ ├── constructors.py
│ │ │ │ │ │ ├── dtype.py
│ │ │ │ │ │ ├── getitem.py
│ │ │ │ │ │ ├── groupby.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── interface.py
│ │ │ │ │ │ ├── methods.py
│ │ │ │ │ │ ├── missing.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── base.cpython-36.pyc
│ │ │ │ │ │ │ ├── casting.cpython-36.pyc
│ │ │ │ │ │ │ ├── constructors.cpython-36.pyc
│ │ │ │ │ │ │ ├── dtype.cpython-36.pyc
│ │ │ │ │ │ │ ├── getitem.cpython-36.pyc
│ │ │ │ │ │ │ ├── groupby.cpython-36.pyc
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── interface.cpython-36.pyc
│ │ │ │ │ │ │ ├── methods.cpython-36.pyc
│ │ │ │ │ │ │ ├── missing.cpython-36.pyc
│ │ │ │ │ │ │ ├── reshaping.cpython-36.pyc
│ │ │ │ │ │ │ └── setitem.cpython-36.pyc
│ │ │ │ │ │ ├── reshaping.py
│ │ │ │ │ │ └── setitem.py
│ │ │ │ │ ├── category
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ └── test_categorical.cpython-36.pyc
│ │ │ │ │ │ └── test_categorical.py
│ │ │ │ │ ├── conftest.py
│ │ │ │ │ ├── decimal
│ │ │ │ │ │ ├── array.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── array.cpython-36.pyc
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ └── test_decimal.cpython-36.pyc
│ │ │ │ │ │ └── test_decimal.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── json
│ │ │ │ │ │ ├── array.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── array.cpython-36.pyc
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ └── test_json.cpython-36.pyc
│ │ │ │ │ │ └── test_json.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── conftest.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_common.cpython-36.pyc
│ │ │ │ │ │ └── test_external_block.cpython-36.pyc
│ │ │ │ │ ├── test_common.py
│ │ │ │ │ └── test_external_block.py
│ │ │ │ ├── frame
│ │ │ │ │ ├── common.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── common.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_alter_axes.cpython-36.pyc
│ │ │ │ │ │ ├── test_analytics.cpython-36.pyc
│ │ │ │ │ │ ├── test_api.cpython-36.pyc
│ │ │ │ │ │ ├── test_apply.cpython-36.pyc
│ │ │ │ │ │ ├── test_arithmetic.cpython-36.pyc
│ │ │ │ │ │ ├── test_asof.cpython-36.pyc
│ │ │ │ │ │ ├── test_axis_select_reindex.cpython-36.pyc
│ │ │ │ │ │ ├── test_block_internals.cpython-36.pyc
│ │ │ │ │ │ ├── test_combine_concat.cpython-36.pyc
│ │ │ │ │ │ ├── test_constructors.cpython-36.pyc
│ │ │ │ │ │ ├── test_convert_to.cpython-36.pyc
│ │ │ │ │ │ ├── test_dtypes.cpython-36.pyc
│ │ │ │ │ │ ├── test_indexing.cpython-36.pyc
│ │ │ │ │ │ ├── test_join.cpython-36.pyc
│ │ │ │ │ │ ├── test_missing.cpython-36.pyc
│ │ │ │ │ │ ├── test_mutate_columns.cpython-36.pyc
│ │ │ │ │ │ ├── test_nonunique_indexes.cpython-36.pyc
│ │ │ │ │ │ ├── test_operators.cpython-36.pyc
│ │ │ │ │ │ ├── test_period.cpython-36.pyc
│ │ │ │ │ │ ├── test_quantile.cpython-36.pyc
│ │ │ │ │ │ ├── test_query_eval.cpython-36.pyc
│ │ │ │ │ │ ├── test_rank.cpython-36.pyc
│ │ │ │ │ │ ├── test_replace.cpython-36.pyc
│ │ │ │ │ │ ├── test_repr_info.cpython-36.pyc
│ │ │ │ │ │ ├── test_reshape.cpython-36.pyc
│ │ │ │ │ │ ├── test_sorting.cpython-36.pyc
│ │ │ │ │ │ ├── test_sort_values_level_as_str.cpython-36.pyc
│ │ │ │ │ │ ├── test_subclass.cpython-36.pyc
│ │ │ │ │ │ ├── test_timeseries.cpython-36.pyc
│ │ │ │ │ │ ├── test_timezones.cpython-36.pyc
│ │ │ │ │ │ ├── test_to_csv.cpython-36.pyc
│ │ │ │ │ │ └── test_validate.cpython-36.pyc
│ │ │ │ │ ├── test_alter_axes.py
│ │ │ │ │ ├── test_analytics.py
│ │ │ │ │ ├── test_api.py
│ │ │ │ │ ├── test_apply.py
│ │ │ │ │ ├── test_arithmetic.py
│ │ │ │ │ ├── test_asof.py
│ │ │ │ │ ├── test_axis_select_reindex.py
│ │ │ │ │ ├── test_block_internals.py
│ │ │ │ │ ├── test_combine_concat.py
│ │ │ │ │ ├── test_constructors.py
│ │ │ │ │ ├── test_convert_to.py
│ │ │ │ │ ├── test_dtypes.py
│ │ │ │ │ ├── test_indexing.py
│ │ │ │ │ ├── test_join.py
│ │ │ │ │ ├── test_missing.py
│ │ │ │ │ ├── test_mutate_columns.py
│ │ │ │ │ ├── test_nonunique_indexes.py
│ │ │ │ │ ├── test_operators.py
│ │ │ │ │ ├── test_period.py
│ │ │ │ │ ├── test_quantile.py
│ │ │ │ │ ├── test_query_eval.py
│ │ │ │ │ ├── test_rank.py
│ │ │ │ │ ├── test_replace.py
│ │ │ │ │ ├── test_repr_info.py
│ │ │ │ │ ├── test_reshape.py
│ │ │ │ │ ├── test_sorting.py
│ │ │ │ │ ├── test_sort_values_level_as_str.py
│ │ │ │ │ ├── test_subclass.py
│ │ │ │ │ ├── test_timeseries.py
│ │ │ │ │ ├── test_timezones.py
│ │ │ │ │ ├── test_to_csv.py
│ │ │ │ │ └── test_validate.py
│ │ │ │ ├── generic
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_frame.cpython-36.pyc
│ │ │ │ │ │ ├── test_generic.cpython-36.pyc
│ │ │ │ │ │ ├── test_label_or_level_utils.cpython-36.pyc
│ │ │ │ │ │ ├── test_panel.cpython-36.pyc
│ │ │ │ │ │ └── test_series.cpython-36.pyc
│ │ │ │ │ ├── test_frame.py
│ │ │ │ │ ├── test_generic.py
│ │ │ │ │ ├── test_label_or_level_utils.py
│ │ │ │ │ ├── test_panel.py
│ │ │ │ │ └── test_series.py
│ │ │ │ ├── groupby
│ │ │ │ │ ├── aggregate
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_aggregate.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_cython.cpython-36.pyc
│ │ │ │ │ │ │ └── test_other.cpython-36.pyc
│ │ │ │ │ │ ├── test_aggregate.py
│ │ │ │ │ │ ├── test_cython.py
│ │ │ │ │ │ └── test_other.py
│ │ │ │ │ ├── conftest.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── conftest.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_apply.cpython-36.pyc
│ │ │ │ │ │ ├── test_bin_groupby.cpython-36.pyc
│ │ │ │ │ │ ├── test_categorical.cpython-36.pyc
│ │ │ │ │ │ ├── test_counting.cpython-36.pyc
│ │ │ │ │ │ ├── test_filters.cpython-36.pyc
│ │ │ │ │ │ ├── test_function.cpython-36.pyc
│ │ │ │ │ │ ├── test_groupby.cpython-36.pyc
│ │ │ │ │ │ ├── test_grouping.cpython-36.pyc
│ │ │ │ │ │ ├── test_index_as_string.cpython-36.pyc
│ │ │ │ │ │ ├── test_nth.cpython-36.pyc
│ │ │ │ │ │ ├── test_rank.cpython-36.pyc
│ │ │ │ │ │ ├── test_timegrouper.cpython-36.pyc
│ │ │ │ │ │ ├── test_transform.cpython-36.pyc
│ │ │ │ │ │ ├── test_value_counts.cpython-36.pyc
│ │ │ │ │ │ └── test_whitelist.cpython-36.pyc
│ │ │ │ │ ├── test_apply.py
│ │ │ │ │ ├── test_bin_groupby.py
│ │ │ │ │ ├── test_categorical.py
│ │ │ │ │ ├── test_counting.py
│ │ │ │ │ ├── test_filters.py
│ │ │ │ │ ├── test_function.py
│ │ │ │ │ ├── test_groupby.py
│ │ │ │ │ ├── test_grouping.py
│ │ │ │ │ ├── test_index_as_string.py
│ │ │ │ │ ├── test_nth.py
│ │ │ │ │ ├── test_rank.py
│ │ │ │ │ ├── test_timegrouper.py
│ │ │ │ │ ├── test_transform.py
│ │ │ │ │ ├── test_value_counts.py
│ │ │ │ │ └── test_whitelist.py
│ │ │ │ ├── indexes
│ │ │ │ │ ├── common.py
│ │ │ │ │ ├── conftest.py
│ │ │ │ │ ├── data
│ │ │ │ │ │ ├── mindex_073.pickle
│ │ │ │ │ │ └── multiindex_v1.pickle
│ │ │ │ │ ├── datetimelike.py
│ │ │ │ │ ├── datetimes
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_arithmetic.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_astype.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_construction.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_date_range.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_datetime.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_datetimelike.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_formats.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_indexing.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_misc.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_missing.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_ops.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_partial_slicing.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_scalar_compat.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_setops.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_timezones.cpython-36.pyc
│ │ │ │ │ │ │ └── test_tools.cpython-36.pyc
│ │ │ │ │ │ ├── test_arithmetic.py
│ │ │ │ │ │ ├── test_astype.py
│ │ │ │ │ │ ├── test_construction.py
│ │ │ │ │ │ ├── test_date_range.py
│ │ │ │ │ │ ├── test_datetimelike.py
│ │ │ │ │ │ ├── test_datetime.py
│ │ │ │ │ │ ├── test_formats.py
│ │ │ │ │ │ ├── test_indexing.py
│ │ │ │ │ │ ├── test_misc.py
│ │ │ │ │ │ ├── test_missing.py
│ │ │ │ │ │ ├── test_ops.py
│ │ │ │ │ │ ├── test_partial_slicing.py
│ │ │ │ │ │ ├── test_scalar_compat.py
│ │ │ │ │ │ ├── test_setops.py
│ │ │ │ │ │ ├── test_timezones.py
│ │ │ │ │ │ └── test_tools.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── interval
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_astype.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_construction.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_interval.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_interval_new.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_interval_range.cpython-36.pyc
│ │ │ │ │ │ │ └── test_interval_tree.cpython-36.pyc
│ │ │ │ │ │ ├── test_astype.py
│ │ │ │ │ │ ├── test_construction.py
│ │ │ │ │ │ ├── test_interval_new.py
│ │ │ │ │ │ ├── test_interval.py
│ │ │ │ │ │ ├── test_interval_range.py
│ │ │ │ │ │ └── test_interval_tree.py
│ │ │ │ │ ├── period
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_arithmetic.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_asfreq.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_astype.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_construction.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_formats.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_indexing.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_ops.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_partial_slicing.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_period.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_period_range.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_scalar_compat.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_setops.cpython-36.pyc
│ │ │ │ │ │ │ └── test_tools.cpython-36.pyc
│ │ │ │ │ │ ├── test_arithmetic.py
│ │ │ │ │ │ ├── test_asfreq.py
│ │ │ │ │ │ ├── test_astype.py
│ │ │ │ │ │ ├── test_construction.py
│ │ │ │ │ │ ├── test_formats.py
│ │ │ │ │ │ ├── test_indexing.py
│ │ │ │ │ │ ├── test_ops.py
│ │ │ │ │ │ ├── test_partial_slicing.py
│ │ │ │ │ │ ├── test_period.py
│ │ │ │ │ │ ├── test_period_range.py
│ │ │ │ │ │ ├── test_scalar_compat.py
│ │ │ │ │ │ ├── test_setops.py
│ │ │ │ │ │ └── test_tools.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── common.cpython-36.pyc
│ │ │ │ │ │ ├── conftest.cpython-36.pyc
│ │ │ │ │ │ ├── datetimelike.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_base.cpython-36.pyc
│ │ │ │ │ │ ├── test_category.cpython-36.pyc
│ │ │ │ │ │ ├── test_frozen.cpython-36.pyc
│ │ │ │ │ │ ├── test_multi.cpython-36.pyc
│ │ │ │ │ │ ├── test_numeric.cpython-36.pyc
│ │ │ │ │ │ └── test_range.cpython-36.pyc
│ │ │ │ │ ├── test_base.py
│ │ │ │ │ ├── test_category.py
│ │ │ │ │ ├── test_frozen.py
│ │ │ │ │ ├── test_multi.py
│ │ │ │ │ ├── test_numeric.py
│ │ │ │ │ ├── test_range.py
│ │ │ │ │ └── timedeltas
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_arithmetic.cpython-36.pyc
│ │ │ │ │ │ ├── test_astype.cpython-36.pyc
│ │ │ │ │ │ ├── test_construction.cpython-36.pyc
│ │ │ │ │ │ ├── test_formats.cpython-36.pyc
│ │ │ │ │ │ ├── test_indexing.cpython-36.pyc
│ │ │ │ │ │ ├── test_ops.cpython-36.pyc
│ │ │ │ │ │ ├── test_partial_slicing.cpython-36.pyc
│ │ │ │ │ │ ├── test_scalar_compat.cpython-36.pyc
│ │ │ │ │ │ ├── test_setops.cpython-36.pyc
│ │ │ │ │ │ ├── test_timedelta.cpython-36.pyc
│ │ │ │ │ │ ├── test_timedelta_range.cpython-36.pyc
│ │ │ │ │ │ └── test_tools.cpython-36.pyc
│ │ │ │ │ ├── test_arithmetic.py
│ │ │ │ │ ├── test_astype.py
│ │ │ │ │ ├── test_construction.py
│ │ │ │ │ ├── test_formats.py
│ │ │ │ │ ├── test_indexing.py
│ │ │ │ │ ├── test_ops.py
│ │ │ │ │ ├── test_partial_slicing.py
│ │ │ │ │ ├── test_scalar_compat.py
│ │ │ │ │ ├── test_setops.py
│ │ │ │ │ ├── test_timedelta.py
│ │ │ │ │ ├── test_timedelta_range.py
│ │ │ │ │ └── test_tools.py
│ │ │ │ ├── indexing
│ │ │ │ │ ├── common.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── interval
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_interval.cpython-36.pyc
│ │ │ │ │ │ │ └── test_interval_new.cpython-36.pyc
│ │ │ │ │ │ ├── test_interval_new.py
│ │ │ │ │ │ └── test_interval.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── common.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_callable.cpython-36.pyc
│ │ │ │ │ │ ├── test_categorical.cpython-36.pyc
│ │ │ │ │ │ ├── test_chaining_and_caching.cpython-36.pyc
│ │ │ │ │ │ ├── test_coercion.cpython-36.pyc
│ │ │ │ │ │ ├── test_datetime.cpython-36.pyc
│ │ │ │ │ │ ├── test_floats.cpython-36.pyc
│ │ │ │ │ │ ├── test_iloc.cpython-36.pyc
│ │ │ │ │ │ ├── test_indexing.cpython-36.pyc
│ │ │ │ │ │ ├── test_indexing_slow.cpython-36.pyc
│ │ │ │ │ │ ├── test_ix.cpython-36.pyc
│ │ │ │ │ │ ├── test_loc.cpython-36.pyc
│ │ │ │ │ │ ├── test_multiindex.cpython-36.pyc
│ │ │ │ │ │ ├── test_panel.cpython-36.pyc
│ │ │ │ │ │ ├── test_partial.cpython-36.pyc
│ │ │ │ │ │ ├── test_scalar.cpython-36.pyc
│ │ │ │ │ │ └── test_timedelta.cpython-36.pyc
│ │ │ │ │ ├── test_callable.py
│ │ │ │ │ ├── test_categorical.py
│ │ │ │ │ ├── test_chaining_and_caching.py
│ │ │ │ │ ├── test_coercion.py
│ │ │ │ │ ├── test_datetime.py
│ │ │ │ │ ├── test_floats.py
│ │ │ │ │ ├── test_iloc.py
│ │ │ │ │ ├── test_indexing.py
│ │ │ │ │ ├── test_indexing_slow.py
│ │ │ │ │ ├── test_ix.py
│ │ │ │ │ ├── test_loc.py
│ │ │ │ │ ├── test_multiindex.py
│ │ │ │ │ ├── test_panel.py
│ │ │ │ │ ├── test_partial.py
│ │ │ │ │ ├── test_scalar.py
│ │ │ │ │ └── test_timedelta.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── internals
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ └── test_internals.cpython-36.pyc
│ │ │ │ │ └── test_internals.py
│ │ │ │ ├── io
│ │ │ │ │ ├── conftest.py
│ │ │ │ │ ├── data
│ │ │ │ │ │ ├── banklist.csv
│ │ │ │ │ │ ├── banklist.html
│ │ │ │ │ │ ├── blank_with_header.xls
│ │ │ │ │ │ ├── blank_with_header.xlsm
│ │ │ │ │ │ ├── blank_with_header.xlsx
│ │ │ │ │ │ ├── blank.xls
│ │ │ │ │ │ ├── blank.xlsm
│ │ │ │ │ │ ├── blank.xlsx
│ │ │ │ │ │ ├── categorical_0_14_1.pickle
│ │ │ │ │ │ ├── categorical_0_15_2.pickle
│ │ │ │ │ │ ├── computer_sales_page.html
│ │ │ │ │ │ ├── feather-0_3_1.feather
│ │ │ │ │ │ ├── fixed_width_format.txt
│ │ │ │ │ │ ├── gbq_fake_job.txt
│ │ │ │ │ │ ├── html_encoding
│ │ │ │ │ │ │ ├── chinese_utf-16.html
│ │ │ │ │ │ │ ├── chinese_utf-32.html
│ │ │ │ │ │ │ ├── chinese_utf-8.html
│ │ │ │ │ │ │ └── letz_latin1.html
│ │ │ │ │ │ ├── iris.csv
│ │ │ │ │ │ ├── legacy_hdf
│ │ │ │ │ │ │ ├── datetimetz_object.h5
│ │ │ │ │ │ │ ├── legacy_table.h5
│ │ │ │ │ │ │ ├── periodindex_0.20.1_x86_64_darwin_2.7.13.h5
│ │ │ │ │ │ │ ├── pytables_native2.h5
│ │ │ │ │ │ │ └── pytables_native.h5
│ │ │ │ │ │ ├── legacy_msgpack
│ │ │ │ │ │ │ ├── 0.16.0
│ │ │ │ │ │ │ │ └── 0.16.0_x86_64_darwin_2.7.9.msgpack
│ │ │ │ │ │ │ ├── 0.16.2
│ │ │ │ │ │ │ │ ├── 0.16.2_AMD64_windows_2.7.10.msgpack
│ │ │ │ │ │ │ │ ├── 0.16.2_AMD64_windows_3.4.3.msgpack
│ │ │ │ │ │ │ │ ├── 0.16.2_x86_64_darwin_2.7.10.msgpack
│ │ │ │ │ │ │ │ ├── 0.16.2_x86_64_darwin_2.7.9.msgpack
│ │ │ │ │ │ │ │ ├── 0.16.2_x86_64_darwin_3.4.3.msgpack
│ │ │ │ │ │ │ │ ├── 0.16.2_x86_64_linux_2.7.10.msgpack
│ │ │ │ │ │ │ │ └── 0.16.2_x86_64_linux_3.4.3.msgpack
│ │ │ │ │ │ │ ├── 0.17.0
│ │ │ │ │ │ │ │ ├── 0.17.0_AMD64_windows_2.7.11.msgpack
│ │ │ │ │ │ │ │ ├── 0.17.0_AMD64_windows_3.4.4.msgpack
│ │ │ │ │ │ │ │ ├── 0.17.0_x86_64_darwin_2.7.11.msgpack
│ │ │ │ │ │ │ │ ├── 0.17.0_x86_64_darwin_3.4.4.msgpack
│ │ │ │ │ │ │ │ ├── 0.17.0_x86_64_linux_2.7.11.msgpack
│ │ │ │ │ │ │ │ ├── 0.17.0_x86_64_linux_3.4.4.msgpack
│ │ │ │ │ │ │ │ ├── 0.17.1_AMD64_windows_2.7.11.msgpack
│ │ │ │ │ │ │ │ └── 0.17.1_AMD64_windows_3.5.1.msgpack
│ │ │ │ │ │ │ ├── 0.17.1
│ │ │ │ │ │ │ │ ├── 0.17.1_AMD64_windows_2.7.11.msgpack
│ │ │ │ │ │ │ │ ├── 0.17.1_AMD64_windows_3.5.1.msgpack
│ │ │ │ │ │ │ │ ├── 0.17.1_x86_64_darwin_2.7.11.msgpack
│ │ │ │ │ │ │ │ ├── 0.17.1_x86_64_darwin_3.5.1.msgpack
│ │ │ │ │ │ │ │ ├── 0.17.1_x86_64_linux_2.7.11.msgpack
│ │ │ │ │ │ │ │ └── 0.17.1_x86_64_linux_3.4.4.msgpack
│ │ │ │ │ │ │ ├── 0.18.0
│ │ │ │ │ │ │ │ ├── 0.18.0_AMD64_windows_2.7.11.msgpack
│ │ │ │ │ │ │ │ ├── 0.18.0_AMD64_windows_3.5.1.msgpack
│ │ │ │ │ │ │ │ ├── 0.18.0_x86_64_darwin_2.7.11.msgpack
│ │ │ │ │ │ │ │ └── 0.18.0_x86_64_darwin_3.5.1.msgpack
│ │ │ │ │ │ │ ├── 0.18.1
│ │ │ │ │ │ │ │ ├── 0.18.1_x86_64_darwin_2.7.12.msgpack
│ │ │ │ │ │ │ │ └── 0.18.1_x86_64_darwin_3.5.2.msgpack
│ │ │ │ │ │ │ └── 0.19.2
│ │ │ │ │ │ │ ├── 0.19.2_x86_64_darwin_2.7.12.msgpack
│ │ │ │ │ │ │ └── 0.19.2_x86_64_darwin_3.6.1.msgpack
│ │ │ │ │ │ ├── legacy_pickle
│ │ │ │ │ │ │ ├── 0.10.1
│ │ │ │ │ │ │ │ ├── AMD64_windows_2.7.3.pickle
│ │ │ │ │ │ │ │ └── x86_64_linux_2.7.3.pickle
│ │ │ │ │ │ │ ├── 0.11.0
│ │ │ │ │ │ │ │ ├── 0.11.0_x86_64_linux_3.3.0.pickle
│ │ │ │ │ │ │ │ ├── x86_64_linux_2.7.3.pickle
│ │ │ │ │ │ │ │ └── x86_64_linux_3.3.0.pickle
│ │ │ │ │ │ │ ├── 0.12.0
│ │ │ │ │ │ │ │ ├── 0.12.0_AMD64_windows_2.7.3.pickle
│ │ │ │ │ │ │ │ └── 0.12.0_x86_64_linux_2.7.3.pickle
│ │ │ │ │ │ │ ├── 0.13.0
│ │ │ │ │ │ │ │ ├── 0.13.0_AMD64_windows_2.7.3.pickle
│ │ │ │ │ │ │ │ ├── 0.13.0_i686_linux_2.6.5.pickle
│ │ │ │ │ │ │ │ ├── 0.13.0_i686_linux_2.7.3.pickle
│ │ │ │ │ │ │ │ ├── 0.13.0_i686_linux_3.2.3.pickle
│ │ │ │ │ │ │ │ ├── 0.13.0_x86_64_darwin_2.7.5.pickle
│ │ │ │ │ │ │ │ ├── 0.13.0_x86_64_darwin_2.7.6.pickle
│ │ │ │ │ │ │ │ ├── 0.13.0_x86_64_linux_2.7.3.pickle
│ │ │ │ │ │ │ │ ├── 0.13.0_x86_64_linux_2.7.8.pickle
│ │ │ │ │ │ │ │ └── 0.13.0_x86_64_linux_3.3.0.pickle
│ │ │ │ │ │ │ ├── 0.14.0
│ │ │ │ │ │ │ │ ├── 0.14.0_x86_64_darwin_2.7.6.pickle
│ │ │ │ │ │ │ │ └── 0.14.0_x86_64_linux_2.7.8.pickle
│ │ │ │ │ │ │ ├── 0.14.1
│ │ │ │ │ │ │ │ ├── 0.14.1_x86_64_darwin_2.7.12.pickle
│ │ │ │ │ │ │ │ └── 0.14.1_x86_64_linux_2.7.8.pickle
│ │ │ │ │ │ │ ├── 0.15.0
│ │ │ │ │ │ │ │ ├── 0.15.0_x86_64_darwin_2.7.12.pickle
│ │ │ │ │ │ │ │ └── 0.15.0_x86_64_linux_2.7.8.pickle
│ │ │ │ │ │ │ ├── 0.15.2
│ │ │ │ │ │ │ │ └── 0.15.2_x86_64_darwin_2.7.9.pickle
│ │ │ │ │ │ │ ├── 0.16.0
│ │ │ │ │ │ │ │ └── 0.16.0_x86_64_darwin_2.7.9.pickle
│ │ │ │ │ │ │ ├── 0.16.2
│ │ │ │ │ │ │ │ ├── 0.16.2_AMD64_windows_2.7.10.pickle
│ │ │ │ │ │ │ │ ├── 0.16.2_AMD64_windows_2.7.14.pickle
│ │ │ │ │ │ │ │ ├── 0.16.2_AMD64_windows_3.4.3.pickle
│ │ │ │ │ │ │ │ ├── 0.16.2_x86_64_darwin_2.7.10.pickle
│ │ │ │ │ │ │ │ ├── 0.16.2_x86_64_darwin_2.7.9.pickle
│ │ │ │ │ │ │ │ ├── 0.16.2_x86_64_darwin_3.4.3.pickle
│ │ │ │ │ │ │ │ ├── 0.16.2_x86_64_linux_2.7.10.pickle
│ │ │ │ │ │ │ │ └── 0.16.2_x86_64_linux_3.4.3.pickle
│ │ │ │ │ │ │ ├── 0.17.0
│ │ │ │ │ │ │ │ ├── 0.17.0_AMD64_windows_2.7.11.pickle
│ │ │ │ │ │ │ │ ├── 0.17.0_AMD64_windows_3.4.4.pickle
│ │ │ │ │ │ │ │ ├── 0.17.0_x86_64_darwin_2.7.11.pickle
│ │ │ │ │ │ │ │ ├── 0.17.0_x86_64_darwin_3.4.4.pickle
│ │ │ │ │ │ │ │ ├── 0.17.0_x86_64_darwin_3.5.3.pickle
│ │ │ │ │ │ │ │ ├── 0.17.0_x86_64_linux_2.7.11.pickle
│ │ │ │ │ │ │ │ ├── 0.17.0_x86_64_linux_3.4.4.pickle
│ │ │ │ │ │ │ │ └── 0.17.1_AMD64_windows_2.7.11.pickle
│ │ │ │ │ │ │ ├── 0.17.1
│ │ │ │ │ │ │ │ ├── 0.17.1_AMD64_windows_2.7.11.pickle
│ │ │ │ │ │ │ │ └── 0.17.1_x86_64_darwin_2.7.11.pickle
│ │ │ │ │ │ │ ├── 0.18.0
│ │ │ │ │ │ │ │ ├── 0.18.0_AMD64_windows_2.7.11.pickle
│ │ │ │ │ │ │ │ ├── 0.18.0_AMD64_windows_3.5.1.pickle
│ │ │ │ │ │ │ │ ├── 0.18.0_x86_64_darwin_2.7.11.pickle
│ │ │ │ │ │ │ │ └── 0.18.0_x86_64_darwin_3.5.1.pickle
│ │ │ │ │ │ │ ├── 0.18.1
│ │ │ │ │ │ │ │ ├── 0.18.1_x86_64_darwin_2.7.12.pickle
│ │ │ │ │ │ │ │ └── 0.18.1_x86_64_darwin_3.5.2.pickle
│ │ │ │ │ │ │ ├── 0.19.2
│ │ │ │ │ │ │ │ ├── 0.19.2_AMD64_windows_2.7.14.pickle
│ │ │ │ │ │ │ │ ├── 0.19.2_x86_64_darwin_2.7.12.pickle
│ │ │ │ │ │ │ │ ├── 0.19.2_x86_64_darwin_2.7.14.pickle
│ │ │ │ │ │ │ │ └── 0.19.2_x86_64_darwin_3.6.1.pickle
│ │ │ │ │ │ │ └── 0.20.3
│ │ │ │ │ │ │ └── 0.20.3_x86_64_darwin_2.7.14.pickle
│ │ │ │ │ │ ├── macau.html
│ │ │ │ │ │ ├── nyse_wsj.html
│ │ │ │ │ │ ├── S4_EDUC1.dta
│ │ │ │ │ │ ├── spam.html
│ │ │ │ │ │ ├── stata10_115.dta
│ │ │ │ │ │ ├── stata10_117.dta
│ │ │ │ │ │ ├── stata11_115.dta
│ │ │ │ │ │ ├── stata11_117.dta
│ │ │ │ │ │ ├── stata1_114.dta
│ │ │ │ │ │ ├── stata1_117.dta
│ │ │ │ │ │ ├── stata12_117.dta
│ │ │ │ │ │ ├── stata13_dates.dta
│ │ │ │ │ │ ├── stata14_118.dta
│ │ │ │ │ │ ├── stata15.dta
│ │ │ │ │ │ ├── stata1_encoding.dta
│ │ │ │ │ │ ├── stata2_113.dta
│ │ │ │ │ │ ├── stata2_114.dta
│ │ │ │ │ │ ├── stata2_115.dta
│ │ │ │ │ │ ├── stata2_117.dta
│ │ │ │ │ │ ├── stata3_113.dta
│ │ │ │ │ │ ├── stata3_114.dta
│ │ │ │ │ │ ├── stata3_115.dta
│ │ │ │ │ │ ├── stata3_117.dta
│ │ │ │ │ │ ├── stata3.csv
│ │ │ │ │ │ ├── stata4_113.dta
│ │ │ │ │ │ ├── stata4_114.dta
│ │ │ │ │ │ ├── stata4_115.dta
│ │ │ │ │ │ ├── stata4_117.dta
│ │ │ │ │ │ ├── stata5_113.dta
│ │ │ │ │ │ ├── stata5_114.dta
│ │ │ │ │ │ ├── stata5_115.dta
│ │ │ │ │ │ ├── stata5_117.dta
│ │ │ │ │ │ ├── stata5.csv
│ │ │ │ │ │ ├── stata6_113.dta
│ │ │ │ │ │ ├── stata6_114.dta
│ │ │ │ │ │ ├── stata6_115.dta
│ │ │ │ │ │ ├── stata6_117.dta
│ │ │ │ │ │ ├── stata6.csv
│ │ │ │ │ │ ├── stata7_111.dta
│ │ │ │ │ │ ├── stata7_115.dta
│ │ │ │ │ │ ├── stata7_117.dta
│ │ │ │ │ │ ├── stata8_113.dta
│ │ │ │ │ │ ├── stata8_115.dta
│ │ │ │ │ │ ├── stata8_117.dta
│ │ │ │ │ │ ├── stata9_115.dta
│ │ │ │ │ │ ├── stata9_117.dta
│ │ │ │ │ │ ├── test1.csv
│ │ │ │ │ │ ├── test1.xls
│ │ │ │ │ │ ├── test1.xlsm
│ │ │ │ │ │ ├── test1.xlsx
│ │ │ │ │ │ ├── test2.xls
│ │ │ │ │ │ ├── test2.xlsm
│ │ │ │ │ │ ├── test2.xlsx
│ │ │ │ │ │ ├── test3.xls
│ │ │ │ │ │ ├── test3.xlsm
│ │ │ │ │ │ ├── test3.xlsx
│ │ │ │ │ │ ├── test4.xls
│ │ │ │ │ │ ├── test4.xlsm
│ │ │ │ │ │ ├── test4.xlsx
│ │ │ │ │ │ ├── test5.xls
│ │ │ │ │ │ ├── test5.xlsm
│ │ │ │ │ │ ├── test5.xlsx
│ │ │ │ │ │ ├── test_converters.xls
│ │ │ │ │ │ ├── test_converters.xlsm
│ │ │ │ │ │ ├── test_converters.xlsx
│ │ │ │ │ │ ├── testdateoverflow.xls
│ │ │ │ │ │ ├── testdateoverflow.xlsm
│ │ │ │ │ │ ├── testdateoverflow.xlsx
│ │ │ │ │ │ ├── testdtype.xls
│ │ │ │ │ │ ├── testdtype.xlsm
│ │ │ │ │ │ ├── testdtype.xlsx
│ │ │ │ │ │ ├── test_index_name_pre17.xls
│ │ │ │ │ │ ├── test_index_name_pre17.xlsm
│ │ │ │ │ │ ├── test_index_name_pre17.xlsx
│ │ │ │ │ │ ├── test_mmap.csv
│ │ │ │ │ │ ├── testmultiindex.xls
│ │ │ │ │ │ ├── testmultiindex.xlsm
│ │ │ │ │ │ ├── testmultiindex.xlsx
│ │ │ │ │ │ ├── test_multisheet.xls
│ │ │ │ │ │ ├── test_multisheet.xlsm
│ │ │ │ │ │ ├── test_multisheet.xlsx
│ │ │ │ │ │ ├── testskiprows.xls
│ │ │ │ │ │ ├── testskiprows.xlsm
│ │ │ │ │ │ ├── testskiprows.xlsx
│ │ │ │ │ │ ├── test_squeeze.xls
│ │ │ │ │ │ ├── test_squeeze.xlsm
│ │ │ │ │ │ ├── test_squeeze.xlsx
│ │ │ │ │ │ ├── test_types.xls
│ │ │ │ │ │ ├── test_types.xlsm
│ │ │ │ │ │ ├── test_types.xlsx
│ │ │ │ │ │ ├── times_1900.xls
│ │ │ │ │ │ ├── times_1900.xlsm
│ │ │ │ │ │ ├── times_1900.xlsx
│ │ │ │ │ │ ├── times_1904.xls
│ │ │ │ │ │ ├── times_1904.xlsm
│ │ │ │ │ │ ├── times_1904.xlsx
│ │ │ │ │ │ ├── tips.csv
│ │ │ │ │ │ ├── valid_markup.html
│ │ │ │ │ │ └── wikipedia_states.html
│ │ │ │ │ ├── formats
│ │ │ │ │ │ ├── data
│ │ │ │ │ │ │ └── unicode_series.csv
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_css.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_eng_formatting.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_format.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_printing.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_style.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_to_csv.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_to_excel.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_to_html.cpython-36.pyc
│ │ │ │ │ │ │ └── test_to_latex.cpython-36.pyc
│ │ │ │ │ │ ├── test_css.py
│ │ │ │ │ │ ├── test_eng_formatting.py
│ │ │ │ │ │ ├── test_format.py
│ │ │ │ │ │ ├── test_printing.py
│ │ │ │ │ │ ├── test_style.py
│ │ │ │ │ │ ├── test_to_csv.py
│ │ │ │ │ │ ├── test_to_excel.py
│ │ │ │ │ │ ├── test_to_html.py
│ │ │ │ │ │ └── test_to_latex.py
│ │ │ │ │ ├── generate_legacy_storage_files.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── json
│ │ │ │ │ │ ├── data
│ │ │ │ │ │ │ ├── tsframe_iso_v012.json
│ │ │ │ │ │ │ ├── tsframe_v012.json
│ │ │ │ │ │ │ └── tsframe_v012.json.zip
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_compression.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_json_table_schema.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_normalize.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_pandas.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_readlines.cpython-36.pyc
│ │ │ │ │ │ │ └── test_ujson.cpython-36.pyc
│ │ │ │ │ │ ├── test_compression.py
│ │ │ │ │ │ ├── test_json_table_schema.py
│ │ │ │ │ │ ├── test_normalize.py
│ │ │ │ │ │ ├── test_pandas.py
│ │ │ │ │ │ ├── test_readlines.py
│ │ │ │ │ │ └── test_ujson.py
│ │ │ │ │ ├── msgpack
│ │ │ │ │ │ ├── common.py
│ │ │ │ │ │ ├── data
│ │ │ │ │ │ │ └── frame.mp
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── common.cpython-36.pyc
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_buffer.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_case.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_except.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_extension.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_format.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_limits.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_newspec.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_obj.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_pack.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_read_size.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_seq.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_sequnpack.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_subtype.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_unpack.cpython-36.pyc
│ │ │ │ │ │ │ └── test_unpack_raw.cpython-36.pyc
│ │ │ │ │ │ ├── test_buffer.py
│ │ │ │ │ │ ├── test_case.py
│ │ │ │ │ │ ├── test_except.py
│ │ │ │ │ │ ├── test_extension.py
│ │ │ │ │ │ ├── test_format.py
│ │ │ │ │ │ ├── test_limits.py
│ │ │ │ │ │ ├── test_newspec.py
│ │ │ │ │ │ ├── test_obj.py
│ │ │ │ │ │ ├── test_pack.py
│ │ │ │ │ │ ├── test_read_size.py
│ │ │ │ │ │ ├── test_seq.py
│ │ │ │ │ │ ├── test_sequnpack.py
│ │ │ │ │ │ ├── test_subtype.py
│ │ │ │ │ │ ├── test_unpack.py
│ │ │ │ │ │ └── test_unpack_raw.py
│ │ │ │ │ ├── parser
│ │ │ │ │ │ ├── comment.py
│ │ │ │ │ │ ├── common.py
│ │ │ │ │ │ ├── compression.py
│ │ │ │ │ │ ├── converters.py
│ │ │ │ │ │ ├── c_parser_only.py
│ │ │ │ │ │ ├── data
│ │ │ │ │ │ │ ├── iris.csv
│ │ │ │ │ │ │ ├── items.jsonl
│ │ │ │ │ │ │ ├── salaries.csv
│ │ │ │ │ │ │ ├── salaries.csv.bz2
│ │ │ │ │ │ │ ├── salaries.csv.gz
│ │ │ │ │ │ │ ├── salaries.csv.xz
│ │ │ │ │ │ │ ├── salaries.csv.zip
│ │ │ │ │ │ │ ├── sauron.SHIFT_JIS.csv
│ │ │ │ │ │ │ ├── sub_char.csv
│ │ │ │ │ │ │ ├── tar_csv.tar
│ │ │ │ │ │ │ ├── tar_csv.tar.gz
│ │ │ │ │ │ │ ├── test1.csv
│ │ │ │ │ │ │ ├── test1.csv.bz2
│ │ │ │ │ │ │ ├── test1.csv.gz
│ │ │ │ │ │ │ ├── test2.csv
│ │ │ │ │ │ │ ├── test_mmap.csv
│ │ │ │ │ │ │ ├── tips.csv
│ │ │ │ │ │ │ ├── tips.csv.bz2
│ │ │ │ │ │ │ ├── tips.csv.gz
│ │ │ │ │ │ │ ├── unicode_series.csv
│ │ │ │ │ │ │ ├── utf16_ex_small.zip
│ │ │ │ │ │ │ └── utf16_ex.txt
│ │ │ │ │ │ ├── dialect.py
│ │ │ │ │ │ ├── dtypes.py
│ │ │ │ │ │ ├── header.py
│ │ │ │ │ │ ├── index_col.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── mangle_dupes.py
│ │ │ │ │ │ ├── multithread.py
│ │ │ │ │ │ ├── na_values.py
│ │ │ │ │ │ ├── parse_dates.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── comment.cpython-36.pyc
│ │ │ │ │ │ │ ├── common.cpython-36.pyc
│ │ │ │ │ │ │ ├── compression.cpython-36.pyc
│ │ │ │ │ │ │ ├── converters.cpython-36.pyc
│ │ │ │ │ │ │ ├── c_parser_only.cpython-36.pyc
│ │ │ │ │ │ │ ├── dialect.cpython-36.pyc
│ │ │ │ │ │ │ ├── dtypes.cpython-36.pyc
│ │ │ │ │ │ │ ├── header.cpython-36.pyc
│ │ │ │ │ │ │ ├── index_col.cpython-36.pyc
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── mangle_dupes.cpython-36.pyc
│ │ │ │ │ │ │ ├── multithread.cpython-36.pyc
│ │ │ │ │ │ │ ├── na_values.cpython-36.pyc
│ │ │ │ │ │ │ ├── parse_dates.cpython-36.pyc
│ │ │ │ │ │ │ ├── python_parser_only.cpython-36.pyc
│ │ │ │ │ │ │ ├── quoting.cpython-36.pyc
│ │ │ │ │ │ │ ├── skiprows.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_network.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_parsers.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_read_fwf.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_textreader.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_unsupported.cpython-36.pyc
│ │ │ │ │ │ │ └── usecols.cpython-36.pyc
│ │ │ │ │ │ ├── python_parser_only.py
│ │ │ │ │ │ ├── quoting.py
│ │ │ │ │ │ ├── skiprows.py
│ │ │ │ │ │ ├── test_network.py
│ │ │ │ │ │ ├── test_parsers.py
│ │ │ │ │ │ ├── test_read_fwf.py
│ │ │ │ │ │ ├── test_textreader.py
│ │ │ │ │ │ ├── test_unsupported.py
│ │ │ │ │ │ └── usecols.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── conftest.cpython-36.pyc
│ │ │ │ │ │ ├── generate_legacy_storage_files.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_clipboard.cpython-36.pyc
│ │ │ │ │ │ ├── test_common.cpython-36.pyc
│ │ │ │ │ │ ├── test_excel.cpython-36.pyc
│ │ │ │ │ │ ├── test_feather.cpython-36.pyc
│ │ │ │ │ │ ├── test_gbq.cpython-36.pyc
│ │ │ │ │ │ ├── test_html.cpython-36.pyc
│ │ │ │ │ │ ├── test_packers.cpython-36.pyc
│ │ │ │ │ │ ├── test_parquet.cpython-36.pyc
│ │ │ │ │ │ ├── test_pickle.cpython-36.pyc
│ │ │ │ │ │ ├── test_pytables.cpython-36.pyc
│ │ │ │ │ │ ├── test_s3.cpython-36.pyc
│ │ │ │ │ │ ├── test_sql.cpython-36.pyc
│ │ │ │ │ │ └── test_stata.cpython-36.pyc
│ │ │ │ │ ├── sas
│ │ │ │ │ │ ├── data
│ │ │ │ │ │ │ ├── airline.csv
│ │ │ │ │ │ │ ├── airline.sas7bdat
│ │ │ │ │ │ │ ├── datetime.csv
│ │ │ │ │ │ │ ├── datetime.sas7bdat
│ │ │ │ │ │ │ ├── DEMO_G.csv
│ │ │ │ │ │ │ ├── DEMO_G.xpt
│ │ │ │ │ │ │ ├── DRXFCD_G.csv
│ │ │ │ │ │ │ ├── DRXFCD_G.xpt
│ │ │ │ │ │ │ ├── paxraw_d_short.csv
│ │ │ │ │ │ │ ├── paxraw_d_short.xpt
│ │ │ │ │ │ │ ├── productsales.csv
│ │ │ │ │ │ │ ├── productsales.sas7bdat
│ │ │ │ │ │ │ ├── SSHSV1_A.csv
│ │ │ │ │ │ │ ├── SSHSV1_A.xpt
│ │ │ │ │ │ │ ├── test10.sas7bdat
│ │ │ │ │ │ │ ├── test11.sas7bdat
│ │ │ │ │ │ │ ├── test_12659.csv
│ │ │ │ │ │ │ ├── test_12659.sas7bdat
│ │ │ │ │ │ │ ├── test12.sas7bdat
│ │ │ │ │ │ │ ├── test13.sas7bdat
│ │ │ │ │ │ │ ├── test14.sas7bdat
│ │ │ │ │ │ │ ├── test15.sas7bdat
│ │ │ │ │ │ │ ├── test16.sas7bdat
│ │ │ │ │ │ │ ├── test1.sas7bdat
│ │ │ │ │ │ │ ├── test2.sas7bdat
│ │ │ │ │ │ │ ├── test3.sas7bdat
│ │ │ │ │ │ │ ├── test4.sas7bdat
│ │ │ │ │ │ │ ├── test5.sas7bdat
│ │ │ │ │ │ │ ├── test6.sas7bdat
│ │ │ │ │ │ │ ├── test7.sas7bdat
│ │ │ │ │ │ │ ├── test8.sas7bdat
│ │ │ │ │ │ │ ├── test9.sas7bdat
│ │ │ │ │ │ │ ├── test_sas7bdat_1.csv
│ │ │ │ │ │ │ ├── test_sas7bdat_2.csv
│ │ │ │ │ │ │ └── zero_variables.sas7bdat
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_sas7bdat.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_sas.cpython-36.pyc
│ │ │ │ │ │ │ └── test_xport.cpython-36.pyc
│ │ │ │ │ │ ├── test_sas7bdat.py
│ │ │ │ │ │ ├── test_sas.py
│ │ │ │ │ │ └── test_xport.py
│ │ │ │ │ ├── test_clipboard.py
│ │ │ │ │ ├── test_common.py
│ │ │ │ │ ├── test_excel.py
│ │ │ │ │ ├── test_feather.py
│ │ │ │ │ ├── test_gbq.py
│ │ │ │ │ ├── test_html.py
│ │ │ │ │ ├── test_packers.py
│ │ │ │ │ ├── test_parquet.py
│ │ │ │ │ ├── test_pickle.py
│ │ │ │ │ ├── test_pytables.py
│ │ │ │ │ ├── test_s3.py
│ │ │ │ │ ├── test_sql.py
│ │ │ │ │ └── test_stata.py
│ │ │ │ ├── plotting
│ │ │ │ │ ├── common.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── common.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_boxplot_method.cpython-36.pyc
│ │ │ │ │ │ ├── test_converter.cpython-36.pyc
│ │ │ │ │ │ ├── test_datetimelike.cpython-36.pyc
│ │ │ │ │ │ ├── test_deprecated.cpython-36.pyc
│ │ │ │ │ │ ├── test_frame.cpython-36.pyc
│ │ │ │ │ │ ├── test_groupby.cpython-36.pyc
│ │ │ │ │ │ ├── test_hist_method.cpython-36.pyc
│ │ │ │ │ │ ├── test_misc.cpython-36.pyc
│ │ │ │ │ │ └── test_series.cpython-36.pyc
│ │ │ │ │ ├── test_boxplot_method.py
│ │ │ │ │ ├── test_converter.py
│ │ │ │ │ ├── test_datetimelike.py
│ │ │ │ │ ├── test_deprecated.py
│ │ │ │ │ ├── test_frame.py
│ │ │ │ │ ├── test_groupby.py
│ │ │ │ │ ├── test_hist_method.py
│ │ │ │ │ ├── test_misc.py
│ │ │ │ │ └── test_series.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── test_algos.cpython-36.pyc
│ │ │ │ │ ├── test_base.cpython-36.pyc
│ │ │ │ │ ├── test_common.cpython-36.pyc
│ │ │ │ │ ├── test_compat.cpython-36.pyc
│ │ │ │ │ ├── test_config.cpython-36.pyc
│ │ │ │ │ ├── test_downstream.cpython-36.pyc
│ │ │ │ │ ├── test_errors.cpython-36.pyc
│ │ │ │ │ ├── test_expressions.cpython-36.pyc
│ │ │ │ │ ├── test_join.cpython-36.pyc
│ │ │ │ │ ├── test_lib.cpython-36.pyc
│ │ │ │ │ ├── test_multilevel.cpython-36.pyc
│ │ │ │ │ ├── test_nanops.cpython-36.pyc
│ │ │ │ │ ├── test_panel.cpython-36.pyc
│ │ │ │ │ ├── test_register_accessor.cpython-36.pyc
│ │ │ │ │ ├── test_resample.cpython-36.pyc
│ │ │ │ │ ├── test_sorting.cpython-36.pyc
│ │ │ │ │ ├── test_strings.cpython-36.pyc
│ │ │ │ │ ├── test_take.cpython-36.pyc
│ │ │ │ │ └── test_window.cpython-36.pyc
│ │ │ │ ├── reshape
│ │ │ │ │ ├── data
│ │ │ │ │ │ └── cut_data.csv
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── merge
│ │ │ │ │ │ ├── data
│ │ │ │ │ │ │ ├── allow_exact_matches_and_tolerance.csv
│ │ │ │ │ │ │ ├── allow_exact_matches.csv
│ │ │ │ │ │ │ ├── asof2.csv
│ │ │ │ │ │ │ ├── asof.csv
│ │ │ │ │ │ │ ├── quotes2.csv
│ │ │ │ │ │ │ ├── quotes.csv
│ │ │ │ │ │ │ ├── tolerance.csv
│ │ │ │ │ │ │ ├── trades2.csv
│ │ │ │ │ │ │ └── trades.csv
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_join.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_merge_asof.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_merge.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_merge_index_as_string.cpython-36.pyc
│ │ │ │ │ │ │ └── test_merge_ordered.cpython-36.pyc
│ │ │ │ │ │ ├── test_join.py
│ │ │ │ │ │ ├── test_merge_asof.py
│ │ │ │ │ │ ├── test_merge_index_as_string.py
│ │ │ │ │ │ ├── test_merge_ordered.py
│ │ │ │ │ │ └── test_merge.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_concat.cpython-36.pyc
│ │ │ │ │ │ ├── test_melt.cpython-36.pyc
│ │ │ │ │ │ ├── test_pivot.cpython-36.pyc
│ │ │ │ │ │ ├── test_reshape.cpython-36.pyc
│ │ │ │ │ │ ├── test_tile.cpython-36.pyc
│ │ │ │ │ │ ├── test_union_categoricals.cpython-36.pyc
│ │ │ │ │ │ └── test_util.cpython-36.pyc
│ │ │ │ │ ├── test_concat.py
│ │ │ │ │ ├── test_melt.py
│ │ │ │ │ ├── test_pivot.py
│ │ │ │ │ ├── test_reshape.py
│ │ │ │ │ ├── test_tile.py
│ │ │ │ │ ├── test_union_categoricals.py
│ │ │ │ │ └── test_util.py
│ │ │ │ ├── scalar
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── interval
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ └── test_interval.cpython-36.pyc
│ │ │ │ │ │ └── test_interval.py
│ │ │ │ │ ├── period
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_asfreq.cpython-36.pyc
│ │ │ │ │ │ │ └── test_period.cpython-36.pyc
│ │ │ │ │ │ ├── test_asfreq.py
│ │ │ │ │ │ └── test_period.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ └── test_nat.cpython-36.pyc
│ │ │ │ │ ├── test_nat.py
│ │ │ │ │ ├── timedelta
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_arithmetic.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_construction.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_formats.cpython-36.pyc
│ │ │ │ │ │ │ └── test_timedelta.cpython-36.pyc
│ │ │ │ │ │ ├── test_arithmetic.py
│ │ │ │ │ │ ├── test_construction.py
│ │ │ │ │ │ ├── test_formats.py
│ │ │ │ │ │ └── test_timedelta.py
│ │ │ │ │ └── timestamp
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_arithmetic.cpython-36.pyc
│ │ │ │ │ │ ├── test_comparisons.cpython-36.pyc
│ │ │ │ │ │ ├── test_rendering.cpython-36.pyc
│ │ │ │ │ │ ├── test_timestamp.cpython-36.pyc
│ │ │ │ │ │ ├── test_timezones.cpython-36.pyc
│ │ │ │ │ │ └── test_unary_ops.cpython-36.pyc
│ │ │ │ │ ├── test_arithmetic.py
│ │ │ │ │ ├── test_comparisons.py
│ │ │ │ │ ├── test_rendering.py
│ │ │ │ │ ├── test_timestamp.py
│ │ │ │ │ ├── test_timezones.py
│ │ │ │ │ └── test_unary_ops.py
│ │ │ │ ├── series
│ │ │ │ │ ├── common.py
│ │ │ │ │ ├── indexing
│ │ │ │ │ │ ├── conftest.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── conftest.cpython-36.pyc
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_alter_index.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_boolean.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_callable.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_datetime.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_iloc.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_indexing.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_loc.cpython-36.pyc
│ │ │ │ │ │ │ └── test_numeric.cpython-36.pyc
│ │ │ │ │ │ ├── test_alter_index.py
│ │ │ │ │ │ ├── test_boolean.py
│ │ │ │ │ │ ├── test_callable.py
│ │ │ │ │ │ ├── test_datetime.py
│ │ │ │ │ │ ├── test_iloc.py
│ │ │ │ │ │ ├── test_indexing.py
│ │ │ │ │ │ ├── test_loc.py
│ │ │ │ │ │ └── test_numeric.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── common.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_alter_axes.cpython-36.pyc
│ │ │ │ │ │ ├── test_analytics.cpython-36.pyc
│ │ │ │ │ │ ├── test_api.cpython-36.pyc
│ │ │ │ │ │ ├── test_apply.cpython-36.pyc
│ │ │ │ │ │ ├── test_arithmetic.cpython-36.pyc
│ │ │ │ │ │ ├── test_asof.cpython-36.pyc
│ │ │ │ │ │ ├── test_combine_concat.cpython-36.pyc
│ │ │ │ │ │ ├── test_constructors.cpython-36.pyc
│ │ │ │ │ │ ├── test_datetime_values.cpython-36.pyc
│ │ │ │ │ │ ├── test_dtypes.cpython-36.pyc
│ │ │ │ │ │ ├── test_internals.cpython-36.pyc
│ │ │ │ │ │ ├── test_io.cpython-36.pyc
│ │ │ │ │ │ ├── test_missing.cpython-36.pyc
│ │ │ │ │ │ ├── test_operators.cpython-36.pyc
│ │ │ │ │ │ ├── test_period.cpython-36.pyc
│ │ │ │ │ │ ├── test_quantile.cpython-36.pyc
│ │ │ │ │ │ ├── test_rank.cpython-36.pyc
│ │ │ │ │ │ ├── test_replace.cpython-36.pyc
│ │ │ │ │ │ ├── test_repr.cpython-36.pyc
│ │ │ │ │ │ ├── test_sorting.cpython-36.pyc
│ │ │ │ │ │ ├── test_subclass.cpython-36.pyc
│ │ │ │ │ │ ├── test_timeseries.cpython-36.pyc
│ │ │ │ │ │ ├── test_timezones.cpython-36.pyc
│ │ │ │ │ │ └── test_validate.cpython-36.pyc
│ │ │ │ │ ├── test_alter_axes.py
│ │ │ │ │ ├── test_analytics.py
│ │ │ │ │ ├── test_api.py
│ │ │ │ │ ├── test_apply.py
│ │ │ │ │ ├── test_arithmetic.py
│ │ │ │ │ ├── test_asof.py
│ │ │ │ │ ├── test_combine_concat.py
│ │ │ │ │ ├── test_constructors.py
│ │ │ │ │ ├── test_datetime_values.py
│ │ │ │ │ ├── test_dtypes.py
│ │ │ │ │ ├── test_internals.py
│ │ │ │ │ ├── test_io.py
│ │ │ │ │ ├── test_missing.py
│ │ │ │ │ ├── test_operators.py
│ │ │ │ │ ├── test_period.py
│ │ │ │ │ ├── test_quantile.py
│ │ │ │ │ ├── test_rank.py
│ │ │ │ │ ├── test_replace.py
│ │ │ │ │ ├── test_repr.py
│ │ │ │ │ ├── test_sorting.py
│ │ │ │ │ ├── test_subclass.py
│ │ │ │ │ ├── test_timeseries.py
│ │ │ │ │ ├── test_timezones.py
│ │ │ │ │ └── test_validate.py
│ │ │ │ ├── sparse
│ │ │ │ │ ├── common.py
│ │ │ │ │ ├── frame
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_analytics.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_apply.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_frame.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_indexing.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_to_csv.cpython-36.pyc
│ │ │ │ │ │ │ └── test_to_from_scipy.cpython-36.pyc
│ │ │ │ │ │ ├── test_analytics.py
│ │ │ │ │ │ ├── test_apply.py
│ │ │ │ │ │ ├── test_frame.py
│ │ │ │ │ │ ├── test_indexing.py
│ │ │ │ │ │ ├── test_to_csv.py
│ │ │ │ │ │ └── test_to_from_scipy.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── common.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_arithmetics.cpython-36.pyc
│ │ │ │ │ │ ├── test_array.cpython-36.pyc
│ │ │ │ │ │ ├── test_combine_concat.cpython-36.pyc
│ │ │ │ │ │ ├── test_format.cpython-36.pyc
│ │ │ │ │ │ ├── test_groupby.cpython-36.pyc
│ │ │ │ │ │ ├── test_indexing.cpython-36.pyc
│ │ │ │ │ │ ├── test_libsparse.cpython-36.pyc
│ │ │ │ │ │ ├── test_pivot.cpython-36.pyc
│ │ │ │ │ │ └── test_reshape.cpython-36.pyc
│ │ │ │ │ ├── series
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_indexing.cpython-36.pyc
│ │ │ │ │ │ │ └── test_series.cpython-36.pyc
│ │ │ │ │ │ ├── test_indexing.py
│ │ │ │ │ │ └── test_series.py
│ │ │ │ │ ├── test_arithmetics.py
│ │ │ │ │ ├── test_array.py
│ │ │ │ │ ├── test_combine_concat.py
│ │ │ │ │ ├── test_format.py
│ │ │ │ │ ├── test_groupby.py
│ │ │ │ │ ├── test_indexing.py
│ │ │ │ │ ├── test_libsparse.py
│ │ │ │ │ ├── test_pivot.py
│ │ │ │ │ └── test_reshape.py
│ │ │ │ ├── test_algos.py
│ │ │ │ ├── test_base.py
│ │ │ │ ├── test_common.py
│ │ │ │ ├── test_compat.py
│ │ │ │ ├── test_config.py
│ │ │ │ ├── test_downstream.py
│ │ │ │ ├── test_errors.py
│ │ │ │ ├── test_expressions.py
│ │ │ │ ├── test_join.py
│ │ │ │ ├── test_lib.py
│ │ │ │ ├── test_multilevel.py
│ │ │ │ ├── test_nanops.py
│ │ │ │ ├── test_panel.py
│ │ │ │ ├── test_register_accessor.py
│ │ │ │ ├── test_resample.py
│ │ │ │ ├── test_sorting.py
│ │ │ │ ├── test_strings.py
│ │ │ │ ├── test_take.py
│ │ │ │ ├── test_window.py
│ │ │ │ ├── tools
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ └── test_numeric.cpython-36.pyc
│ │ │ │ │ └── test_numeric.py
│ │ │ │ ├── tseries
│ │ │ │ │ ├── conftest.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── offsets
│ │ │ │ │ │ ├── common.py
│ │ │ │ │ │ ├── conftest.py
│ │ │ │ │ │ ├── data
│ │ │ │ │ │ │ ├── cday-0.14.1.pickle
│ │ │ │ │ │ │ └── dateoffset_0_15_2.pickle
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── common.cpython-36.pyc
│ │ │ │ │ │ │ ├── conftest.cpython-36.pyc
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_fiscal.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_offsets.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_ticks.cpython-36.pyc
│ │ │ │ │ │ │ └── test_yqm_offsets.cpython-36.pyc
│ │ │ │ │ │ ├── test_fiscal.py
│ │ │ │ │ │ ├── test_offsets.py
│ │ │ │ │ │ ├── test_ticks.py
│ │ │ │ │ │ └── test_yqm_offsets.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── conftest.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_frequencies.cpython-36.pyc
│ │ │ │ │ │ └── test_holiday.cpython-36.pyc
│ │ │ │ │ ├── test_frequencies.py
│ │ │ │ │ └── test_holiday.py
│ │ │ │ ├── tslibs
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_array_to_datetime.cpython-36.pyc
│ │ │ │ │ │ ├── test_ccalendar.cpython-36.pyc
│ │ │ │ │ │ ├── test_conversion.cpython-36.pyc
│ │ │ │ │ │ ├── test_libfrequencies.cpython-36.pyc
│ │ │ │ │ │ ├── test_liboffsets.cpython-36.pyc
│ │ │ │ │ │ ├── test_parsing.cpython-36.pyc
│ │ │ │ │ │ ├── test_period_asfreq.cpython-36.pyc
│ │ │ │ │ │ └── test_timezones.cpython-36.pyc
│ │ │ │ │ ├── test_array_to_datetime.py
│ │ │ │ │ ├── test_ccalendar.py
│ │ │ │ │ ├── test_conversion.py
│ │ │ │ │ ├── test_libfrequencies.py
│ │ │ │ │ ├── test_liboffsets.py
│ │ │ │ │ ├── test_parsing.py
│ │ │ │ │ ├── test_period_asfreq.py
│ │ │ │ │ └── test_timezones.py
│ │ │ │ └── util
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── test_hashing.cpython-36.pyc
│ │ │ │ │ ├── test_testing.cpython-36.pyc
│ │ │ │ │ └── test_util.cpython-36.pyc
│ │ │ │ ├── test_hashing.py
│ │ │ │ ├── test_testing.py
│ │ │ │ └── test_util.py
│ │ │ ├── tools
│ │ │ │ ├── __init__.py
│ │ │ │ ├── merge.py
│ │ │ │ ├── plotting.py
│ │ │ │ └── __pycache__
│ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ ├── merge.cpython-36.pyc
│ │ │ │ └── plotting.cpython-36.pyc
│ │ │ ├── tseries
│ │ │ │ ├── api.py
│ │ │ │ ├── converter.py
│ │ │ │ ├── frequencies.py
│ │ │ │ ├── holiday.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── offsets.py
│ │ │ │ ├── plotting.py
│ │ │ │ └── __pycache__
│ │ │ │ ├── api.cpython-36.pyc
│ │ │ │ ├── converter.cpython-36.pyc
│ │ │ │ ├── frequencies.cpython-36.pyc
│ │ │ │ ├── holiday.cpython-36.pyc
│ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ ├── offsets.cpython-36.pyc
│ │ │ │ └── plotting.cpython-36.pyc
│ │ │ ├── tslib.py
│ │ │ ├── types
│ │ │ │ ├── common.py
│ │ │ │ ├── concat.py
│ │ │ │ ├── __init__.py
│ │ │ │ └── __pycache__
│ │ │ │ ├── common.cpython-36.pyc
│ │ │ │ ├── concat.cpython-36.pyc
│ │ │ │ └── __init__.cpython-36.pyc
│ │ │ ├── util
│ │ │ │ ├── _decorators.py
│ │ │ │ ├── decorators.py
│ │ │ │ ├── _depr_module.py
│ │ │ │ ├── _doctools.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── _move.cp36-win_amd64.pyd
│ │ │ │ ├── _print_versions.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── _decorators.cpython-36.pyc
│ │ │ │ │ ├── decorators.cpython-36.pyc
│ │ │ │ │ ├── _depr_module.cpython-36.pyc
│ │ │ │ │ ├── _doctools.cpython-36.pyc
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── _print_versions.cpython-36.pyc
│ │ │ │ │ ├── _test_decorators.cpython-36.pyc
│ │ │ │ │ ├── _tester.cpython-36.pyc
│ │ │ │ │ ├── testing.cpython-36.pyc
│ │ │ │ │ └── _validators.cpython-36.pyc
│ │ │ │ ├── _test_decorators.py
│ │ │ │ ├── _tester.py
│ │ │ │ ├── testing.py
│ │ │ │ └── _validators.py
│ │ │ └── _version.py
│ │ ├── pandas-0.23.1.dist-info
│ │ │ ├── INSTALLER
│ │ │ ├── METADATA
│ │ │ ├── RECORD
│ │ │ ├── top_level.txt
│ │ │ └── WHEEL
│ │ ├── pip-9.0.1-py3.6.egg
│ │ │ ├── EGG-INFO
│ │ │ │ ├── dependency_links.txt
│ │ │ │ ├── entry_points.txt
│ │ │ │ ├── not-zip-safe
│ │ │ │ ├── PKG-INFO
│ │ │ │ ├── requires.txt
│ │ │ │ ├── SOURCES.txt
│ │ │ │ └── top_level.txt
│ │ │ └── pip
│ │ │ ├── basecommand.py
│ │ │ ├── baseparser.py
│ │ │ ├── cmdoptions.py
│ │ │ ├── commands
│ │ │ │ ├── check.py
│ │ │ │ ├── completion.py
│ │ │ │ ├── download.py
│ │ │ │ ├── freeze.py
│ │ │ │ ├── hash.py
│ │ │ │ ├── help.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── install.py
│ │ │ │ ├── list.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── check.cpython-36.pyc
│ │ │ │ │ ├── completion.cpython-36.pyc
│ │ │ │ │ ├── download.cpython-36.pyc
│ │ │ │ │ ├── freeze.cpython-36.pyc
│ │ │ │ │ ├── hash.cpython-36.pyc
│ │ │ │ │ ├── help.cpython-36.pyc
│ │ │ │ │ ├── __init__.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
│ │ │ │ ├── search.py
│ │ │ │ ├── show.py
│ │ │ │ ├── uninstall.py
│ │ │ │ └── wheel.py
│ │ │ ├── compat
│ │ │ │ ├── dictconfig.py
│ │ │ │ ├── __init__.py
│ │ │ │ └── __pycache__
│ │ │ │ └── __init__.cpython-36.pyc
│ │ │ ├── download.py
│ │ │ ├── exceptions.py
│ │ │ ├── index.py
│ │ │ ├── __init__.py
│ │ │ ├── locations.py
│ │ │ ├── __main__.py
│ │ │ ├── models
│ │ │ │ ├── index.py
│ │ │ │ ├── __init__.py
│ │ │ │ └── __pycache__
│ │ │ │ ├── index.cpython-36.pyc
│ │ │ │ └── __init__.cpython-36.pyc
│ │ │ ├── operations
│ │ │ │ ├── check.py
│ │ │ │ ├── freeze.py
│ │ │ │ ├── __init__.py
│ │ │ │ └── __pycache__
│ │ │ │ ├── check.cpython-36.pyc
│ │ │ │ ├── freeze.cpython-36.pyc
│ │ │ │ └── __init__.cpython-36.pyc
│ │ │ ├── pep425tags.py
│ │ │ ├── __pycache__
│ │ │ │ ├── basecommand.cpython-36.pyc
│ │ │ │ ├── baseparser.cpython-36.pyc
│ │ │ │ ├── cmdoptions.cpython-36.pyc
│ │ │ │ ├── download.cpython-36.pyc
│ │ │ │ ├── exceptions.cpython-36.pyc
│ │ │ │ ├── index.cpython-36.pyc
│ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ ├── locations.cpython-36.pyc
│ │ │ │ ├── pep425tags.cpython-36.pyc
│ │ │ │ ├── status_codes.cpython-36.pyc
│ │ │ │ └── wheel.cpython-36.pyc
│ │ │ ├── req
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── req_file.cpython-36.pyc
│ │ │ │ │ ├── req_install.cpython-36.pyc
│ │ │ │ │ ├── req_set.cpython-36.pyc
│ │ │ │ │ └── req_uninstall.cpython-36.pyc
│ │ │ │ ├── req_file.py
│ │ │ │ ├── req_install.py
│ │ │ │ ├── req_set.py
│ │ │ │ └── req_uninstall.py
│ │ │ ├── status_codes.py
│ │ │ ├── utils
│ │ │ │ ├── appdirs.py
│ │ │ │ ├── build.py
│ │ │ │ ├── deprecation.py
│ │ │ │ ├── encoding.py
│ │ │ │ ├── filesystem.py
│ │ │ │ ├── glibc.py
│ │ │ │ ├── hashes.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── logging.py
│ │ │ │ ├── outdated.py
│ │ │ │ ├── packaging.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── appdirs.cpython-36.pyc
│ │ │ │ │ ├── build.cpython-36.pyc
│ │ │ │ │ ├── deprecation.cpython-36.pyc
│ │ │ │ │ ├── encoding.cpython-36.pyc
│ │ │ │ │ ├── filesystem.cpython-36.pyc
│ │ │ │ │ ├── glibc.cpython-36.pyc
│ │ │ │ │ ├── hashes.cpython-36.pyc
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── logging.cpython-36.pyc
│ │ │ │ │ ├── outdated.cpython-36.pyc
│ │ │ │ │ ├── packaging.cpython-36.pyc
│ │ │ │ │ ├── setuptools_build.cpython-36.pyc
│ │ │ │ │ └── ui.cpython-36.pyc
│ │ │ │ ├── setuptools_build.py
│ │ │ │ └── ui.py
│ │ │ ├── vcs
│ │ │ │ ├── bazaar.py
│ │ │ │ ├── git.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── mercurial.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── bazaar.cpython-36.pyc
│ │ │ │ │ ├── git.cpython-36.pyc
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── mercurial.cpython-36.pyc
│ │ │ │ │ └── subversion.cpython-36.pyc
│ │ │ │ └── subversion.py
│ │ │ ├── _vendor
│ │ │ │ ├── appdirs.py
│ │ │ │ ├── cachecontrol
│ │ │ │ │ ├── adapter.py
│ │ │ │ │ ├── cache.py
│ │ │ │ │ ├── caches
│ │ │ │ │ │ ├── file_cache.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── file_cache.cpython-36.pyc
│ │ │ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ │ │ └── redis_cache.py
│ │ │ │ │ ├── _cmd.py
│ │ │ │ │ ├── compat.py
│ │ │ │ │ ├── controller.py
│ │ │ │ │ ├── filewrapper.py
│ │ │ │ │ ├── heuristics.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── adapter.cpython-36.pyc
│ │ │ │ │ │ ├── cache.cpython-36.pyc
│ │ │ │ │ │ ├── compat.cpython-36.pyc
│ │ │ │ │ │ ├── controller.cpython-36.pyc
│ │ │ │ │ │ ├── filewrapper.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── serialize.cpython-36.pyc
│ │ │ │ │ │ └── wrapper.cpython-36.pyc
│ │ │ │ │ ├── serialize.py
│ │ │ │ │ └── wrapper.py
│ │ │ │ ├── colorama
│ │ │ │ │ ├── ansi.py
│ │ │ │ │ ├── ansitowin32.py
│ │ │ │ │ ├── initialise.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── ansi.cpython-36.pyc
│ │ │ │ │ │ ├── ansitowin32.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── initialise.cpython-36.pyc
│ │ │ │ │ │ ├── win32.cpython-36.pyc
│ │ │ │ │ │ └── winterm.cpython-36.pyc
│ │ │ │ │ ├── win32.py
│ │ │ │ │ └── winterm.py
│ │ │ │ ├── distlib
│ │ │ │ │ ├── _backport
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── misc.py
│ │ │ │ │ │ ├── shutil.py
│ │ │ │ │ │ ├── sysconfig.cfg
│ │ │ │ │ │ ├── sysconfig.py
│ │ │ │ │ │ └── tarfile.py
│ │ │ │ │ ├── compat.py
│ │ │ │ │ ├── database.py
│ │ │ │ │ ├── index.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── locators.py
│ │ │ │ │ ├── manifest.py
│ │ │ │ │ ├── markers.py
│ │ │ │ │ ├── metadata.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── compat.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── resources.cpython-36.pyc
│ │ │ │ │ │ ├── scripts.cpython-36.pyc
│ │ │ │ │ │ └── util.cpython-36.pyc
│ │ │ │ │ ├── resources.py
│ │ │ │ │ ├── scripts.py
│ │ │ │ │ ├── t32.exe
│ │ │ │ │ ├── t64.exe
│ │ │ │ │ ├── util.py
│ │ │ │ │ ├── version.py
│ │ │ │ │ ├── w32.exe
│ │ │ │ │ ├── w64.exe
│ │ │ │ │ └── wheel.py
│ │ │ │ ├── distro.py
│ │ │ │ ├── html5lib
│ │ │ │ │ ├── constants.py
│ │ │ │ │ ├── filters
│ │ │ │ │ │ ├── alphabeticalattributes.py
│ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── inject_meta_charset.py
│ │ │ │ │ │ ├── lint.py
│ │ │ │ │ │ ├── optionaltags.py
│ │ │ │ │ │ ├── sanitizer.py
│ │ │ │ │ │ └── whitespace.py
│ │ │ │ │ ├── html5parser.py
│ │ │ │ │ ├── _ihatexml.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── _inputstream.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── constants.cpython-36.pyc
│ │ │ │ │ │ ├── html5parser.cpython-36.pyc
│ │ │ │ │ │ ├── _ihatexml.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _inputstream.cpython-36.pyc
│ │ │ │ │ │ ├── serializer.cpython-36.pyc
│ │ │ │ │ │ ├── _tokenizer.cpython-36.pyc
│ │ │ │ │ │ └── _utils.cpython-36.pyc
│ │ │ │ │ ├── serializer.py
│ │ │ │ │ ├── _tokenizer.py
│ │ │ │ │ ├── treeadapters
│ │ │ │ │ │ ├── genshi.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ └── sax.py
│ │ │ │ │ ├── treebuilders
│ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ ├── dom.py
│ │ │ │ │ │ ├── etree_lxml.py
│ │ │ │ │ │ ├── etree.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ └── __pycache__
│ │ │ │ │ │ ├── base.cpython-36.pyc
│ │ │ │ │ │ ├── etree.cpython-36.pyc
│ │ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ │ ├── treewalkers
│ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ ├── dom.py
│ │ │ │ │ │ ├── etree_lxml.py
│ │ │ │ │ │ ├── etree.py
│ │ │ │ │ │ ├── genshi.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ └── __pycache__
│ │ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ │ ├── _trie
│ │ │ │ │ │ ├── _base.py
│ │ │ │ │ │ ├── datrie.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── _base.cpython-36.pyc
│ │ │ │ │ │ │ ├── datrie.cpython-36.pyc
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ └── py.cpython-36.pyc
│ │ │ │ │ │ └── py.py
│ │ │ │ │ └── _utils.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── ipaddress.py
│ │ │ │ ├── lockfile
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── linklockfile.py
│ │ │ │ │ ├── mkdirlockfile.py
│ │ │ │ │ ├── pidlockfile.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── linklockfile.cpython-36.pyc
│ │ │ │ │ │ └── mkdirlockfile.cpython-36.pyc
│ │ │ │ │ ├── sqlitelockfile.py
│ │ │ │ │ └── symlinklockfile.py
│ │ │ │ ├── ordereddict.py
│ │ │ │ ├── packaging
│ │ │ │ │ ├── __about__.py
│ │ │ │ │ ├── _compat.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── markers.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __about__.cpython-36.pyc
│ │ │ │ │ │ ├── _compat.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── markers.cpython-36.pyc
│ │ │ │ │ │ ├── requirements.cpython-36.pyc
│ │ │ │ │ │ ├── specifiers.cpython-36.pyc
│ │ │ │ │ │ ├── _structures.cpython-36.pyc
│ │ │ │ │ │ ├── utils.cpython-36.pyc
│ │ │ │ │ │ └── version.cpython-36.pyc
│ │ │ │ │ ├── requirements.py
│ │ │ │ │ ├── specifiers.py
│ │ │ │ │ ├── _structures.py
│ │ │ │ │ ├── utils.py
│ │ │ │ │ └── version.py
│ │ │ │ ├── pkg_resources
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── __pycache__
│ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ ├── progress
│ │ │ │ │ ├── bar.py
│ │ │ │ │ ├── counter.py
│ │ │ │ │ ├── helpers.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── bar.cpython-36.pyc
│ │ │ │ │ │ ├── helpers.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ └── spinner.cpython-36.pyc
│ │ │ │ │ └── spinner.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── appdirs.cpython-36.pyc
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── pyparsing.cpython-36.pyc
│ │ │ │ │ ├── retrying.cpython-36.pyc
│ │ │ │ │ └── six.cpython-36.pyc
│ │ │ │ ├── pyparsing.py
│ │ │ │ ├── requests
│ │ │ │ │ ├── adapters.py
│ │ │ │ │ ├── api.py
│ │ │ │ │ ├── auth.py
│ │ │ │ │ ├── cacert.pem
│ │ │ │ │ ├── certs.py
│ │ │ │ │ ├── compat.py
│ │ │ │ │ ├── cookies.py
│ │ │ │ │ ├── exceptions.py
│ │ │ │ │ ├── hooks.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── models.py
│ │ │ │ │ ├── packages
│ │ │ │ │ │ ├── chardet
│ │ │ │ │ │ │ ├── big5freq.py
│ │ │ │ │ │ │ ├── big5prober.py
│ │ │ │ │ │ │ ├── chardetect.py
│ │ │ │ │ │ │ ├── chardistribution.py
│ │ │ │ │ │ │ ├── charsetgroupprober.py
│ │ │ │ │ │ │ ├── charsetprober.py
│ │ │ │ │ │ │ ├── codingstatemachine.py
│ │ │ │ │ │ │ ├── compat.py
│ │ │ │ │ │ │ ├── constants.py
│ │ │ │ │ │ │ ├── cp949prober.py
│ │ │ │ │ │ │ ├── escprober.py
│ │ │ │ │ │ │ ├── escsm.py
│ │ │ │ │ │ │ ├── eucjpprober.py
│ │ │ │ │ │ │ ├── euckrfreq.py
│ │ │ │ │ │ │ ├── euckrprober.py
│ │ │ │ │ │ │ ├── euctwfreq.py
│ │ │ │ │ │ │ ├── euctwprober.py
│ │ │ │ │ │ │ ├── gb2312freq.py
│ │ │ │ │ │ │ ├── gb2312prober.py
│ │ │ │ │ │ │ ├── hebrewprober.py
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── jisfreq.py
│ │ │ │ │ │ │ ├── jpcntx.py
│ │ │ │ │ │ │ ├── langbulgarianmodel.py
│ │ │ │ │ │ │ ├── langcyrillicmodel.py
│ │ │ │ │ │ │ ├── langgreekmodel.py
│ │ │ │ │ │ │ ├── langhebrewmodel.py
│ │ │ │ │ │ │ ├── langhungarianmodel.py
│ │ │ │ │ │ │ ├── langthaimodel.py
│ │ │ │ │ │ │ ├── latin1prober.py
│ │ │ │ │ │ │ ├── mbcharsetprober.py
│ │ │ │ │ │ │ ├── mbcsgroupprober.py
│ │ │ │ │ │ │ ├── mbcssm.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── sbcharsetprober.py
│ │ │ │ │ │ │ ├── sbcsgroupprober.py
│ │ │ │ │ │ │ ├── sjisprober.py
│ │ │ │ │ │ │ ├── universaldetector.py
│ │ │ │ │ │ │ └── utf8prober.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ │ │ └── urllib3
│ │ │ │ │ │ ├── _collections.py
│ │ │ │ │ │ ├── connectionpool.py
│ │ │ │ │ │ ├── connection.py
│ │ │ │ │ │ ├── contrib
│ │ │ │ │ │ │ ├── appengine.py
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── ntlmpool.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ │ └── socks.cpython-36.pyc
│ │ │ │ │ │ │ ├── pyopenssl.py
│ │ │ │ │ │ │ └── socks.py
│ │ │ │ │ │ ├── exceptions.py
│ │ │ │ │ │ ├── fields.py
│ │ │ │ │ │ ├── filepost.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── packages
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── ordered_dict.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ │ └── six.cpython-36.pyc
│ │ │ │ │ │ │ ├── six.py
│ │ │ │ │ │ │ └── ssl_match_hostname
│ │ │ │ │ │ │ ├── _implementation.py
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ └── __pycache__
│ │ │ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── poolmanager.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── _collections.cpython-36.pyc
│ │ │ │ │ │ │ ├── connection.cpython-36.pyc
│ │ │ │ │ │ │ ├── connectionpool.cpython-36.pyc
│ │ │ │ │ │ │ ├── exceptions.cpython-36.pyc
│ │ │ │ │ │ │ ├── fields.cpython-36.pyc
│ │ │ │ │ │ │ ├── filepost.cpython-36.pyc
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── poolmanager.cpython-36.pyc
│ │ │ │ │ │ │ ├── request.cpython-36.pyc
│ │ │ │ │ │ │ └── response.cpython-36.pyc
│ │ │ │ │ │ ├── request.py
│ │ │ │ │ │ ├── response.py
│ │ │ │ │ │ └── util
│ │ │ │ │ │ ├── connection.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── connection.cpython-36.pyc
│ │ │ │ │ │ │ ├── __init__.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
│ │ │ │ │ │ ├── request.py
│ │ │ │ │ │ ├── response.py
│ │ │ │ │ │ ├── retry.py
│ │ │ │ │ │ ├── ssl_.py
│ │ │ │ │ │ ├── timeout.py
│ │ │ │ │ │ └── url.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── hooks.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── models.cpython-36.pyc
│ │ │ │ │ │ ├── sessions.cpython-36.pyc
│ │ │ │ │ │ ├── status_codes.cpython-36.pyc
│ │ │ │ │ │ ├── structures.cpython-36.pyc
│ │ │ │ │ │ └── utils.cpython-36.pyc
│ │ │ │ │ ├── sessions.py
│ │ │ │ │ ├── status_codes.py
│ │ │ │ │ ├── structures.py
│ │ │ │ │ └── utils.py
│ │ │ │ ├── retrying.py
│ │ │ │ ├── re-vendor.py
│ │ │ │ ├── six.py
│ │ │ │ └── webencodings
│ │ │ │ ├── __init__.py
│ │ │ │ ├── labels.py
│ │ │ │ ├── mklabels.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ └── labels.cpython-36.pyc
│ │ │ │ ├── tests.py
│ │ │ │ └── x_user_defined.py
│ │ │ └── wheel.py
│ │ ├── __pycache__
│ │ │ └── six.cpython-36.pyc
│ │ ├── python_dateutil-2.7.3.dist-info
│ │ │ ├── INSTALLER
│ │ │ ├── LICENSE.txt
│ │ │ ├── METADATA
│ │ │ ├── RECORD
│ │ │ ├── top_level.txt
│ │ │ ├── WHEEL
│ │ │ └── zip-safe
│ │ ├── pytz
│ │ │ ├── exceptions.py
│ │ │ ├── __init__.py
│ │ │ ├── lazy.py
│ │ │ ├── __pycache__
│ │ │ │ ├── exceptions.cpython-36.pyc
│ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ ├── lazy.cpython-36.pyc
│ │ │ │ ├── reference.cpython-36.pyc
│ │ │ │ ├── tzfile.cpython-36.pyc
│ │ │ │ └── tzinfo.cpython-36.pyc
│ │ │ ├── reference.py
│ │ │ ├── tzfile.py
│ │ │ ├── tzinfo.py
│ │ │ └── zoneinfo
│ │ │ ├── Africa
│ │ │ │ ├── Abidjan
│ │ │ │ ├── Accra
│ │ │ │ ├── Addis_Ababa
│ │ │ │ ├── Algiers
│ │ │ │ ├── Asmara
│ │ │ │ ├── Asmera
│ │ │ │ ├── Bamako
│ │ │ │ ├── Bangui
│ │ │ │ ├── Banjul
│ │ │ │ ├── Bissau
│ │ │ │ ├── Blantyre
│ │ │ │ ├── Brazzaville
│ │ │ │ ├── Bujumbura
│ │ │ │ ├── Cairo
│ │ │ │ ├── Casablanca
│ │ │ │ ├── Ceuta
│ │ │ │ ├── Conakry
│ │ │ │ ├── Dakar
│ │ │ │ ├── Dar_es_Salaam
│ │ │ │ ├── Djibouti
│ │ │ │ ├── Douala
│ │ │ │ ├── El_Aaiun
│ │ │ │ ├── Freetown
│ │ │ │ ├── Gaborone
│ │ │ │ ├── Harare
│ │ │ │ ├── Johannesburg
│ │ │ │ ├── Juba
│ │ │ │ ├── Kampala
│ │ │ │ ├── Khartoum
│ │ │ │ ├── Kigali
│ │ │ │ ├── Kinshasa
│ │ │ │ ├── Lagos
│ │ │ │ ├── Libreville
│ │ │ │ ├── Lome
│ │ │ │ ├── Luanda
│ │ │ │ ├── Lubumbashi
│ │ │ │ ├── Lusaka
│ │ │ │ ├── Malabo
│ │ │ │ ├── Maputo
│ │ │ │ ├── Maseru
│ │ │ │ ├── Mbabane
│ │ │ │ ├── Mogadishu
│ │ │ │ ├── Monrovia
│ │ │ │ ├── Nairobi
│ │ │ │ ├── Ndjamena
│ │ │ │ ├── Niamey
│ │ │ │ ├── Nouakchott
│ │ │ │ ├── Ouagadougou
│ │ │ │ ├── Porto-Novo
│ │ │ │ ├── Sao_Tome
│ │ │ │ ├── Timbuktu
│ │ │ │ ├── Tripoli
│ │ │ │ ├── Tunis
│ │ │ │ └── Windhoek
│ │ │ ├── America
│ │ │ │ ├── Adak
│ │ │ │ ├── Anchorage
│ │ │ │ ├── Anguilla
│ │ │ │ ├── Antigua
│ │ │ │ ├── Araguaina
│ │ │ │ ├── Argentina
│ │ │ │ │ ├── Buenos_Aires
│ │ │ │ │ ├── Catamarca
│ │ │ │ │ ├── ComodRivadavia
│ │ │ │ │ ├── Cordoba
│ │ │ │ │ ├── Jujuy
│ │ │ │ │ ├── La_Rioja
│ │ │ │ │ ├── Mendoza
│ │ │ │ │ ├── Rio_Gallegos
│ │ │ │ │ ├── Salta
│ │ │ │ │ ├── San_Juan
│ │ │ │ │ ├── San_Luis
│ │ │ │ │ ├── Tucuman
│ │ │ │ │ └── Ushuaia
│ │ │ │ ├── Aruba
│ │ │ │ ├── Asuncion
│ │ │ │ ├── Atikokan
│ │ │ │ ├── Atka
│ │ │ │ ├── Bahia
│ │ │ │ ├── Bahia_Banderas
│ │ │ │ ├── Barbados
│ │ │ │ ├── Belem
│ │ │ │ ├── Belize
│ │ │ │ ├── Blanc-Sablon
│ │ │ │ ├── Boa_Vista
│ │ │ │ ├── Bogota
│ │ │ │ ├── Boise
│ │ │ │ ├── Buenos_Aires
│ │ │ │ ├── Cambridge_Bay
│ │ │ │ ├── Campo_Grande
│ │ │ │ ├── Cancun
│ │ │ │ ├── Caracas
│ │ │ │ ├── Catamarca
│ │ │ │ ├── Cayenne
│ │ │ │ ├── Cayman
│ │ │ │ ├── Chicago
│ │ │ │ ├── Chihuahua
│ │ │ │ ├── Coral_Harbour
│ │ │ │ ├── Cordoba
│ │ │ │ ├── Costa_Rica
│ │ │ │ ├── Creston
│ │ │ │ ├── Cuiaba
│ │ │ │ ├── Curacao
│ │ │ │ ├── Danmarkshavn
│ │ │ │ ├── Dawson
│ │ │ │ ├── Dawson_Creek
│ │ │ │ ├── Denver
│ │ │ │ ├── Detroit
│ │ │ │ ├── Dominica
│ │ │ │ ├── Edmonton
│ │ │ │ ├── Eirunepe
│ │ │ │ ├── El_Salvador
│ │ │ │ ├── Ensenada
│ │ │ │ ├── Fortaleza
│ │ │ │ ├── Fort_Nelson
│ │ │ │ ├── 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
│ │ │ │ ├── Punta_Arenas
│ │ │ │ ├── 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
│ │ │ │ ├── Atyrau
│ │ │ │ ├── Baghdad
│ │ │ │ ├── Bahrain
│ │ │ │ ├── Baku
│ │ │ │ ├── Bangkok
│ │ │ │ ├── Barnaul
│ │ │ │ ├── Beirut
│ │ │ │ ├── Bishkek
│ │ │ │ ├── Brunei
│ │ │ │ ├── Calcutta
│ │ │ │ ├── Chita
│ │ │ │ ├── Choibalsan
│ │ │ │ ├── Chongqing
│ │ │ │ ├── Chungking
│ │ │ │ ├── Colombo
│ │ │ │ ├── Dacca
│ │ │ │ ├── Damascus
│ │ │ │ ├── Dhaka
│ │ │ │ ├── Dili
│ │ │ │ ├── Dubai
│ │ │ │ ├── Dushanbe
│ │ │ │ ├── Famagusta
│ │ │ │ ├── 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
│ │ │ │ ├── Yangon
│ │ │ │ ├── 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
│ │ │ │ ├── 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
│ │ │ │ ├── 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
│ │ │ │ ├── Saratov
│ │ │ │ ├── Simferopol
│ │ │ │ ├── Skopje
│ │ │ │ ├── Sofia
│ │ │ │ ├── Stockholm
│ │ │ │ ├── Tallinn
│ │ │ │ ├── Tirane
│ │ │ │ ├── Tiraspol
│ │ │ │ ├── Ulyanovsk
│ │ │ │ ├── Uzhgorod
│ │ │ │ ├── Vaduz
│ │ │ │ ├── Vatican
│ │ │ │ ├── Vienna
│ │ │ │ ├── Vilnius
│ │ │ │ ├── Volgograd
│ │ │ │ ├── Warsaw
│ │ │ │ ├── Zagreb
│ │ │ │ ├── Zaporozhye
│ │ │ │ └── Zurich
│ │ │ ├── Factory
│ │ │ ├── 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
│ │ │ ├── iso3166.tab
│ │ │ ├── Israel
│ │ │ ├── Jamaica
│ │ │ ├── Japan
│ │ │ ├── Kwajalein
│ │ │ ├── leapseconds
│ │ │ ├── Libya
│ │ │ ├── MET
│ │ │ ├── Mexico
│ │ │ │ ├── BajaNorte
│ │ │ │ ├── BajaSur
│ │ │ │ └── General
│ │ │ ├── MST
│ │ │ ├── MST7MDT
│ │ │ ├── Navajo
│ │ │ ├── NZ
│ │ │ ├── NZ-CHAT
│ │ │ ├── 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
│ │ │ ├── posixrules
│ │ │ ├── PRC
│ │ │ ├── PST8PDT
│ │ │ ├── ROC
│ │ │ ├── ROK
│ │ │ ├── Singapore
│ │ │ ├── Turkey
│ │ │ ├── tzdata.zi
│ │ │ ├── UCT
│ │ │ ├── Universal
│ │ │ ├── US
│ │ │ │ ├── Alaska
│ │ │ │ ├── Aleutian
│ │ │ │ ├── Arizona
│ │ │ │ ├── Central
│ │ │ │ ├── Eastern
│ │ │ │ ├── East-Indiana
│ │ │ │ ├── Hawaii
│ │ │ │ ├── Indiana-Starke
│ │ │ │ ├── Michigan
│ │ │ │ ├── Mountain
│ │ │ │ ├── Pacific
│ │ │ │ └── Samoa
│ │ │ ├── UTC
│ │ │ ├── WET
│ │ │ ├── W-SU
│ │ │ ├── zone1970.tab
│ │ │ ├── zone.tab
│ │ │ └── Zulu
│ │ ├── pytz-2018.4.dist-info
│ │ │ ├── DESCRIPTION.rst
│ │ │ ├── INSTALLER
│ │ │ ├── LICENSE.txt
│ │ │ ├── METADATA
│ │ │ ├── metadata.json
│ │ │ ├── RECORD
│ │ │ ├── top_level.txt
│ │ │ ├── WHEEL
│ │ │ └── zip-safe
│ │ ├── setuptools-28.8.0-py3.6.egg
│ │ ├── setuptools.pth
│ │ ├── six-1.11.0.dist-info
│ │ │ ├── DESCRIPTION.rst
│ │ │ ├── INSTALLER
│ │ │ ├── METADATA
│ │ │ ├── metadata.json
│ │ │ ├── RECORD
│ │ │ ├── top_level.txt
│ │ │ └── WHEEL
│ │ └── six.py
│ └── tcl8.6
│ └── init.tcl
├── pip-selfcheck.json
├── pyvenv.cfg
└── Scripts
├── activate
├── activate.bat
├── Activate.ps1
├── _asyncio.pyd
├── _bz2.pyd
├── _ctypes.pyd
├── _ctypes_test.pyd
├── deactivate.bat
├── _decimal.pyd
├── easy_install-3.6.exe
├── easy_install-3.6-script.py
├── easy_install.exe
├── easy_install-script.py
├── _elementtree.pyd
├── f2py.py
├── _hashlib.pyd
├── _lzma.pyd
├── _msi.pyd
├── _multiprocessing.pyd
├── _overlapped.pyd
├── pip3.6.exe
├── pip3.6-script.py
├── pip3.exe
├── pip3-script.py
├── pip.exe
├── pip-script.py
├── __pycache__
│ └── f2py.cpython-36.pyc
├── pyexpat.pyd
├── python36.dll
├── python3.dll
├── python.exe
├── pythonw.exe
├── select.pyd
├── _socket.pyd
├── sqlite3.dll
├── _sqlite3.pyd
├── _ssl.pyd
├── tcl86t.dll
├── _testbuffer.pyd
├── _testcapi.pyd
├── _testconsole.pyd
├── _testimportmultiple.pyd
├── _testmultiphase.pyd
├── tk86t.dll
├── _tkinter.pyd
├── unicodedata.pyd
├── vcruntime140.dll
└── winsound.pyd
381 directories, 3430 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论