├── ai_lt.ico ├── api_key ├── chat.py └── virt ├── Lib └── site-packages │ ├── __pycache__ │ ├── six.cpython-39.pyc │ └── typing_extensions.cpython-39.pyc │ ├── _distutils_hack │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ └── override.cpython-39.pyc │ └── override.py │ ├── certifi-2022.12.7.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ ├── certifi │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── __main__.cpython-39.pyc │ │ └── core.cpython-39.pyc │ ├── cacert.pem │ ├── core.py │ └── py.typed │ ├── charset_normalizer-2.1.1.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt │ ├── charset_normalizer │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── api.cpython-39.pyc │ │ ├── cd.cpython-39.pyc │ │ ├── constant.cpython-39.pyc │ │ ├── legacy.cpython-39.pyc │ │ ├── md.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── utils.cpython-39.pyc │ │ └── version.cpython-39.pyc │ ├── api.py │ ├── assets │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── cd.py │ ├── cli │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── normalizer.cpython-39.pyc │ │ └── normalizer.py │ ├── constant.py │ ├── legacy.py │ ├── md.py │ ├── models.py │ ├── py.typed │ ├── utils.py │ └── version.py │ ├── colorama-0.4.6.dist-info │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── licenses │ │ └── LICENSE.txt │ ├── colorama │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── ansi.cpython-39.pyc │ │ ├── ansitowin32.cpython-39.pyc │ │ ├── initialise.cpython-39.pyc │ │ ├── win32.cpython-39.pyc │ │ └── winterm.cpython-39.pyc │ ├── ansi.py │ ├── ansitowin32.py │ ├── initialise.py │ ├── tests │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── ansi_test.cpython-39.pyc │ │ │ ├── ansitowin32_test.cpython-39.pyc │ │ │ ├── initialise_test.cpython-39.pyc │ │ │ ├── isatty_test.cpython-39.pyc │ │ │ ├── utils.cpython-39.pyc │ │ │ └── winterm_test.cpython-39.pyc │ │ ├── ansi_test.py │ │ ├── ansitowin32_test.py │ │ ├── initialise_test.py │ │ ├── isatty_test.py │ │ ├── utils.py │ │ └── winterm_test.py │ ├── win32.py │ └── winterm.py │ ├── customtkinter-5.0.3.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ └── top_level.txt │ ├── customtkinter │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-39.pyc │ ├── assets │ │ ├── .DS_Store │ │ ├── fonts │ │ │ ├── CustomTkinter_shapes_font.otf │ │ │ └── Roboto │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ └── Roboto-Regular.ttf │ │ ├── icons │ │ │ ├── .DS_Store │ │ │ └── CustomTkinter_icon_Windows.ico │ │ └── themes │ │ │ ├── blue.json │ │ │ ├── dark-blue.json │ │ │ └── green.json │ └── windows │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── ctk_input_dialog.cpython-39.pyc │ │ ├── ctk_tk.cpython-39.pyc │ │ └── ctk_toplevel.cpython-39.pyc │ │ ├── ctk_input_dialog.py │ │ ├── ctk_tk.py │ │ ├── ctk_toplevel.py │ │ └── widgets │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── ctk_button.cpython-39.pyc │ │ ├── ctk_checkbox.cpython-39.pyc │ │ ├── ctk_combobox.cpython-39.pyc │ │ ├── ctk_entry.cpython-39.pyc │ │ ├── ctk_frame.cpython-39.pyc │ │ ├── ctk_label.cpython-39.pyc │ │ ├── ctk_optionmenu.cpython-39.pyc │ │ ├── ctk_progressbar.cpython-39.pyc │ │ ├── ctk_radiobutton.cpython-39.pyc │ │ ├── ctk_scrollbar.cpython-39.pyc │ │ ├── ctk_segmented_button.cpython-39.pyc │ │ ├── ctk_slider.cpython-39.pyc │ │ ├── ctk_switch.cpython-39.pyc │ │ ├── ctk_tabview.cpython-39.pyc │ │ └── ctk_textbox.cpython-39.pyc │ │ ├── appearance_mode │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── appearance_mode_base_class.cpython-39.pyc │ │ │ └── appearance_mode_tracker.cpython-39.pyc │ │ ├── appearance_mode_base_class.py │ │ └── appearance_mode_tracker.py │ │ ├── core_rendering │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── ctk_canvas.cpython-39.pyc │ │ │ └── draw_engine.cpython-39.pyc │ │ ├── ctk_canvas.py │ │ └── draw_engine.py │ │ ├── core_widget_classes │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── ctk_base_class.cpython-39.pyc │ │ │ └── dropdown_menu.cpython-39.pyc │ │ ├── ctk_base_class.py │ │ └── dropdown_menu.py │ │ ├── ctk_button.py │ │ ├── ctk_checkbox.py │ │ ├── ctk_combobox.py │ │ ├── ctk_entry.py │ │ ├── ctk_frame.py │ │ ├── ctk_label.py │ │ ├── ctk_optionmenu.py │ │ ├── ctk_progressbar.py │ │ ├── ctk_radiobutton.py │ │ ├── ctk_scrollbar.py │ │ ├── ctk_segmented_button.py │ │ ├── ctk_slider.py │ │ ├── ctk_switch.py │ │ ├── ctk_tabview.py │ │ ├── ctk_textbox.py │ │ ├── font │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── ctk_font.cpython-39.pyc │ │ │ └── font_manager.cpython-39.pyc │ │ ├── ctk_font.py │ │ └── font_manager.py │ │ ├── image │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── ctk_image.cpython-39.pyc │ │ └── ctk_image.py │ │ ├── scaling │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── scaling_base_class.cpython-39.pyc │ │ │ └── scaling_tracker.cpython-39.pyc │ │ ├── scaling_base_class.py │ │ └── scaling_tracker.py │ │ ├── theme │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── theme_manager.cpython-39.pyc │ │ └── theme_manager.py │ │ └── utility │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ └── utility_functions.cpython-39.pyc │ │ └── utility_functions.py │ ├── darkdetect-0.8.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ ├── darkdetect │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── __main__.cpython-39.pyc │ │ ├── _dummy.cpython-39.pyc │ │ ├── _linux_detect.cpython-39.pyc │ │ ├── _mac_detect.cpython-39.pyc │ │ └── _windows_detect.cpython-39.pyc │ ├── _dummy.py │ ├── _linux_detect.py │ ├── _mac_detect.py │ └── _windows_detect.py │ ├── dateutil │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── _common.cpython-39.pyc │ │ ├── _version.cpython-39.pyc │ │ ├── easter.cpython-39.pyc │ │ ├── relativedelta.cpython-39.pyc │ │ ├── rrule.cpython-39.pyc │ │ ├── tzwin.cpython-39.pyc │ │ └── utils.cpython-39.pyc │ ├── _common.py │ ├── _version.py │ ├── easter.py │ ├── parser │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _parser.cpython-39.pyc │ │ │ └── isoparser.cpython-39.pyc │ │ ├── _parser.py │ │ └── isoparser.py │ ├── relativedelta.py │ ├── rrule.py │ ├── tz │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _common.cpython-39.pyc │ │ │ ├── _factories.cpython-39.pyc │ │ │ ├── tz.cpython-39.pyc │ │ │ └── win.cpython-39.pyc │ │ ├── _common.py │ │ ├── _factories.py │ │ ├── tz.py │ │ └── win.py │ ├── tzwin.py │ ├── utils.py │ └── zoneinfo │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ └── rebuild.cpython-39.pyc │ │ ├── dateutil-zoneinfo.tar.gz │ │ └── rebuild.py │ ├── distutils-precedence.pth │ ├── et_xmlfile-1.1.0.dist-info │ ├── AUTHORS.txt │ ├── INSTALLER │ ├── LICENCE.rst │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ ├── et_xmlfile │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ └── xmlfile.cpython-39.pyc │ └── xmlfile.py │ ├── idna-3.4.dist-info │ ├── INSTALLER │ ├── LICENSE.md │ ├── METADATA │ ├── RECORD │ └── WHEEL │ ├── idna │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── codec.cpython-39.pyc │ │ ├── compat.cpython-39.pyc │ │ ├── core.cpython-39.pyc │ │ ├── idnadata.cpython-39.pyc │ │ ├── intranges.cpython-39.pyc │ │ ├── package_data.cpython-39.pyc │ │ └── uts46data.cpython-39.pyc │ ├── codec.py │ ├── compat.py │ ├── core.py │ ├── idnadata.py │ ├── intranges.py │ ├── package_data.py │ ├── py.typed │ └── uts46data.py │ ├── numpy-1.24.1.dist-info │ ├── INSTALLER │ ├── LICENSE.txt │ ├── LICENSES_bundled.txt │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt │ ├── numpy │ ├── .libs │ │ └── libopenblas64__v0.3.21-gcc_10_3_0.dll │ ├── LICENSE.txt │ ├── __config__.py │ ├── __init__.cython-30.pxd │ ├── __init__.pxd │ ├── __init__.py │ ├── __init__.pyi │ ├── __pycache__ │ │ ├── __config__.cpython-39.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── _distributor_init.cpython-39.pyc │ │ ├── _globals.cpython-39.pyc │ │ ├── _pytesttester.cpython-39.pyc │ │ ├── _version.cpython-39.pyc │ │ ├── conftest.cpython-39.pyc │ │ ├── ctypeslib.cpython-39.pyc │ │ ├── dual.cpython-39.pyc │ │ ├── matlib.cpython-39.pyc │ │ ├── setup.cpython-39.pyc │ │ └── version.cpython-39.pyc │ ├── _distributor_init.py │ ├── _globals.py │ ├── _pyinstaller │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── hook-numpy.cpython-39.pyc │ │ │ ├── pyinstaller-smoke.cpython-39.pyc │ │ │ └── test_pyinstaller.cpython-39.pyc │ │ ├── hook-numpy.py │ │ ├── pyinstaller-smoke.py │ │ └── test_pyinstaller.py │ ├── _pytesttester.py │ ├── _pytesttester.pyi │ ├── _typing │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _add_docstring.cpython-39.pyc │ │ │ ├── _array_like.cpython-39.pyc │ │ │ ├── _char_codes.cpython-39.pyc │ │ │ ├── _dtype_like.cpython-39.pyc │ │ │ ├── _extended_precision.cpython-39.pyc │ │ │ ├── _generic_alias.cpython-39.pyc │ │ │ ├── _nbit.cpython-39.pyc │ │ │ ├── _nested_sequence.cpython-39.pyc │ │ │ ├── _scalars.cpython-39.pyc │ │ │ ├── _shape.cpython-39.pyc │ │ │ └── setup.cpython-39.pyc │ │ ├── _add_docstring.py │ │ ├── _array_like.py │ │ ├── _callable.pyi │ │ ├── _char_codes.py │ │ ├── _dtype_like.py │ │ ├── _extended_precision.py │ │ ├── _generic_alias.py │ │ ├── _nbit.py │ │ ├── _nested_sequence.py │ │ ├── _scalars.py │ │ ├── _shape.py │ │ ├── _ufunc.pyi │ │ └── setup.py │ ├── _version.py │ ├── array_api │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _array_object.cpython-39.pyc │ │ │ ├── _constants.cpython-39.pyc │ │ │ ├── _creation_functions.cpython-39.pyc │ │ │ ├── _data_type_functions.cpython-39.pyc │ │ │ ├── _dtypes.cpython-39.pyc │ │ │ ├── _elementwise_functions.cpython-39.pyc │ │ │ ├── _manipulation_functions.cpython-39.pyc │ │ │ ├── _searching_functions.cpython-39.pyc │ │ │ ├── _set_functions.cpython-39.pyc │ │ │ ├── _sorting_functions.cpython-39.pyc │ │ │ ├── _statistical_functions.cpython-39.pyc │ │ │ ├── _typing.cpython-39.pyc │ │ │ ├── _utility_functions.cpython-39.pyc │ │ │ ├── linalg.cpython-39.pyc │ │ │ └── setup.cpython-39.pyc │ │ ├── _array_object.py │ │ ├── _constants.py │ │ ├── _creation_functions.py │ │ ├── _data_type_functions.py │ │ ├── _dtypes.py │ │ ├── _elementwise_functions.py │ │ ├── _manipulation_functions.py │ │ ├── _searching_functions.py │ │ ├── _set_functions.py │ │ ├── _sorting_functions.py │ │ ├── _statistical_functions.py │ │ ├── _typing.py │ │ ├── _utility_functions.py │ │ ├── linalg.py │ │ ├── setup.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── test_array_object.cpython-39.pyc │ │ │ ├── test_creation_functions.cpython-39.pyc │ │ │ ├── test_data_type_functions.cpython-39.pyc │ │ │ ├── test_elementwise_functions.cpython-39.pyc │ │ │ ├── test_set_functions.cpython-39.pyc │ │ │ ├── test_sorting_functions.cpython-39.pyc │ │ │ └── test_validation.cpython-39.pyc │ │ │ ├── test_array_object.py │ │ │ ├── test_creation_functions.py │ │ │ ├── test_data_type_functions.py │ │ │ ├── test_elementwise_functions.py │ │ │ ├── test_set_functions.py │ │ │ ├── test_sorting_functions.py │ │ │ └── test_validation.py │ ├── compat │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _inspect.cpython-39.pyc │ │ │ ├── _pep440.cpython-39.pyc │ │ │ ├── py3k.cpython-39.pyc │ │ │ └── setup.cpython-39.pyc │ │ ├── _inspect.py │ │ ├── _pep440.py │ │ ├── py3k.py │ │ ├── setup.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── test_compat.cpython-39.pyc │ │ │ └── test_compat.py │ ├── conftest.py │ ├── core │ │ ├── __init__.py │ │ ├── __init__.pyi │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _add_newdocs.cpython-39.pyc │ │ │ ├── _add_newdocs_scalars.cpython-39.pyc │ │ │ ├── _asarray.cpython-39.pyc │ │ │ ├── _dtype.cpython-39.pyc │ │ │ ├── _dtype_ctypes.cpython-39.pyc │ │ │ ├── _exceptions.cpython-39.pyc │ │ │ ├── _internal.cpython-39.pyc │ │ │ ├── _machar.cpython-39.pyc │ │ │ ├── _methods.cpython-39.pyc │ │ │ ├── _string_helpers.cpython-39.pyc │ │ │ ├── _type_aliases.cpython-39.pyc │ │ │ ├── _ufunc_config.cpython-39.pyc │ │ │ ├── arrayprint.cpython-39.pyc │ │ │ ├── cversions.cpython-39.pyc │ │ │ ├── defchararray.cpython-39.pyc │ │ │ ├── einsumfunc.cpython-39.pyc │ │ │ ├── fromnumeric.cpython-39.pyc │ │ │ ├── function_base.cpython-39.pyc │ │ │ ├── generate_numpy_api.cpython-39.pyc │ │ │ ├── getlimits.cpython-39.pyc │ │ │ ├── memmap.cpython-39.pyc │ │ │ ├── multiarray.cpython-39.pyc │ │ │ ├── numeric.cpython-39.pyc │ │ │ ├── numerictypes.cpython-39.pyc │ │ │ ├── overrides.cpython-39.pyc │ │ │ ├── records.cpython-39.pyc │ │ │ ├── setup.cpython-39.pyc │ │ │ ├── setup_common.cpython-39.pyc │ │ │ ├── shape_base.cpython-39.pyc │ │ │ ├── umath.cpython-39.pyc │ │ │ └── umath_tests.cpython-39.pyc │ │ ├── _add_newdocs.py │ │ ├── _add_newdocs_scalars.py │ │ ├── _asarray.py │ │ ├── _asarray.pyi │ │ ├── _dtype.py │ │ ├── _dtype_ctypes.py │ │ ├── _exceptions.py │ │ ├── _internal.py │ │ ├── _internal.pyi │ │ ├── _machar.py │ │ ├── _methods.py │ │ ├── _multiarray_tests.cp39-win_amd64.pyd │ │ ├── _multiarray_umath.cp39-win_amd64.pyd │ │ ├── _operand_flag_tests.cp39-win_amd64.pyd │ │ ├── _rational_tests.cp39-win_amd64.pyd │ │ ├── _simd.cp39-win_amd64.pyd │ │ ├── _string_helpers.py │ │ ├── _struct_ufunc_tests.cp39-win_amd64.pyd │ │ ├── _type_aliases.py │ │ ├── _type_aliases.pyi │ │ ├── _ufunc_config.py │ │ ├── _ufunc_config.pyi │ │ ├── _umath_tests.cp39-win_amd64.pyd │ │ ├── arrayprint.py │ │ ├── arrayprint.pyi │ │ ├── cversions.py │ │ ├── defchararray.py │ │ ├── defchararray.pyi │ │ ├── einsumfunc.py │ │ ├── einsumfunc.pyi │ │ ├── fromnumeric.py │ │ ├── fromnumeric.pyi │ │ ├── function_base.py │ │ ├── function_base.pyi │ │ ├── generate_numpy_api.py │ │ ├── getlimits.py │ │ ├── getlimits.pyi │ │ ├── include │ │ │ └── numpy │ │ │ │ ├── .doxyfile │ │ │ │ ├── __multiarray_api.h │ │ │ │ ├── __ufunc_api.h │ │ │ │ ├── _neighborhood_iterator_imp.h │ │ │ │ ├── _numpyconfig.h │ │ │ │ ├── arrayobject.h │ │ │ │ ├── arrayscalars.h │ │ │ │ ├── experimental_dtype_api.h │ │ │ │ ├── halffloat.h │ │ │ │ ├── libdivide │ │ │ │ ├── LICENSE.txt │ │ │ │ └── libdivide.h │ │ │ │ ├── multiarray_api.txt │ │ │ │ ├── ndarrayobject.h │ │ │ │ ├── ndarraytypes.h │ │ │ │ ├── noprefix.h │ │ │ │ ├── npy_1_7_deprecated_api.h │ │ │ │ ├── npy_3kcompat.h │ │ │ │ ├── npy_common.h │ │ │ │ ├── npy_cpu.h │ │ │ │ ├── npy_endian.h │ │ │ │ ├── npy_interrupt.h │ │ │ │ ├── npy_math.h │ │ │ │ ├── npy_no_deprecated_api.h │ │ │ │ ├── npy_os.h │ │ │ │ ├── numpyconfig.h │ │ │ │ ├── old_defines.h │ │ │ │ ├── oldnumeric.h │ │ │ │ ├── random │ │ │ │ ├── bitgen.h │ │ │ │ └── distributions.h │ │ │ │ ├── ufunc_api.txt │ │ │ │ ├── ufuncobject.h │ │ │ │ └── utils.h │ │ ├── lib │ │ │ ├── npy-pkg-config │ │ │ │ ├── mlib.ini │ │ │ │ └── npymath.ini │ │ │ └── npymath.lib │ │ ├── memmap.py │ │ ├── memmap.pyi │ │ ├── multiarray.py │ │ ├── multiarray.pyi │ │ ├── numeric.py │ │ ├── numeric.pyi │ │ ├── numerictypes.py │ │ ├── numerictypes.pyi │ │ ├── overrides.py │ │ ├── records.py │ │ ├── records.pyi │ │ ├── setup.py │ │ ├── setup_common.py │ │ ├── shape_base.py │ │ ├── shape_base.pyi │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _locales.cpython-39.pyc │ │ │ │ ├── test__exceptions.cpython-39.pyc │ │ │ │ ├── test_abc.cpython-39.pyc │ │ │ │ ├── test_api.cpython-39.pyc │ │ │ │ ├── test_argparse.cpython-39.pyc │ │ │ │ ├── test_array_coercion.cpython-39.pyc │ │ │ │ ├── test_array_interface.cpython-39.pyc │ │ │ │ ├── test_arraymethod.cpython-39.pyc │ │ │ │ ├── test_arrayprint.cpython-39.pyc │ │ │ │ ├── test_casting_floatingpoint_errors.cpython-39.pyc │ │ │ │ ├── test_casting_unittests.cpython-39.pyc │ │ │ │ ├── test_conversion_utils.cpython-39.pyc │ │ │ │ ├── test_cpu_dispatcher.cpython-39.pyc │ │ │ │ ├── test_cpu_features.cpython-39.pyc │ │ │ │ ├── test_custom_dtypes.cpython-39.pyc │ │ │ │ ├── test_cython.cpython-39.pyc │ │ │ │ ├── test_datetime.cpython-39.pyc │ │ │ │ ├── test_defchararray.cpython-39.pyc │ │ │ │ ├── test_deprecations.cpython-39.pyc │ │ │ │ ├── test_dlpack.cpython-39.pyc │ │ │ │ ├── test_dtype.cpython-39.pyc │ │ │ │ ├── test_einsum.cpython-39.pyc │ │ │ │ ├── test_errstate.cpython-39.pyc │ │ │ │ ├── test_extint128.cpython-39.pyc │ │ │ │ ├── test_function_base.cpython-39.pyc │ │ │ │ ├── test_getlimits.cpython-39.pyc │ │ │ │ ├── test_half.cpython-39.pyc │ │ │ │ ├── test_hashtable.cpython-39.pyc │ │ │ │ ├── test_indexerrors.cpython-39.pyc │ │ │ │ ├── test_indexing.cpython-39.pyc │ │ │ │ ├── test_item_selection.cpython-39.pyc │ │ │ │ ├── test_limited_api.cpython-39.pyc │ │ │ │ ├── test_longdouble.cpython-39.pyc │ │ │ │ ├── test_machar.cpython-39.pyc │ │ │ │ ├── test_mem_overlap.cpython-39.pyc │ │ │ │ ├── test_mem_policy.cpython-39.pyc │ │ │ │ ├── test_memmap.cpython-39.pyc │ │ │ │ ├── test_multiarray.cpython-39.pyc │ │ │ │ ├── test_nditer.cpython-39.pyc │ │ │ │ ├── test_nep50_promotions.cpython-39.pyc │ │ │ │ ├── test_numeric.cpython-39.pyc │ │ │ │ ├── test_numerictypes.cpython-39.pyc │ │ │ │ ├── test_overrides.cpython-39.pyc │ │ │ │ ├── test_print.cpython-39.pyc │ │ │ │ ├── test_protocols.cpython-39.pyc │ │ │ │ ├── test_records.cpython-39.pyc │ │ │ │ ├── test_regression.cpython-39.pyc │ │ │ │ ├── test_scalar_ctors.cpython-39.pyc │ │ │ │ ├── test_scalar_methods.cpython-39.pyc │ │ │ │ ├── test_scalarbuffer.cpython-39.pyc │ │ │ │ ├── test_scalarinherit.cpython-39.pyc │ │ │ │ ├── test_scalarmath.cpython-39.pyc │ │ │ │ ├── test_scalarprint.cpython-39.pyc │ │ │ │ ├── test_shape_base.cpython-39.pyc │ │ │ │ ├── test_simd.cpython-39.pyc │ │ │ │ ├── test_simd_module.cpython-39.pyc │ │ │ │ ├── test_strings.cpython-39.pyc │ │ │ │ ├── test_ufunc.cpython-39.pyc │ │ │ │ ├── test_umath.cpython-39.pyc │ │ │ │ ├── test_umath_accuracy.cpython-39.pyc │ │ │ │ ├── test_umath_complex.cpython-39.pyc │ │ │ │ └── test_unicode.cpython-39.pyc │ │ │ ├── _locales.py │ │ │ ├── data │ │ │ │ ├── astype_copy.pkl │ │ │ │ ├── generate_umath_validation_data.cpp │ │ │ │ ├── recarray_from_file.fits │ │ │ │ ├── umath-validation-set-README.txt │ │ │ │ ├── umath-validation-set-arccos.csv │ │ │ │ ├── umath-validation-set-arccosh.csv │ │ │ │ ├── umath-validation-set-arcsin.csv │ │ │ │ ├── umath-validation-set-arcsinh.csv │ │ │ │ ├── umath-validation-set-arctan.csv │ │ │ │ ├── umath-validation-set-arctanh.csv │ │ │ │ ├── umath-validation-set-cbrt.csv │ │ │ │ ├── umath-validation-set-cos.csv │ │ │ │ ├── umath-validation-set-cosh.csv │ │ │ │ ├── umath-validation-set-exp.csv │ │ │ │ ├── umath-validation-set-exp2.csv │ │ │ │ ├── umath-validation-set-expm1.csv │ │ │ │ ├── umath-validation-set-log.csv │ │ │ │ ├── umath-validation-set-log10.csv │ │ │ │ ├── umath-validation-set-log1p.csv │ │ │ │ ├── umath-validation-set-log2.csv │ │ │ │ ├── umath-validation-set-sin.csv │ │ │ │ ├── umath-validation-set-sinh.csv │ │ │ │ ├── umath-validation-set-tan.csv │ │ │ │ └── umath-validation-set-tanh.csv │ │ │ ├── examples │ │ │ │ ├── cython │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── setup.cpython-39.pyc │ │ │ │ │ ├── checks.pyx │ │ │ │ │ └── setup.py │ │ │ │ └── limited_api │ │ │ │ │ ├── __pycache__ │ │ │ │ │ └── setup.cpython-39.pyc │ │ │ │ │ ├── limited_api.c │ │ │ │ │ └── setup.py │ │ │ ├── test__exceptions.py │ │ │ ├── test_abc.py │ │ │ ├── test_api.py │ │ │ ├── test_argparse.py │ │ │ ├── test_array_coercion.py │ │ │ ├── test_array_interface.py │ │ │ ├── test_arraymethod.py │ │ │ ├── test_arrayprint.py │ │ │ ├── test_casting_floatingpoint_errors.py │ │ │ ├── test_casting_unittests.py │ │ │ ├── test_conversion_utils.py │ │ │ ├── test_cpu_dispatcher.py │ │ │ ├── test_cpu_features.py │ │ │ ├── test_custom_dtypes.py │ │ │ ├── test_cython.py │ │ │ ├── test_datetime.py │ │ │ ├── test_defchararray.py │ │ │ ├── test_deprecations.py │ │ │ ├── test_dlpack.py │ │ │ ├── test_dtype.py │ │ │ ├── test_einsum.py │ │ │ ├── test_errstate.py │ │ │ ├── test_extint128.py │ │ │ ├── test_function_base.py │ │ │ ├── test_getlimits.py │ │ │ ├── test_half.py │ │ │ ├── test_hashtable.py │ │ │ ├── test_indexerrors.py │ │ │ ├── test_indexing.py │ │ │ ├── test_item_selection.py │ │ │ ├── test_limited_api.py │ │ │ ├── test_longdouble.py │ │ │ ├── test_machar.py │ │ │ ├── test_mem_overlap.py │ │ │ ├── test_mem_policy.py │ │ │ ├── test_memmap.py │ │ │ ├── test_multiarray.py │ │ │ ├── test_nditer.py │ │ │ ├── test_nep50_promotions.py │ │ │ ├── test_numeric.py │ │ │ ├── test_numerictypes.py │ │ │ ├── test_overrides.py │ │ │ ├── test_print.py │ │ │ ├── test_protocols.py │ │ │ ├── test_records.py │ │ │ ├── test_regression.py │ │ │ ├── test_scalar_ctors.py │ │ │ ├── test_scalar_methods.py │ │ │ ├── test_scalarbuffer.py │ │ │ ├── test_scalarinherit.py │ │ │ ├── test_scalarmath.py │ │ │ ├── test_scalarprint.py │ │ │ ├── test_shape_base.py │ │ │ ├── test_simd.py │ │ │ ├── test_simd_module.py │ │ │ ├── test_strings.py │ │ │ ├── test_ufunc.py │ │ │ ├── test_umath.py │ │ │ ├── test_umath_accuracy.py │ │ │ ├── test_umath_complex.py │ │ │ └── test_unicode.py │ │ ├── umath.py │ │ └── umath_tests.py │ ├── ctypeslib.py │ ├── ctypeslib.pyi │ ├── distutils │ │ ├── __config__.py │ │ ├── __init__.py │ │ ├── __init__.pyi │ │ ├── __pycache__ │ │ │ ├── __config__.cpython-39.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _shell_utils.cpython-39.pyc │ │ │ ├── armccompiler.cpython-39.pyc │ │ │ ├── ccompiler.cpython-39.pyc │ │ │ ├── ccompiler_opt.cpython-39.pyc │ │ │ ├── conv_template.cpython-39.pyc │ │ │ ├── core.cpython-39.pyc │ │ │ ├── cpuinfo.cpython-39.pyc │ │ │ ├── exec_command.cpython-39.pyc │ │ │ ├── extension.cpython-39.pyc │ │ │ ├── from_template.cpython-39.pyc │ │ │ ├── intelccompiler.cpython-39.pyc │ │ │ ├── lib2def.cpython-39.pyc │ │ │ ├── line_endings.cpython-39.pyc │ │ │ ├── log.cpython-39.pyc │ │ │ ├── mingw32ccompiler.cpython-39.pyc │ │ │ ├── misc_util.cpython-39.pyc │ │ │ ├── msvc9compiler.cpython-39.pyc │ │ │ ├── msvccompiler.cpython-39.pyc │ │ │ ├── npy_pkg_config.cpython-39.pyc │ │ │ ├── numpy_distribution.cpython-39.pyc │ │ │ ├── pathccompiler.cpython-39.pyc │ │ │ ├── setup.cpython-39.pyc │ │ │ ├── system_info.cpython-39.pyc │ │ │ └── unixccompiler.cpython-39.pyc │ │ ├── _shell_utils.py │ │ ├── armccompiler.py │ │ ├── ccompiler.py │ │ ├── ccompiler_opt.py │ │ ├── checks │ │ │ ├── cpu_asimd.c │ │ │ ├── cpu_asimddp.c │ │ │ ├── cpu_asimdfhm.c │ │ │ ├── cpu_asimdhp.c │ │ │ ├── cpu_avx.c │ │ │ ├── cpu_avx2.c │ │ │ ├── cpu_avx512_clx.c │ │ │ ├── cpu_avx512_cnl.c │ │ │ ├── cpu_avx512_icl.c │ │ │ ├── cpu_avx512_knl.c │ │ │ ├── cpu_avx512_knm.c │ │ │ ├── cpu_avx512_skx.c │ │ │ ├── cpu_avx512cd.c │ │ │ ├── cpu_avx512f.c │ │ │ ├── cpu_f16c.c │ │ │ ├── cpu_fma3.c │ │ │ ├── cpu_fma4.c │ │ │ ├── cpu_neon.c │ │ │ ├── cpu_neon_fp16.c │ │ │ ├── cpu_neon_vfpv4.c │ │ │ ├── cpu_popcnt.c │ │ │ ├── cpu_sse.c │ │ │ ├── cpu_sse2.c │ │ │ ├── cpu_sse3.c │ │ │ ├── cpu_sse41.c │ │ │ ├── cpu_sse42.c │ │ │ ├── cpu_ssse3.c │ │ │ ├── cpu_vsx.c │ │ │ ├── cpu_vsx2.c │ │ │ ├── cpu_vsx3.c │ │ │ ├── cpu_vsx4.c │ │ │ ├── cpu_vx.c │ │ │ ├── cpu_vxe.c │ │ │ ├── cpu_vxe2.c │ │ │ ├── cpu_xop.c │ │ │ ├── extra_avx512bw_mask.c │ │ │ ├── extra_avx512dq_mask.c │ │ │ ├── extra_avx512f_reduce.c │ │ │ ├── extra_vsx4_mma.c │ │ │ ├── extra_vsx_asm.c │ │ │ └── test_flags.c │ │ ├── command │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── autodist.cpython-39.pyc │ │ │ │ ├── bdist_rpm.cpython-39.pyc │ │ │ │ ├── build.cpython-39.pyc │ │ │ │ ├── build_clib.cpython-39.pyc │ │ │ │ ├── build_ext.cpython-39.pyc │ │ │ │ ├── build_py.cpython-39.pyc │ │ │ │ ├── build_scripts.cpython-39.pyc │ │ │ │ ├── build_src.cpython-39.pyc │ │ │ │ ├── config.cpython-39.pyc │ │ │ │ ├── config_compiler.cpython-39.pyc │ │ │ │ ├── develop.cpython-39.pyc │ │ │ │ ├── egg_info.cpython-39.pyc │ │ │ │ ├── install.cpython-39.pyc │ │ │ │ ├── install_clib.cpython-39.pyc │ │ │ │ ├── install_data.cpython-39.pyc │ │ │ │ ├── install_headers.cpython-39.pyc │ │ │ │ └── sdist.cpython-39.pyc │ │ │ ├── autodist.py │ │ │ ├── bdist_rpm.py │ │ │ ├── build.py │ │ │ ├── build_clib.py │ │ │ ├── build_ext.py │ │ │ ├── build_py.py │ │ │ ├── build_scripts.py │ │ │ ├── build_src.py │ │ │ ├── config.py │ │ │ ├── config_compiler.py │ │ │ ├── develop.py │ │ │ ├── egg_info.py │ │ │ ├── install.py │ │ │ ├── install_clib.py │ │ │ ├── install_data.py │ │ │ ├── install_headers.py │ │ │ └── sdist.py │ │ ├── conv_template.py │ │ ├── core.py │ │ ├── cpuinfo.py │ │ ├── exec_command.py │ │ ├── extension.py │ │ ├── fcompiler │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── absoft.cpython-39.pyc │ │ │ │ ├── arm.cpython-39.pyc │ │ │ │ ├── compaq.cpython-39.pyc │ │ │ │ ├── environment.cpython-39.pyc │ │ │ │ ├── fujitsu.cpython-39.pyc │ │ │ │ ├── g95.cpython-39.pyc │ │ │ │ ├── gnu.cpython-39.pyc │ │ │ │ ├── hpux.cpython-39.pyc │ │ │ │ ├── ibm.cpython-39.pyc │ │ │ │ ├── intel.cpython-39.pyc │ │ │ │ ├── lahey.cpython-39.pyc │ │ │ │ ├── mips.cpython-39.pyc │ │ │ │ ├── nag.cpython-39.pyc │ │ │ │ ├── none.cpython-39.pyc │ │ │ │ ├── nv.cpython-39.pyc │ │ │ │ ├── pathf95.cpython-39.pyc │ │ │ │ ├── pg.cpython-39.pyc │ │ │ │ ├── sun.cpython-39.pyc │ │ │ │ └── vast.cpython-39.pyc │ │ │ ├── absoft.py │ │ │ ├── arm.py │ │ │ ├── compaq.py │ │ │ ├── environment.py │ │ │ ├── fujitsu.py │ │ │ ├── g95.py │ │ │ ├── gnu.py │ │ │ ├── hpux.py │ │ │ ├── ibm.py │ │ │ ├── intel.py │ │ │ ├── lahey.py │ │ │ ├── mips.py │ │ │ ├── nag.py │ │ │ ├── none.py │ │ │ ├── nv.py │ │ │ ├── pathf95.py │ │ │ ├── pg.py │ │ │ ├── sun.py │ │ │ └── vast.py │ │ ├── from_template.py │ │ ├── intelccompiler.py │ │ ├── lib2def.py │ │ ├── line_endings.py │ │ ├── log.py │ │ ├── mingw │ │ │ └── gfortran_vs2003_hack.c │ │ ├── mingw32ccompiler.py │ │ ├── misc_util.py │ │ ├── msvc9compiler.py │ │ ├── msvccompiler.py │ │ ├── npy_pkg_config.py │ │ ├── numpy_distribution.py │ │ ├── pathccompiler.py │ │ ├── setup.py │ │ ├── system_info.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── test_build_ext.cpython-39.pyc │ │ │ │ ├── test_ccompiler_opt.cpython-39.pyc │ │ │ │ ├── test_ccompiler_opt_conf.cpython-39.pyc │ │ │ │ ├── test_exec_command.cpython-39.pyc │ │ │ │ ├── test_fcompiler.cpython-39.pyc │ │ │ │ ├── test_fcompiler_gnu.cpython-39.pyc │ │ │ │ ├── test_fcompiler_intel.cpython-39.pyc │ │ │ │ ├── test_fcompiler_nagfor.cpython-39.pyc │ │ │ │ ├── test_from_template.cpython-39.pyc │ │ │ │ ├── test_log.cpython-39.pyc │ │ │ │ ├── test_mingw32ccompiler.cpython-39.pyc │ │ │ │ ├── test_misc_util.cpython-39.pyc │ │ │ │ ├── test_npy_pkg_config.cpython-39.pyc │ │ │ │ ├── test_shell_utils.cpython-39.pyc │ │ │ │ └── test_system_info.cpython-39.pyc │ │ │ ├── test_build_ext.py │ │ │ ├── test_ccompiler_opt.py │ │ │ ├── test_ccompiler_opt_conf.py │ │ │ ├── test_exec_command.py │ │ │ ├── test_fcompiler.py │ │ │ ├── test_fcompiler_gnu.py │ │ │ ├── test_fcompiler_intel.py │ │ │ ├── test_fcompiler_nagfor.py │ │ │ ├── test_from_template.py │ │ │ ├── test_log.py │ │ │ ├── test_mingw32ccompiler.py │ │ │ ├── test_misc_util.py │ │ │ ├── test_npy_pkg_config.py │ │ │ ├── test_shell_utils.py │ │ │ └── test_system_info.py │ │ └── unixccompiler.py │ ├── doc │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── constants.cpython-39.pyc │ │ │ └── ufuncs.cpython-39.pyc │ │ ├── constants.py │ │ └── ufuncs.py │ ├── dual.py │ ├── f2py │ │ ├── __init__.py │ │ ├── __init__.pyi │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── __main__.cpython-39.pyc │ │ │ ├── __version__.cpython-39.pyc │ │ │ ├── auxfuncs.cpython-39.pyc │ │ │ ├── capi_maps.cpython-39.pyc │ │ │ ├── cb_rules.cpython-39.pyc │ │ │ ├── cfuncs.cpython-39.pyc │ │ │ ├── common_rules.cpython-39.pyc │ │ │ ├── crackfortran.cpython-39.pyc │ │ │ ├── diagnose.cpython-39.pyc │ │ │ ├── f2py2e.cpython-39.pyc │ │ │ ├── f90mod_rules.cpython-39.pyc │ │ │ ├── func2subr.cpython-39.pyc │ │ │ ├── rules.cpython-39.pyc │ │ │ ├── setup.cpython-39.pyc │ │ │ ├── symbolic.cpython-39.pyc │ │ │ └── use_rules.cpython-39.pyc │ │ ├── __version__.py │ │ ├── auxfuncs.py │ │ ├── capi_maps.py │ │ ├── cb_rules.py │ │ ├── cfuncs.py │ │ ├── common_rules.py │ │ ├── crackfortran.py │ │ ├── diagnose.py │ │ ├── f2py2e.py │ │ ├── f90mod_rules.py │ │ ├── func2subr.py │ │ ├── rules.py │ │ ├── setup.py │ │ ├── src │ │ │ ├── fortranobject.c │ │ │ └── fortranobject.h │ │ ├── symbolic.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── test_abstract_interface.cpython-39.pyc │ │ │ │ ├── test_array_from_pyobj.cpython-39.pyc │ │ │ │ ├── test_assumed_shape.cpython-39.pyc │ │ │ │ ├── test_block_docstring.cpython-39.pyc │ │ │ │ ├── test_callback.cpython-39.pyc │ │ │ │ ├── test_character.cpython-39.pyc │ │ │ │ ├── test_common.cpython-39.pyc │ │ │ │ ├── test_compile_function.cpython-39.pyc │ │ │ │ ├── test_crackfortran.cpython-39.pyc │ │ │ │ ├── test_docs.cpython-39.pyc │ │ │ │ ├── test_f2cmap.cpython-39.pyc │ │ │ │ ├── test_f2py2e.cpython-39.pyc │ │ │ │ ├── test_kind.cpython-39.pyc │ │ │ │ ├── test_mixed.cpython-39.pyc │ │ │ │ ├── test_module_doc.cpython-39.pyc │ │ │ │ ├── test_parameter.cpython-39.pyc │ │ │ │ ├── test_quoted_character.cpython-39.pyc │ │ │ │ ├── test_regression.cpython-39.pyc │ │ │ │ ├── test_return_character.cpython-39.pyc │ │ │ │ ├── test_return_complex.cpython-39.pyc │ │ │ │ ├── test_return_integer.cpython-39.pyc │ │ │ │ ├── test_return_logical.cpython-39.pyc │ │ │ │ ├── test_return_real.cpython-39.pyc │ │ │ │ ├── test_semicolon_split.cpython-39.pyc │ │ │ │ ├── test_size.cpython-39.pyc │ │ │ │ ├── test_string.cpython-39.pyc │ │ │ │ ├── test_symbolic.cpython-39.pyc │ │ │ │ ├── test_value_attrspec.cpython-39.pyc │ │ │ │ └── util.cpython-39.pyc │ │ │ ├── src │ │ │ │ ├── abstract_interface │ │ │ │ │ ├── foo.f90 │ │ │ │ │ └── gh18403_mod.f90 │ │ │ │ ├── array_from_pyobj │ │ │ │ │ └── wrapmodule.c │ │ │ │ ├── assumed_shape │ │ │ │ │ ├── .f2py_f2cmap │ │ │ │ │ ├── foo_free.f90 │ │ │ │ │ ├── foo_mod.f90 │ │ │ │ │ ├── foo_use.f90 │ │ │ │ │ └── precision.f90 │ │ │ │ ├── block_docstring │ │ │ │ │ └── foo.f │ │ │ │ ├── callback │ │ │ │ │ ├── foo.f │ │ │ │ │ ├── gh17797.f90 │ │ │ │ │ └── gh18335.f90 │ │ │ │ ├── cli │ │ │ │ │ ├── hi77.f │ │ │ │ │ └── hiworld.f90 │ │ │ │ ├── common │ │ │ │ │ └── block.f │ │ │ │ ├── crackfortran │ │ │ │ │ ├── accesstype.f90 │ │ │ │ │ ├── foo_deps.f90 │ │ │ │ │ ├── gh15035.f │ │ │ │ │ ├── gh17859.f │ │ │ │ │ ├── gh2848.f90 │ │ │ │ │ ├── operators.f90 │ │ │ │ │ ├── privatemod.f90 │ │ │ │ │ ├── publicmod.f90 │ │ │ │ │ ├── pubprivmod.f90 │ │ │ │ │ └── unicode_comment.f90 │ │ │ │ ├── f2cmap │ │ │ │ │ ├── .f2py_f2cmap │ │ │ │ │ └── isoFortranEnvMap.f90 │ │ │ │ ├── kind │ │ │ │ │ └── foo.f90 │ │ │ │ ├── mixed │ │ │ │ │ ├── foo.f │ │ │ │ │ ├── foo_fixed.f90 │ │ │ │ │ └── foo_free.f90 │ │ │ │ ├── module_data │ │ │ │ │ ├── mod.mod │ │ │ │ │ └── module_data_docstring.f90 │ │ │ │ ├── negative_bounds │ │ │ │ │ └── issue_20853.f90 │ │ │ │ ├── parameter │ │ │ │ │ ├── constant_both.f90 │ │ │ │ │ ├── constant_compound.f90 │ │ │ │ │ ├── constant_integer.f90 │ │ │ │ │ ├── constant_non_compound.f90 │ │ │ │ │ └── constant_real.f90 │ │ │ │ ├── quoted_character │ │ │ │ │ └── foo.f │ │ │ │ ├── regression │ │ │ │ │ └── inout.f90 │ │ │ │ ├── return_character │ │ │ │ │ ├── foo77.f │ │ │ │ │ └── foo90.f90 │ │ │ │ ├── return_complex │ │ │ │ │ ├── foo77.f │ │ │ │ │ └── foo90.f90 │ │ │ │ ├── return_integer │ │ │ │ │ ├── foo77.f │ │ │ │ │ └── foo90.f90 │ │ │ │ ├── return_logical │ │ │ │ │ ├── foo77.f │ │ │ │ │ └── foo90.f90 │ │ │ │ ├── return_real │ │ │ │ │ ├── foo77.f │ │ │ │ │ └── foo90.f90 │ │ │ │ ├── size │ │ │ │ │ └── foo.f90 │ │ │ │ ├── string │ │ │ │ │ ├── char.f90 │ │ │ │ │ ├── fixed_string.f90 │ │ │ │ │ └── string.f │ │ │ │ └── value_attrspec │ │ │ │ │ └── gh21665.f90 │ │ │ ├── test_abstract_interface.py │ │ │ ├── test_array_from_pyobj.py │ │ │ ├── test_assumed_shape.py │ │ │ ├── test_block_docstring.py │ │ │ ├── test_callback.py │ │ │ ├── test_character.py │ │ │ ├── test_common.py │ │ │ ├── test_compile_function.py │ │ │ ├── test_crackfortran.py │ │ │ ├── test_docs.py │ │ │ ├── test_f2cmap.py │ │ │ ├── test_f2py2e.py │ │ │ ├── test_kind.py │ │ │ ├── test_mixed.py │ │ │ ├── test_module_doc.py │ │ │ ├── test_parameter.py │ │ │ ├── test_quoted_character.py │ │ │ ├── test_regression.py │ │ │ ├── test_return_character.py │ │ │ ├── test_return_complex.py │ │ │ ├── test_return_integer.py │ │ │ ├── test_return_logical.py │ │ │ ├── test_return_real.py │ │ │ ├── test_semicolon_split.py │ │ │ ├── test_size.py │ │ │ ├── test_string.py │ │ │ ├── test_symbolic.py │ │ │ ├── test_value_attrspec.py │ │ │ └── util.py │ │ └── use_rules.py │ ├── fft │ │ ├── __init__.py │ │ ├── __init__.pyi │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _pocketfft.cpython-39.pyc │ │ │ ├── helper.cpython-39.pyc │ │ │ └── setup.cpython-39.pyc │ │ ├── _pocketfft.py │ │ ├── _pocketfft.pyi │ │ ├── _pocketfft_internal.cp39-win_amd64.pyd │ │ ├── helper.py │ │ ├── helper.pyi │ │ ├── setup.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── test_helper.cpython-39.pyc │ │ │ └── test_pocketfft.cpython-39.pyc │ │ │ ├── test_helper.py │ │ │ └── test_pocketfft.py │ ├── lib │ │ ├── __init__.py │ │ ├── __init__.pyi │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _datasource.cpython-39.pyc │ │ │ ├── _iotools.cpython-39.pyc │ │ │ ├── _version.cpython-39.pyc │ │ │ ├── arraypad.cpython-39.pyc │ │ │ ├── arraysetops.cpython-39.pyc │ │ │ ├── arrayterator.cpython-39.pyc │ │ │ ├── format.cpython-39.pyc │ │ │ ├── function_base.cpython-39.pyc │ │ │ ├── histograms.cpython-39.pyc │ │ │ ├── index_tricks.cpython-39.pyc │ │ │ ├── mixins.cpython-39.pyc │ │ │ ├── nanfunctions.cpython-39.pyc │ │ │ ├── npyio.cpython-39.pyc │ │ │ ├── polynomial.cpython-39.pyc │ │ │ ├── recfunctions.cpython-39.pyc │ │ │ ├── scimath.cpython-39.pyc │ │ │ ├── setup.cpython-39.pyc │ │ │ ├── shape_base.cpython-39.pyc │ │ │ ├── stride_tricks.cpython-39.pyc │ │ │ ├── twodim_base.cpython-39.pyc │ │ │ ├── type_check.cpython-39.pyc │ │ │ ├── ufunclike.cpython-39.pyc │ │ │ ├── user_array.cpython-39.pyc │ │ │ └── utils.cpython-39.pyc │ │ ├── _datasource.py │ │ ├── _iotools.py │ │ ├── _version.py │ │ ├── _version.pyi │ │ ├── arraypad.py │ │ ├── arraypad.pyi │ │ ├── arraysetops.py │ │ ├── arraysetops.pyi │ │ ├── arrayterator.py │ │ ├── arrayterator.pyi │ │ ├── format.py │ │ ├── format.pyi │ │ ├── function_base.py │ │ ├── function_base.pyi │ │ ├── histograms.py │ │ ├── histograms.pyi │ │ ├── index_tricks.py │ │ ├── index_tricks.pyi │ │ ├── mixins.py │ │ ├── mixins.pyi │ │ ├── nanfunctions.py │ │ ├── nanfunctions.pyi │ │ ├── npyio.py │ │ ├── npyio.pyi │ │ ├── polynomial.py │ │ ├── polynomial.pyi │ │ ├── recfunctions.py │ │ ├── scimath.py │ │ ├── scimath.pyi │ │ ├── setup.py │ │ ├── shape_base.py │ │ ├── shape_base.pyi │ │ ├── stride_tricks.py │ │ ├── stride_tricks.pyi │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── test__datasource.cpython-39.pyc │ │ │ │ ├── test__iotools.cpython-39.pyc │ │ │ │ ├── test__version.cpython-39.pyc │ │ │ │ ├── test_arraypad.cpython-39.pyc │ │ │ │ ├── test_arraysetops.cpython-39.pyc │ │ │ │ ├── test_arrayterator.cpython-39.pyc │ │ │ │ ├── test_financial_expired.cpython-39.pyc │ │ │ │ ├── test_format.cpython-39.pyc │ │ │ │ ├── test_function_base.cpython-39.pyc │ │ │ │ ├── test_histograms.cpython-39.pyc │ │ │ │ ├── test_index_tricks.cpython-39.pyc │ │ │ │ ├── test_io.cpython-39.pyc │ │ │ │ ├── test_loadtxt.cpython-39.pyc │ │ │ │ ├── test_mixins.cpython-39.pyc │ │ │ │ ├── test_nanfunctions.cpython-39.pyc │ │ │ │ ├── test_packbits.cpython-39.pyc │ │ │ │ ├── test_polynomial.cpython-39.pyc │ │ │ │ ├── test_recfunctions.cpython-39.pyc │ │ │ │ ├── test_regression.cpython-39.pyc │ │ │ │ ├── test_shape_base.cpython-39.pyc │ │ │ │ ├── test_stride_tricks.cpython-39.pyc │ │ │ │ ├── test_twodim_base.cpython-39.pyc │ │ │ │ ├── test_type_check.cpython-39.pyc │ │ │ │ ├── test_ufunclike.cpython-39.pyc │ │ │ │ └── test_utils.cpython-39.pyc │ │ │ ├── data │ │ │ │ ├── py2-objarr.npy │ │ │ │ ├── py2-objarr.npz │ │ │ │ ├── py3-objarr.npy │ │ │ │ ├── py3-objarr.npz │ │ │ │ ├── python3.npy │ │ │ │ └── win64python2.npy │ │ │ ├── test__datasource.py │ │ │ ├── test__iotools.py │ │ │ ├── test__version.py │ │ │ ├── test_arraypad.py │ │ │ ├── test_arraysetops.py │ │ │ ├── test_arrayterator.py │ │ │ ├── test_financial_expired.py │ │ │ ├── test_format.py │ │ │ ├── test_function_base.py │ │ │ ├── test_histograms.py │ │ │ ├── test_index_tricks.py │ │ │ ├── test_io.py │ │ │ ├── test_loadtxt.py │ │ │ ├── test_mixins.py │ │ │ ├── test_nanfunctions.py │ │ │ ├── test_packbits.py │ │ │ ├── test_polynomial.py │ │ │ ├── test_recfunctions.py │ │ │ ├── test_regression.py │ │ │ ├── test_shape_base.py │ │ │ ├── test_stride_tricks.py │ │ │ ├── test_twodim_base.py │ │ │ ├── test_type_check.py │ │ │ ├── test_ufunclike.py │ │ │ └── test_utils.py │ │ ├── twodim_base.py │ │ ├── twodim_base.pyi │ │ ├── type_check.py │ │ ├── type_check.pyi │ │ ├── ufunclike.py │ │ ├── ufunclike.pyi │ │ ├── user_array.py │ │ ├── utils.py │ │ └── utils.pyi │ ├── linalg │ │ ├── __init__.py │ │ ├── __init__.pyi │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── linalg.cpython-39.pyc │ │ │ └── setup.cpython-39.pyc │ │ ├── _umath_linalg.cp39-win_amd64.pyd │ │ ├── lapack_lite.cp39-win_amd64.pyd │ │ ├── linalg.py │ │ ├── linalg.pyi │ │ ├── setup.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── test_deprecations.cpython-39.pyc │ │ │ ├── test_linalg.cpython-39.pyc │ │ │ └── test_regression.cpython-39.pyc │ │ │ ├── test_deprecations.py │ │ │ ├── test_linalg.py │ │ │ └── test_regression.py │ ├── ma │ │ ├── __init__.py │ │ ├── __init__.pyi │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── bench.cpython-39.pyc │ │ │ ├── core.cpython-39.pyc │ │ │ ├── extras.cpython-39.pyc │ │ │ ├── mrecords.cpython-39.pyc │ │ │ ├── setup.cpython-39.pyc │ │ │ ├── testutils.cpython-39.pyc │ │ │ └── timer_comparison.cpython-39.pyc │ │ ├── bench.py │ │ ├── core.py │ │ ├── core.pyi │ │ ├── extras.py │ │ ├── extras.pyi │ │ ├── mrecords.py │ │ ├── mrecords.pyi │ │ ├── setup.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── test_core.cpython-39.pyc │ │ │ │ ├── test_deprecations.cpython-39.pyc │ │ │ │ ├── test_extras.cpython-39.pyc │ │ │ │ ├── test_mrecords.cpython-39.pyc │ │ │ │ ├── test_old_ma.cpython-39.pyc │ │ │ │ ├── test_regression.cpython-39.pyc │ │ │ │ └── test_subclassing.cpython-39.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 │ ├── matlib.py │ ├── matrixlib │ │ ├── __init__.py │ │ ├── __init__.pyi │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── defmatrix.cpython-39.pyc │ │ │ └── setup.cpython-39.pyc │ │ ├── defmatrix.py │ │ ├── defmatrix.pyi │ │ ├── setup.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── test_defmatrix.cpython-39.pyc │ │ │ ├── test_interaction.cpython-39.pyc │ │ │ ├── test_masked_matrix.cpython-39.pyc │ │ │ ├── test_matrix_linalg.cpython-39.pyc │ │ │ ├── test_multiarray.cpython-39.pyc │ │ │ ├── test_numeric.cpython-39.pyc │ │ │ └── test_regression.cpython-39.pyc │ │ │ ├── test_defmatrix.py │ │ │ ├── test_interaction.py │ │ │ ├── test_masked_matrix.py │ │ │ ├── test_matrix_linalg.py │ │ │ ├── test_multiarray.py │ │ │ ├── test_numeric.py │ │ │ └── test_regression.py │ ├── polynomial │ │ ├── __init__.py │ │ ├── __init__.pyi │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _polybase.cpython-39.pyc │ │ │ ├── chebyshev.cpython-39.pyc │ │ │ ├── hermite.cpython-39.pyc │ │ │ ├── hermite_e.cpython-39.pyc │ │ │ ├── laguerre.cpython-39.pyc │ │ │ ├── legendre.cpython-39.pyc │ │ │ ├── polynomial.cpython-39.pyc │ │ │ ├── polyutils.cpython-39.pyc │ │ │ └── setup.cpython-39.pyc │ │ ├── _polybase.py │ │ ├── _polybase.pyi │ │ ├── chebyshev.py │ │ ├── chebyshev.pyi │ │ ├── hermite.py │ │ ├── hermite.pyi │ │ ├── hermite_e.py │ │ ├── hermite_e.pyi │ │ ├── laguerre.py │ │ ├── laguerre.pyi │ │ ├── legendre.py │ │ ├── legendre.pyi │ │ ├── polynomial.py │ │ ├── polynomial.pyi │ │ ├── polyutils.py │ │ ├── polyutils.pyi │ │ ├── setup.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── test_chebyshev.cpython-39.pyc │ │ │ ├── test_classes.cpython-39.pyc │ │ │ ├── test_hermite.cpython-39.pyc │ │ │ ├── test_hermite_e.cpython-39.pyc │ │ │ ├── test_laguerre.cpython-39.pyc │ │ │ ├── test_legendre.cpython-39.pyc │ │ │ ├── test_polynomial.cpython-39.pyc │ │ │ ├── test_polyutils.cpython-39.pyc │ │ │ ├── test_printing.cpython-39.pyc │ │ │ └── test_symbol.cpython-39.pyc │ │ │ ├── test_chebyshev.py │ │ │ ├── test_classes.py │ │ │ ├── test_hermite.py │ │ │ ├── test_hermite_e.py │ │ │ ├── test_laguerre.py │ │ │ ├── test_legendre.py │ │ │ ├── test_polynomial.py │ │ │ ├── test_polyutils.py │ │ │ ├── test_printing.py │ │ │ └── test_symbol.py │ ├── py.typed │ ├── random │ │ ├── __init__.pxd │ │ ├── __init__.py │ │ ├── __init__.pyi │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _pickle.cpython-39.pyc │ │ │ └── setup.cpython-39.pyc │ │ ├── _bounded_integers.cp39-win_amd64.pyd │ │ ├── _bounded_integers.pxd │ │ ├── _common.cp39-win_amd64.pyd │ │ ├── _common.pxd │ │ ├── _examples │ │ │ ├── cffi │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── extending.cpython-39.pyc │ │ │ │ │ └── parse.cpython-39.pyc │ │ │ │ ├── extending.py │ │ │ │ └── parse.py │ │ │ ├── cython │ │ │ │ ├── __pycache__ │ │ │ │ │ └── setup.cpython-39.pyc │ │ │ │ ├── extending.pyx │ │ │ │ ├── extending_distributions.pyx │ │ │ │ └── setup.py │ │ │ └── numba │ │ │ │ ├── __pycache__ │ │ │ │ ├── extending.cpython-39.pyc │ │ │ │ └── extending_distributions.cpython-39.pyc │ │ │ │ ├── extending.py │ │ │ │ └── extending_distributions.py │ │ ├── _generator.cp39-win_amd64.pyd │ │ ├── _generator.pyi │ │ ├── _mt19937.cp39-win_amd64.pyd │ │ ├── _mt19937.pyi │ │ ├── _pcg64.cp39-win_amd64.pyd │ │ ├── _pcg64.pyi │ │ ├── _philox.cp39-win_amd64.pyd │ │ ├── _philox.pyi │ │ ├── _pickle.py │ │ ├── _sfc64.cp39-win_amd64.pyd │ │ ├── _sfc64.pyi │ │ ├── bit_generator.cp39-win_amd64.pyd │ │ ├── bit_generator.pxd │ │ ├── bit_generator.pyi │ │ ├── c_distributions.pxd │ │ ├── lib │ │ │ └── npyrandom.lib │ │ ├── mtrand.cp39-win_amd64.pyd │ │ ├── mtrand.pyi │ │ ├── setup.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── test_direct.cpython-39.pyc │ │ │ ├── test_extending.cpython-39.pyc │ │ │ ├── test_generator_mt19937.cpython-39.pyc │ │ │ ├── test_generator_mt19937_regressions.cpython-39.pyc │ │ │ ├── test_random.cpython-39.pyc │ │ │ ├── test_randomstate.cpython-39.pyc │ │ │ ├── test_randomstate_regression.cpython-39.pyc │ │ │ ├── test_regression.cpython-39.pyc │ │ │ ├── test_seed_sequence.cpython-39.pyc │ │ │ └── test_smoke.cpython-39.pyc │ │ │ ├── data │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ ├── mt19937-testset-1.csv │ │ │ ├── mt19937-testset-2.csv │ │ │ ├── pcg64-testset-1.csv │ │ │ ├── pcg64-testset-2.csv │ │ │ ├── pcg64dxsm-testset-1.csv │ │ │ ├── pcg64dxsm-testset-2.csv │ │ │ ├── philox-testset-1.csv │ │ │ ├── philox-testset-2.csv │ │ │ ├── sfc64-testset-1.csv │ │ │ └── sfc64-testset-2.csv │ │ │ ├── test_direct.py │ │ │ ├── test_extending.py │ │ │ ├── test_generator_mt19937.py │ │ │ ├── test_generator_mt19937_regressions.py │ │ │ ├── test_random.py │ │ │ ├── test_randomstate.py │ │ │ ├── test_randomstate_regression.py │ │ │ ├── test_regression.py │ │ │ ├── test_seed_sequence.py │ │ │ └── test_smoke.py │ ├── setup.py │ ├── testing │ │ ├── __init__.py │ │ ├── __init__.pyi │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── print_coercion_tables.cpython-39.pyc │ │ │ ├── setup.cpython-39.pyc │ │ │ └── utils.cpython-39.pyc │ │ ├── _private │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── decorators.cpython-39.pyc │ │ │ │ ├── extbuild.cpython-39.pyc │ │ │ │ ├── noseclasses.cpython-39.pyc │ │ │ │ ├── nosetester.cpython-39.pyc │ │ │ │ ├── parameterized.cpython-39.pyc │ │ │ │ └── utils.cpython-39.pyc │ │ │ ├── decorators.py │ │ │ ├── extbuild.py │ │ │ ├── noseclasses.py │ │ │ ├── nosetester.py │ │ │ ├── parameterized.py │ │ │ ├── utils.py │ │ │ └── utils.pyi │ │ ├── print_coercion_tables.py │ │ ├── setup.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── test_doctesting.cpython-39.pyc │ │ │ │ └── test_utils.cpython-39.pyc │ │ │ ├── test_doctesting.py │ │ │ └── test_utils.py │ │ └── utils.py │ ├── tests │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── test__all__.cpython-39.pyc │ │ │ ├── test_ctypeslib.cpython-39.pyc │ │ │ ├── test_lazyloading.cpython-39.pyc │ │ │ ├── test_matlib.cpython-39.pyc │ │ │ ├── test_numpy_version.cpython-39.pyc │ │ │ ├── test_public_api.cpython-39.pyc │ │ │ ├── test_reloading.cpython-39.pyc │ │ │ ├── test_scripts.cpython-39.pyc │ │ │ └── test_warnings.cpython-39.pyc │ │ ├── test__all__.py │ │ ├── test_ctypeslib.py │ │ ├── test_lazyloading.py │ │ ├── test_matlib.py │ │ ├── test_numpy_version.py │ │ ├── test_public_api.py │ │ ├── test_reloading.py │ │ ├── test_scripts.py │ │ └── test_warnings.py │ ├── typing │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── mypy_plugin.cpython-39.pyc │ │ │ └── setup.cpython-39.pyc │ │ ├── mypy_plugin.py │ │ ├── setup.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── test_generic_alias.cpython-39.pyc │ │ │ ├── test_isfile.cpython-39.pyc │ │ │ ├── test_runtime.cpython-39.pyc │ │ │ └── test_typing.cpython-39.pyc │ │ │ ├── data │ │ │ ├── fail │ │ │ │ ├── arithmetic.pyi │ │ │ │ ├── array_constructors.pyi │ │ │ │ ├── array_like.pyi │ │ │ │ ├── array_pad.pyi │ │ │ │ ├── arrayprint.pyi │ │ │ │ ├── arrayterator.pyi │ │ │ │ ├── bitwise_ops.pyi │ │ │ │ ├── char.pyi │ │ │ │ ├── chararray.pyi │ │ │ │ ├── comparisons.pyi │ │ │ │ ├── constants.pyi │ │ │ │ ├── datasource.pyi │ │ │ │ ├── dtype.pyi │ │ │ │ ├── einsumfunc.pyi │ │ │ │ ├── false_positives.pyi │ │ │ │ ├── flatiter.pyi │ │ │ │ ├── fromnumeric.pyi │ │ │ │ ├── histograms.pyi │ │ │ │ ├── index_tricks.pyi │ │ │ │ ├── lib_function_base.pyi │ │ │ │ ├── lib_polynomial.pyi │ │ │ │ ├── lib_utils.pyi │ │ │ │ ├── lib_version.pyi │ │ │ │ ├── linalg.pyi │ │ │ │ ├── memmap.pyi │ │ │ │ ├── modules.pyi │ │ │ │ ├── multiarray.pyi │ │ │ │ ├── ndarray.pyi │ │ │ │ ├── ndarray_misc.pyi │ │ │ │ ├── nditer.pyi │ │ │ │ ├── nested_sequence.pyi │ │ │ │ ├── npyio.pyi │ │ │ │ ├── numerictypes.pyi │ │ │ │ ├── random.pyi │ │ │ │ ├── rec.pyi │ │ │ │ ├── scalars.pyi │ │ │ │ ├── shape_base.pyi │ │ │ │ ├── stride_tricks.pyi │ │ │ │ ├── testing.pyi │ │ │ │ ├── twodim_base.pyi │ │ │ │ ├── type_check.pyi │ │ │ │ ├── ufunc_config.pyi │ │ │ │ ├── ufunclike.pyi │ │ │ │ ├── ufuncs.pyi │ │ │ │ └── warnings_and_errors.pyi │ │ │ ├── misc │ │ │ │ └── extended_precision.pyi │ │ │ ├── mypy.ini │ │ │ ├── pass │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── arithmetic.cpython-39.pyc │ │ │ │ │ ├── array_constructors.cpython-39.pyc │ │ │ │ │ ├── array_like.cpython-39.pyc │ │ │ │ │ ├── arrayprint.cpython-39.pyc │ │ │ │ │ ├── arrayterator.cpython-39.pyc │ │ │ │ │ ├── bitwise_ops.cpython-39.pyc │ │ │ │ │ ├── comparisons.cpython-39.pyc │ │ │ │ │ ├── dtype.cpython-39.pyc │ │ │ │ │ ├── einsumfunc.cpython-39.pyc │ │ │ │ │ ├── flatiter.cpython-39.pyc │ │ │ │ │ ├── fromnumeric.cpython-39.pyc │ │ │ │ │ ├── index_tricks.cpython-39.pyc │ │ │ │ │ ├── lib_utils.cpython-39.pyc │ │ │ │ │ ├── lib_version.cpython-39.pyc │ │ │ │ │ ├── literal.cpython-39.pyc │ │ │ │ │ ├── mod.cpython-39.pyc │ │ │ │ │ ├── modules.cpython-39.pyc │ │ │ │ │ ├── multiarray.cpython-39.pyc │ │ │ │ │ ├── ndarray_conversion.cpython-39.pyc │ │ │ │ │ ├── ndarray_misc.cpython-39.pyc │ │ │ │ │ ├── ndarray_shape_manipulation.cpython-39.pyc │ │ │ │ │ ├── numeric.cpython-39.pyc │ │ │ │ │ ├── numerictypes.cpython-39.pyc │ │ │ │ │ ├── random.cpython-39.pyc │ │ │ │ │ ├── scalars.cpython-39.pyc │ │ │ │ │ ├── simple.cpython-39.pyc │ │ │ │ │ ├── simple_py3.cpython-39.pyc │ │ │ │ │ ├── ufunc_config.cpython-39.pyc │ │ │ │ │ ├── ufunclike.cpython-39.pyc │ │ │ │ │ ├── ufuncs.cpython-39.pyc │ │ │ │ │ └── warnings_and_errors.cpython-39.pyc │ │ │ │ ├── arithmetic.py │ │ │ │ ├── array_constructors.py │ │ │ │ ├── array_like.py │ │ │ │ ├── arrayprint.py │ │ │ │ ├── arrayterator.py │ │ │ │ ├── bitwise_ops.py │ │ │ │ ├── comparisons.py │ │ │ │ ├── dtype.py │ │ │ │ ├── einsumfunc.py │ │ │ │ ├── flatiter.py │ │ │ │ ├── fromnumeric.py │ │ │ │ ├── index_tricks.py │ │ │ │ ├── lib_utils.py │ │ │ │ ├── lib_version.py │ │ │ │ ├── literal.py │ │ │ │ ├── mod.py │ │ │ │ ├── modules.py │ │ │ │ ├── multiarray.py │ │ │ │ ├── ndarray_conversion.py │ │ │ │ ├── ndarray_misc.py │ │ │ │ ├── ndarray_shape_manipulation.py │ │ │ │ ├── numeric.py │ │ │ │ ├── numerictypes.py │ │ │ │ ├── random.py │ │ │ │ ├── scalars.py │ │ │ │ ├── simple.py │ │ │ │ ├── simple_py3.py │ │ │ │ ├── ufunc_config.py │ │ │ │ ├── ufunclike.py │ │ │ │ ├── ufuncs.py │ │ │ │ └── warnings_and_errors.py │ │ │ └── reveal │ │ │ │ ├── arithmetic.pyi │ │ │ │ ├── array_constructors.pyi │ │ │ │ ├── arraypad.pyi │ │ │ │ ├── arrayprint.pyi │ │ │ │ ├── arraysetops.pyi │ │ │ │ ├── arrayterator.pyi │ │ │ │ ├── bitwise_ops.pyi │ │ │ │ ├── char.pyi │ │ │ │ ├── chararray.pyi │ │ │ │ ├── comparisons.pyi │ │ │ │ ├── constants.pyi │ │ │ │ ├── ctypeslib.pyi │ │ │ │ ├── datasource.pyi │ │ │ │ ├── dtype.pyi │ │ │ │ ├── einsumfunc.pyi │ │ │ │ ├── emath.pyi │ │ │ │ ├── false_positives.pyi │ │ │ │ ├── fft.pyi │ │ │ │ ├── flatiter.pyi │ │ │ │ ├── fromnumeric.pyi │ │ │ │ ├── getlimits.pyi │ │ │ │ ├── histograms.pyi │ │ │ │ ├── index_tricks.pyi │ │ │ │ ├── lib_function_base.pyi │ │ │ │ ├── lib_polynomial.pyi │ │ │ │ ├── lib_utils.pyi │ │ │ │ ├── lib_version.pyi │ │ │ │ ├── linalg.pyi │ │ │ │ ├── matrix.pyi │ │ │ │ ├── memmap.pyi │ │ │ │ ├── mod.pyi │ │ │ │ ├── modules.pyi │ │ │ │ ├── multiarray.pyi │ │ │ │ ├── nbit_base_example.pyi │ │ │ │ ├── ndarray_conversion.pyi │ │ │ │ ├── ndarray_misc.pyi │ │ │ │ ├── ndarray_shape_manipulation.pyi │ │ │ │ ├── nditer.pyi │ │ │ │ ├── nested_sequence.pyi │ │ │ │ ├── npyio.pyi │ │ │ │ ├── numeric.pyi │ │ │ │ ├── numerictypes.pyi │ │ │ │ ├── random.pyi │ │ │ │ ├── rec.pyi │ │ │ │ ├── scalars.pyi │ │ │ │ ├── shape_base.pyi │ │ │ │ ├── stride_tricks.pyi │ │ │ │ ├── testing.pyi │ │ │ │ ├── twodim_base.pyi │ │ │ │ ├── type_check.pyi │ │ │ │ ├── ufunc_config.pyi │ │ │ │ ├── ufunclike.pyi │ │ │ │ ├── ufuncs.pyi │ │ │ │ ├── version.pyi │ │ │ │ └── warnings_and_errors.pyi │ │ │ ├── test_generic_alias.py │ │ │ ├── test_isfile.py │ │ │ ├── test_runtime.py │ │ │ └── test_typing.py │ └── version.py │ ├── openai-0.25.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt │ ├── openai │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── _openai_scripts.cpython-39.pyc │ │ ├── api_requestor.cpython-39.pyc │ │ ├── cli.cpython-39.pyc │ │ ├── embeddings_utils.cpython-39.pyc │ │ ├── error.cpython-39.pyc │ │ ├── object_classes.cpython-39.pyc │ │ ├── openai_object.cpython-39.pyc │ │ ├── openai_response.cpython-39.pyc │ │ ├── upload_progress.cpython-39.pyc │ │ ├── util.cpython-39.pyc │ │ ├── validators.cpython-39.pyc │ │ ├── version.cpython-39.pyc │ │ └── wandb_logger.cpython-39.pyc │ ├── _openai_scripts.py │ ├── api_requestor.py │ ├── api_resources │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── answer.cpython-39.pyc │ │ │ ├── classification.cpython-39.pyc │ │ │ ├── completion.cpython-39.pyc │ │ │ ├── customer.cpython-39.pyc │ │ │ ├── deployment.cpython-39.pyc │ │ │ ├── edit.cpython-39.pyc │ │ │ ├── embedding.cpython-39.pyc │ │ │ ├── engine.cpython-39.pyc │ │ │ ├── error_object.cpython-39.pyc │ │ │ ├── file.cpython-39.pyc │ │ │ ├── fine_tune.cpython-39.pyc │ │ │ ├── image.cpython-39.pyc │ │ │ ├── model.cpython-39.pyc │ │ │ ├── moderation.cpython-39.pyc │ │ │ └── search.cpython-39.pyc │ │ ├── abstract │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── api_resource.cpython-39.pyc │ │ │ │ ├── createable_api_resource.cpython-39.pyc │ │ │ │ ├── deletable_api_resource.cpython-39.pyc │ │ │ │ ├── engine_api_resource.cpython-39.pyc │ │ │ │ ├── listable_api_resource.cpython-39.pyc │ │ │ │ ├── nested_resource_class_methods.cpython-39.pyc │ │ │ │ └── updateable_api_resource.cpython-39.pyc │ │ │ ├── api_resource.py │ │ │ ├── createable_api_resource.py │ │ │ ├── deletable_api_resource.py │ │ │ ├── engine_api_resource.py │ │ │ ├── listable_api_resource.py │ │ │ ├── nested_resource_class_methods.py │ │ │ └── updateable_api_resource.py │ │ ├── answer.py │ │ ├── classification.py │ │ ├── completion.py │ │ ├── customer.py │ │ ├── deployment.py │ │ ├── edit.py │ │ ├── embedding.py │ │ ├── engine.py │ │ ├── error_object.py │ │ ├── experimental │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── completion_config.cpython-39.pyc │ │ │ └── completion_config.py │ │ ├── file.py │ │ ├── fine_tune.py │ │ ├── image.py │ │ ├── model.py │ │ ├── moderation.py │ │ └── search.py │ ├── cli.py │ ├── embeddings_utils.py │ ├── error.py │ ├── object_classes.py │ ├── openai_object.py │ ├── openai_response.py │ ├── py.typed │ ├── upload_progress.py │ ├── util.py │ ├── validators.py │ ├── version.py │ └── wandb_logger.py │ ├── openpyxl-3.0.10.dist-info │ ├── INSTALLER │ ├── LICENCE.rst │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ ├── openpyxl │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ └── _constants.cpython-39.pyc │ ├── _constants.py │ ├── cell │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _writer.cpython-39.pyc │ │ │ ├── cell.cpython-39.pyc │ │ │ ├── read_only.cpython-39.pyc │ │ │ └── text.cpython-39.pyc │ │ ├── _writer.py │ │ ├── cell.py │ │ ├── read_only.py │ │ └── text.py │ ├── chart │ │ ├── _3d.py │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── _3d.cpython-39.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _chart.cpython-39.pyc │ │ │ ├── area_chart.cpython-39.pyc │ │ │ ├── axis.cpython-39.pyc │ │ │ ├── bar_chart.cpython-39.pyc │ │ │ ├── bubble_chart.cpython-39.pyc │ │ │ ├── chartspace.cpython-39.pyc │ │ │ ├── data_source.cpython-39.pyc │ │ │ ├── descriptors.cpython-39.pyc │ │ │ ├── error_bar.cpython-39.pyc │ │ │ ├── label.cpython-39.pyc │ │ │ ├── layout.cpython-39.pyc │ │ │ ├── legend.cpython-39.pyc │ │ │ ├── line_chart.cpython-39.pyc │ │ │ ├── marker.cpython-39.pyc │ │ │ ├── picture.cpython-39.pyc │ │ │ ├── pie_chart.cpython-39.pyc │ │ │ ├── pivot.cpython-39.pyc │ │ │ ├── plotarea.cpython-39.pyc │ │ │ ├── print_settings.cpython-39.pyc │ │ │ ├── radar_chart.cpython-39.pyc │ │ │ ├── reader.cpython-39.pyc │ │ │ ├── reference.cpython-39.pyc │ │ │ ├── scatter_chart.cpython-39.pyc │ │ │ ├── series.cpython-39.pyc │ │ │ ├── series_factory.cpython-39.pyc │ │ │ ├── shapes.cpython-39.pyc │ │ │ ├── stock_chart.cpython-39.pyc │ │ │ ├── surface_chart.cpython-39.pyc │ │ │ ├── text.cpython-39.pyc │ │ │ ├── title.cpython-39.pyc │ │ │ ├── trendline.cpython-39.pyc │ │ │ └── updown_bars.cpython-39.pyc │ │ ├── _chart.py │ │ ├── area_chart.py │ │ ├── axis.py │ │ ├── bar_chart.py │ │ ├── bubble_chart.py │ │ ├── chartspace.py │ │ ├── data_source.py │ │ ├── descriptors.py │ │ ├── error_bar.py │ │ ├── label.py │ │ ├── layout.py │ │ ├── legend.py │ │ ├── line_chart.py │ │ ├── marker.py │ │ ├── picture.py │ │ ├── pie_chart.py │ │ ├── pivot.py │ │ ├── plotarea.py │ │ ├── print_settings.py │ │ ├── radar_chart.py │ │ ├── reader.py │ │ ├── reference.py │ │ ├── scatter_chart.py │ │ ├── series.py │ │ ├── series_factory.py │ │ ├── shapes.py │ │ ├── stock_chart.py │ │ ├── surface_chart.py │ │ ├── text.py │ │ ├── title.py │ │ ├── trendline.py │ │ └── updown_bars.py │ ├── chartsheet │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── chartsheet.cpython-39.pyc │ │ │ ├── custom.cpython-39.pyc │ │ │ ├── properties.cpython-39.pyc │ │ │ ├── protection.cpython-39.pyc │ │ │ ├── publish.cpython-39.pyc │ │ │ ├── relation.cpython-39.pyc │ │ │ └── views.cpython-39.pyc │ │ ├── chartsheet.py │ │ ├── custom.py │ │ ├── properties.py │ │ ├── protection.py │ │ ├── publish.py │ │ ├── relation.py │ │ └── views.py │ ├── comments │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── author.cpython-39.pyc │ │ │ ├── comment_sheet.cpython-39.pyc │ │ │ ├── comments.cpython-39.pyc │ │ │ └── shape_writer.cpython-39.pyc │ │ ├── author.py │ │ ├── comment_sheet.py │ │ ├── comments.py │ │ └── shape_writer.py │ ├── compat │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── abc.cpython-39.pyc │ │ │ ├── numbers.cpython-39.pyc │ │ │ ├── product.cpython-39.pyc │ │ │ ├── singleton.cpython-39.pyc │ │ │ └── strings.cpython-39.pyc │ │ ├── abc.py │ │ ├── numbers.py │ │ ├── product.py │ │ ├── singleton.py │ │ └── strings.py │ ├── descriptors │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── base.cpython-39.pyc │ │ │ ├── excel.cpython-39.pyc │ │ │ ├── namespace.cpython-39.pyc │ │ │ ├── nested.cpython-39.pyc │ │ │ ├── sequence.cpython-39.pyc │ │ │ ├── serialisable.cpython-39.pyc │ │ │ └── slots.cpython-39.pyc │ │ ├── base.py │ │ ├── excel.py │ │ ├── namespace.py │ │ ├── nested.py │ │ ├── sequence.py │ │ ├── serialisable.py │ │ └── slots.py │ ├── drawing │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── colors.cpython-39.pyc │ │ │ ├── connector.cpython-39.pyc │ │ │ ├── drawing.cpython-39.pyc │ │ │ ├── effect.cpython-39.pyc │ │ │ ├── fill.cpython-39.pyc │ │ │ ├── geometry.cpython-39.pyc │ │ │ ├── graphic.cpython-39.pyc │ │ │ ├── image.cpython-39.pyc │ │ │ ├── line.cpython-39.pyc │ │ │ ├── picture.cpython-39.pyc │ │ │ ├── properties.cpython-39.pyc │ │ │ ├── relation.cpython-39.pyc │ │ │ ├── spreadsheet_drawing.cpython-39.pyc │ │ │ ├── text.cpython-39.pyc │ │ │ └── xdr.cpython-39.pyc │ │ ├── colors.py │ │ ├── connector.py │ │ ├── drawing.py │ │ ├── effect.py │ │ ├── fill.py │ │ ├── geometry.py │ │ ├── graphic.py │ │ ├── image.py │ │ ├── line.py │ │ ├── picture.py │ │ ├── properties.py │ │ ├── relation.py │ │ ├── spreadsheet_drawing.py │ │ ├── text.py │ │ └── xdr.py │ ├── formatting │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── formatting.cpython-39.pyc │ │ │ └── rule.cpython-39.pyc │ │ ├── formatting.py │ │ └── rule.py │ ├── formula │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── tokenizer.cpython-39.pyc │ │ │ └── translate.cpython-39.pyc │ │ ├── tokenizer.py │ │ └── translate.py │ ├── packaging │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── core.cpython-39.pyc │ │ │ ├── extended.cpython-39.pyc │ │ │ ├── interface.cpython-39.pyc │ │ │ ├── manifest.cpython-39.pyc │ │ │ ├── relationship.cpython-39.pyc │ │ │ └── workbook.cpython-39.pyc │ │ ├── core.py │ │ ├── extended.py │ │ ├── interface.py │ │ ├── manifest.py │ │ ├── relationship.py │ │ └── workbook.py │ ├── pivot │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── cache.cpython-39.pyc │ │ │ ├── fields.cpython-39.pyc │ │ │ ├── record.cpython-39.pyc │ │ │ └── table.cpython-39.pyc │ │ ├── cache.py │ │ ├── fields.py │ │ ├── record.py │ │ └── table.py │ ├── reader │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── drawings.cpython-39.pyc │ │ │ ├── excel.cpython-39.pyc │ │ │ ├── strings.cpython-39.pyc │ │ │ └── workbook.cpython-39.pyc │ │ ├── drawings.py │ │ ├── excel.py │ │ ├── strings.py │ │ └── workbook.py │ ├── styles │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── alignment.cpython-39.pyc │ │ │ ├── borders.cpython-39.pyc │ │ │ ├── builtins.cpython-39.pyc │ │ │ ├── cell_style.cpython-39.pyc │ │ │ ├── colors.cpython-39.pyc │ │ │ ├── differential.cpython-39.pyc │ │ │ ├── fills.cpython-39.pyc │ │ │ ├── fonts.cpython-39.pyc │ │ │ ├── named_styles.cpython-39.pyc │ │ │ ├── numbers.cpython-39.pyc │ │ │ ├── protection.cpython-39.pyc │ │ │ ├── proxy.cpython-39.pyc │ │ │ ├── styleable.cpython-39.pyc │ │ │ ├── stylesheet.cpython-39.pyc │ │ │ └── table.cpython-39.pyc │ │ ├── alignment.py │ │ ├── borders.py │ │ ├── builtins.py │ │ ├── cell_style.py │ │ ├── colors.py │ │ ├── differential.py │ │ ├── fills.py │ │ ├── fonts.py │ │ ├── named_styles.py │ │ ├── numbers.py │ │ ├── protection.py │ │ ├── proxy.py │ │ ├── styleable.py │ │ ├── stylesheet.py │ │ └── table.py │ ├── utils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── bound_dictionary.cpython-39.pyc │ │ │ ├── cell.cpython-39.pyc │ │ │ ├── dataframe.cpython-39.pyc │ │ │ ├── datetime.cpython-39.pyc │ │ │ ├── escape.cpython-39.pyc │ │ │ ├── exceptions.cpython-39.pyc │ │ │ ├── formulas.cpython-39.pyc │ │ │ ├── indexed_list.cpython-39.pyc │ │ │ ├── inference.cpython-39.pyc │ │ │ ├── protection.cpython-39.pyc │ │ │ └── units.cpython-39.pyc │ │ ├── bound_dictionary.py │ │ ├── cell.py │ │ ├── dataframe.py │ │ ├── datetime.py │ │ ├── escape.py │ │ ├── exceptions.py │ │ ├── formulas.py │ │ ├── indexed_list.py │ │ ├── inference.py │ │ ├── protection.py │ │ └── units.py │ ├── workbook │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _writer.cpython-39.pyc │ │ │ ├── child.cpython-39.pyc │ │ │ ├── defined_name.cpython-39.pyc │ │ │ ├── external_reference.cpython-39.pyc │ │ │ ├── function_group.cpython-39.pyc │ │ │ ├── properties.cpython-39.pyc │ │ │ ├── protection.cpython-39.pyc │ │ │ ├── smart_tags.cpython-39.pyc │ │ │ ├── views.cpython-39.pyc │ │ │ ├── web.cpython-39.pyc │ │ │ └── workbook.cpython-39.pyc │ │ ├── _writer.py │ │ ├── child.py │ │ ├── defined_name.py │ │ ├── external_link │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── external.cpython-39.pyc │ │ │ └── external.py │ │ ├── external_reference.py │ │ ├── function_group.py │ │ ├── properties.py │ │ ├── protection.py │ │ ├── smart_tags.py │ │ ├── views.py │ │ ├── web.py │ │ └── workbook.py │ ├── worksheet │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _read_only.cpython-39.pyc │ │ │ ├── _reader.cpython-39.pyc │ │ │ ├── _write_only.cpython-39.pyc │ │ │ ├── _writer.cpython-39.pyc │ │ │ ├── cell_range.cpython-39.pyc │ │ │ ├── cell_watch.cpython-39.pyc │ │ │ ├── controls.cpython-39.pyc │ │ │ ├── copier.cpython-39.pyc │ │ │ ├── custom.cpython-39.pyc │ │ │ ├── datavalidation.cpython-39.pyc │ │ │ ├── dimensions.cpython-39.pyc │ │ │ ├── drawing.cpython-39.pyc │ │ │ ├── errors.cpython-39.pyc │ │ │ ├── filters.cpython-39.pyc │ │ │ ├── header_footer.cpython-39.pyc │ │ │ ├── hyperlink.cpython-39.pyc │ │ │ ├── merge.cpython-39.pyc │ │ │ ├── ole.cpython-39.pyc │ │ │ ├── page.cpython-39.pyc │ │ │ ├── pagebreak.cpython-39.pyc │ │ │ ├── picture.cpython-39.pyc │ │ │ ├── properties.cpython-39.pyc │ │ │ ├── protection.cpython-39.pyc │ │ │ ├── related.cpython-39.pyc │ │ │ ├── scenario.cpython-39.pyc │ │ │ ├── smart_tag.cpython-39.pyc │ │ │ ├── table.cpython-39.pyc │ │ │ ├── views.cpython-39.pyc │ │ │ └── worksheet.cpython-39.pyc │ │ ├── _read_only.py │ │ ├── _reader.py │ │ ├── _write_only.py │ │ ├── _writer.py │ │ ├── cell_range.py │ │ ├── cell_watch.py │ │ ├── controls.py │ │ ├── copier.py │ │ ├── custom.py │ │ ├── datavalidation.py │ │ ├── dimensions.py │ │ ├── drawing.py │ │ ├── errors.py │ │ ├── filters.py │ │ ├── header_footer.py │ │ ├── hyperlink.py │ │ ├── merge.py │ │ ├── ole.py │ │ ├── page.py │ │ ├── pagebreak.py │ │ ├── picture.py │ │ ├── properties.py │ │ ├── protection.py │ │ ├── related.py │ │ ├── scenario.py │ │ ├── smart_tag.py │ │ ├── table.py │ │ ├── views.py │ │ └── worksheet.py │ ├── writer │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── excel.cpython-39.pyc │ │ │ └── theme.cpython-39.pyc │ │ ├── excel.py │ │ └── theme.py │ └── xml │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── constants.cpython-39.pyc │ │ └── functions.cpython-39.pyc │ │ ├── constants.py │ │ └── functions.py │ ├── pandas-1.5.2.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt │ ├── pandas-stubs │ ├── __init__.pyi │ ├── _config │ │ ├── __init__.pyi │ │ └── config.pyi │ ├── _libs │ │ ├── __init__.pyi │ │ ├── indexing.pyi │ │ ├── interval.pyi │ │ ├── json.pyi │ │ ├── lib.pyi │ │ ├── missing.pyi │ │ ├── ops_dispatch.pyi │ │ ├── properties.pyi │ │ ├── sparse.pyi │ │ ├── tslibs │ │ │ ├── __init__.pyi │ │ │ ├── base.pyi │ │ │ ├── conversion.pyi │ │ │ ├── dtypes.pyi │ │ │ ├── nattype.pyi │ │ │ ├── np_datetime.pyi │ │ │ ├── offsets.pyi │ │ │ ├── parsing.pyi │ │ │ ├── period.pyi │ │ │ ├── strptime.pyi │ │ │ ├── timedeltas.pyi │ │ │ ├── timestamps.pyi │ │ │ ├── tzconversion.pyi │ │ │ └── vectorized.pyi │ │ └── window │ │ │ └── __init__.pyi │ ├── _testing │ │ └── __init__.pyi │ ├── _typing.pyi │ ├── _version.pyi │ ├── api │ │ ├── __init__.pyi │ │ ├── extensions │ │ │ └── __init__.pyi │ │ ├── indexers │ │ │ └── __init__.pyi │ │ ├── interchange │ │ │ └── __init__.pyi │ │ └── types │ │ │ └── __init__.pyi │ ├── arrays │ │ └── __init__.pyi │ ├── core │ │ ├── __init__.pyi │ │ ├── accessor.pyi │ │ ├── algorithms.pyi │ │ ├── api.pyi │ │ ├── arraylike.pyi │ │ ├── arrays │ │ │ ├── __init__.pyi │ │ │ ├── arrow │ │ │ │ └── dtype.pyi │ │ │ ├── base.pyi │ │ │ ├── boolean.pyi │ │ │ ├── categorical.pyi │ │ │ ├── datetimelike.pyi │ │ │ ├── datetimes.pyi │ │ │ ├── floating.pyi │ │ │ ├── integer.pyi │ │ │ ├── interval.pyi │ │ │ ├── masked.pyi │ │ │ ├── numeric.pyi │ │ │ ├── numpy_.pyi │ │ │ ├── period.pyi │ │ │ ├── sparse │ │ │ │ ├── __init__.pyi │ │ │ │ ├── accessor.pyi │ │ │ │ ├── array.pyi │ │ │ │ └── dtype.pyi │ │ │ ├── string_.pyi │ │ │ └── timedeltas.pyi │ │ ├── base.pyi │ │ ├── common.pyi │ │ ├── computation │ │ │ ├── __init__.pyi │ │ │ ├── align.pyi │ │ │ ├── api.pyi │ │ │ ├── common.pyi │ │ │ ├── engines.pyi │ │ │ ├── eval.pyi │ │ │ ├── expr.pyi │ │ │ ├── expressions.pyi │ │ │ ├── ops.pyi │ │ │ ├── parsing.pyi │ │ │ ├── pytables.pyi │ │ │ └── scope.pyi │ │ ├── config_init.pyi │ │ ├── construction.pyi │ │ ├── dtypes │ │ │ ├── __init__.pyi │ │ │ ├── api.pyi │ │ │ ├── base.pyi │ │ │ ├── cast.pyi │ │ │ ├── common.pyi │ │ │ ├── concat.pyi │ │ │ ├── dtypes.pyi │ │ │ ├── generic.pyi │ │ │ ├── inference.pyi │ │ │ └── missing.pyi │ │ ├── frame.pyi │ │ ├── generic.pyi │ │ ├── groupby │ │ │ ├── __init__.pyi │ │ │ ├── base.pyi │ │ │ ├── categorical.pyi │ │ │ ├── generic.pyi │ │ │ ├── groupby.pyi │ │ │ ├── grouper.pyi │ │ │ └── ops.pyi │ │ ├── indexers.pyi │ │ ├── indexes │ │ │ ├── __init__.pyi │ │ │ ├── accessors.pyi │ │ │ ├── api.pyi │ │ │ ├── base.pyi │ │ │ ├── category.pyi │ │ │ ├── datetimelike.pyi │ │ │ ├── datetimes.pyi │ │ │ ├── extension.pyi │ │ │ ├── frozen.pyi │ │ │ ├── interval.pyi │ │ │ ├── multi.pyi │ │ │ ├── numeric.pyi │ │ │ ├── period.pyi │ │ │ ├── range.pyi │ │ │ └── timedeltas.pyi │ │ ├── indexing.pyi │ │ ├── interchange │ │ │ ├── __init__.pyi │ │ │ ├── dataframe_protocol.pyi │ │ │ └── from_dataframe.pyi │ │ ├── missing.pyi │ │ ├── ops │ │ │ ├── __init__.pyi │ │ │ ├── array_ops.pyi │ │ │ ├── common.pyi │ │ │ ├── dispatch.pyi │ │ │ ├── docstrings.pyi │ │ │ ├── invalid.pyi │ │ │ └── mask_ops.pyi │ │ ├── resample.pyi │ │ ├── reshape │ │ │ ├── __init__.pyi │ │ │ ├── api.pyi │ │ │ ├── concat.pyi │ │ │ ├── encoding.pyi │ │ │ ├── melt.pyi │ │ │ ├── merge.pyi │ │ │ ├── pivot.pyi │ │ │ ├── tile.pyi │ │ │ └── util.pyi │ │ ├── series.pyi │ │ ├── sparse │ │ │ └── __init__.pyi │ │ ├── strings.pyi │ │ ├── tools │ │ │ ├── __init__.pyi │ │ │ ├── datetimes.pyi │ │ │ ├── numeric.pyi │ │ │ └── timedeltas.pyi │ │ ├── util │ │ │ ├── __init__.pyi │ │ │ └── hashing.pyi │ │ └── window │ │ │ ├── __init__.pyi │ │ │ ├── ewm.pyi │ │ │ ├── expanding.pyi │ │ │ └── rolling.pyi │ ├── errors │ │ └── __init__.pyi │ ├── io │ │ ├── __init__.pyi │ │ ├── api.pyi │ │ ├── clipboard │ │ │ └── __init__.pyi │ │ ├── clipboards.pyi │ │ ├── common.pyi │ │ ├── excel │ │ │ ├── __init__.pyi │ │ │ ├── _base.pyi │ │ │ └── _util.pyi │ │ ├── feather_format.pyi │ │ ├── formats │ │ │ ├── __init__.pyi │ │ │ ├── css.pyi │ │ │ ├── format.pyi │ │ │ ├── style.pyi │ │ │ └── style_render.pyi │ │ ├── gbq.pyi │ │ ├── html.pyi │ │ ├── json │ │ │ ├── __init__.pyi │ │ │ ├── _json.pyi │ │ │ ├── _normalize.pyi │ │ │ └── _table_schema.pyi │ │ ├── orc.pyi │ │ ├── parquet.pyi │ │ ├── parsers.pyi │ │ ├── parsers │ │ │ ├── __init__.pyi │ │ │ └── readers.pyi │ │ ├── pickle.pyi │ │ ├── pytables.pyi │ │ ├── sas │ │ │ ├── __init__.pyi │ │ │ ├── sas7bdat.pyi │ │ │ ├── sas_xport.pyi │ │ │ └── sasreader.pyi │ │ ├── spss.pyi │ │ ├── sql.pyi │ │ ├── stata.pyi │ │ └── xml.pyi │ ├── plotting │ │ ├── __init__.pyi │ │ ├── _core.pyi │ │ └── _misc.pyi │ ├── py.typed │ ├── testing.pyi │ ├── tseries │ │ ├── __init__.pyi │ │ ├── api.pyi │ │ ├── frequencies.pyi │ │ ├── holiday.pyi │ │ └── offsets.pyi │ └── util │ │ ├── __init__.pyi │ │ ├── _decorators.pyi │ │ ├── _doctools.pyi │ │ ├── _exceptions.pyi │ │ ├── _print_versions.pyi │ │ ├── _tester.pyi │ │ ├── _validators.pyi │ │ └── version │ │ └── __init__.pyi │ ├── pandas │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── _typing.cpython-39.pyc │ │ ├── _version.cpython-39.pyc │ │ ├── conftest.cpython-39.pyc │ │ └── testing.cpython-39.pyc │ ├── _config │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── config.cpython-39.pyc │ │ │ ├── dates.cpython-39.pyc │ │ │ ├── display.cpython-39.pyc │ │ │ └── localization.cpython-39.pyc │ │ ├── config.py │ │ ├── dates.py │ │ ├── display.py │ │ └── localization.py │ ├── _libs │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ │ ├── algos.cp39-win_amd64.pyd │ │ ├── algos.pxd │ │ ├── algos.pyi │ │ ├── algos.pyx │ │ ├── algos_common_helper.pxi.in │ │ ├── algos_take_helper.pxi.in │ │ ├── arrays.cp39-win_amd64.pyd │ │ ├── arrays.pxd │ │ ├── arrays.pyi │ │ ├── arrays.pyx │ │ ├── dtypes.pxd │ │ ├── groupby.cp39-win_amd64.pyd │ │ ├── groupby.pyi │ │ ├── groupby.pyx │ │ ├── hashing.cp39-win_amd64.pyd │ │ ├── hashing.pyi │ │ ├── hashing.pyx │ │ ├── hashtable.cp39-win_amd64.pyd │ │ ├── hashtable.pxd │ │ ├── hashtable.pyi │ │ ├── hashtable.pyx │ │ ├── hashtable_class_helper.pxi.in │ │ ├── hashtable_func_helper.pxi.in │ │ ├── index.cp39-win_amd64.pyd │ │ ├── index.pyi │ │ ├── index.pyx │ │ ├── index_class_helper.pxi.in │ │ ├── indexing.cp39-win_amd64.pyd │ │ ├── indexing.pyi │ │ ├── indexing.pyx │ │ ├── internals.cp39-win_amd64.pyd │ │ ├── internals.pyi │ │ ├── internals.pyx │ │ ├── interval.cp39-win_amd64.pyd │ │ ├── interval.pyi │ │ ├── interval.pyx │ │ ├── intervaltree.pxi.in │ │ ├── join.cp39-win_amd64.pyd │ │ ├── join.pyi │ │ ├── join.pyx │ │ ├── json.cp39-win_amd64.pyd │ │ ├── json.pyi │ │ ├── khash.pxd │ │ ├── khash_for_primitive_helper.pxi.in │ │ ├── lib.cp39-win_amd64.pyd │ │ ├── lib.pxd │ │ ├── lib.pyi │ │ ├── lib.pyx │ │ ├── missing.cp39-win_amd64.pyd │ │ ├── missing.pxd │ │ ├── missing.pyi │ │ ├── missing.pyx │ │ ├── ops.cp39-win_amd64.pyd │ │ ├── ops.pyi │ │ ├── ops.pyx │ │ ├── ops_dispatch.cp39-win_amd64.pyd │ │ ├── ops_dispatch.pyi │ │ ├── ops_dispatch.pyx │ │ ├── parsers.cp39-win_amd64.pyd │ │ ├── parsers.pyi │ │ ├── parsers.pyx │ │ ├── properties.cp39-win_amd64.pyd │ │ ├── properties.pyi │ │ ├── properties.pyx │ │ ├── reduction.cp39-win_amd64.pyd │ │ ├── reduction.pyi │ │ ├── reduction.pyx │ │ ├── reshape.cp39-win_amd64.pyd │ │ ├── reshape.pyi │ │ ├── reshape.pyx │ │ ├── sparse.cp39-win_amd64.pyd │ │ ├── sparse.pyi │ │ ├── sparse.pyx │ │ ├── sparse_op_helper.pxi.in │ │ ├── testing.cp39-win_amd64.pyd │ │ ├── testing.pyi │ │ ├── testing.pyx │ │ ├── tslib.cp39-win_amd64.pyd │ │ ├── tslib.pyi │ │ ├── tslib.pyx │ │ ├── tslibs │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ ├── base.cp39-win_amd64.pyd │ │ │ ├── base.pxd │ │ │ ├── base.pyx │ │ │ ├── ccalendar.cp39-win_amd64.pyd │ │ │ ├── ccalendar.pxd │ │ │ ├── ccalendar.pyi │ │ │ ├── ccalendar.pyx │ │ │ ├── conversion.cp39-win_amd64.pyd │ │ │ ├── conversion.pxd │ │ │ ├── conversion.pyi │ │ │ ├── conversion.pyx │ │ │ ├── dtypes.cp39-win_amd64.pyd │ │ │ ├── dtypes.pxd │ │ │ ├── dtypes.pyi │ │ │ ├── dtypes.pyx │ │ │ ├── fields.cp39-win_amd64.pyd │ │ │ ├── fields.pyi │ │ │ ├── fields.pyx │ │ │ ├── nattype.cp39-win_amd64.pyd │ │ │ ├── nattype.pxd │ │ │ ├── nattype.pyi │ │ │ ├── nattype.pyx │ │ │ ├── np_datetime.cp39-win_amd64.pyd │ │ │ ├── np_datetime.pxd │ │ │ ├── np_datetime.pyi │ │ │ ├── np_datetime.pyx │ │ │ ├── offsets.cp39-win_amd64.pyd │ │ │ ├── offsets.pxd │ │ │ ├── offsets.pyi │ │ │ ├── offsets.pyx │ │ │ ├── parsing.cp39-win_amd64.pyd │ │ │ ├── parsing.pxd │ │ │ ├── parsing.pyi │ │ │ ├── parsing.pyx │ │ │ ├── period.cp39-win_amd64.pyd │ │ │ ├── period.pxd │ │ │ ├── period.pyi │ │ │ ├── period.pyx │ │ │ ├── strptime.cp39-win_amd64.pyd │ │ │ ├── strptime.pyi │ │ │ ├── strptime.pyx │ │ │ ├── timedeltas.cp39-win_amd64.pyd │ │ │ ├── timedeltas.pxd │ │ │ ├── timedeltas.pyi │ │ │ ├── timedeltas.pyx │ │ │ ├── timestamps.cp39-win_amd64.pyd │ │ │ ├── timestamps.pxd │ │ │ ├── timestamps.pyi │ │ │ ├── timestamps.pyx │ │ │ ├── timezones.cp39-win_amd64.pyd │ │ │ ├── timezones.pxd │ │ │ ├── timezones.pyi │ │ │ ├── timezones.pyx │ │ │ ├── tzconversion.cp39-win_amd64.pyd │ │ │ ├── tzconversion.pxd │ │ │ ├── tzconversion.pyi │ │ │ ├── tzconversion.pyx │ │ │ ├── util.pxd │ │ │ ├── vectorized.cp39-win_amd64.pyd │ │ │ ├── vectorized.pyi │ │ │ └── vectorized.pyx │ │ ├── util.pxd │ │ ├── window │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ ├── aggregations.cp39-win_amd64.pyd │ │ │ ├── aggregations.pyi │ │ │ ├── aggregations.pyx │ │ │ ├── concrt140.dll │ │ │ ├── indexers.cp39-win_amd64.pyd │ │ │ ├── indexers.pyi │ │ │ ├── indexers.pyx │ │ │ ├── msvcp140.dll │ │ │ └── vcruntime140_1.dll │ │ ├── writers.cp39-win_amd64.pyd │ │ ├── writers.pyi │ │ └── writers.pyx │ ├── _testing │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _hypothesis.cpython-39.pyc │ │ │ ├── _io.cpython-39.pyc │ │ │ ├── _random.cpython-39.pyc │ │ │ ├── _warnings.cpython-39.pyc │ │ │ ├── asserters.cpython-39.pyc │ │ │ ├── compat.cpython-39.pyc │ │ │ └── contexts.cpython-39.pyc │ │ ├── _hypothesis.py │ │ ├── _io.py │ │ ├── _random.py │ │ ├── _warnings.py │ │ ├── asserters.py │ │ ├── compat.py │ │ └── contexts.py │ ├── _typing.py │ ├── _version.py │ ├── api │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ │ ├── extensions │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── indexers │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── interchange │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ └── types │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── arrays │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── compat │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _optional.cpython-39.pyc │ │ │ ├── chainmap.cpython-39.pyc │ │ │ ├── pickle_compat.cpython-39.pyc │ │ │ └── pyarrow.cpython-39.pyc │ │ ├── _optional.py │ │ ├── chainmap.py │ │ ├── numpy │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── function.cpython-39.pyc │ │ │ └── function.py │ │ ├── pickle_compat.py │ │ └── pyarrow.py │ ├── conftest.py │ ├── core │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── accessor.cpython-39.pyc │ │ │ ├── algorithms.cpython-39.pyc │ │ │ ├── api.cpython-39.pyc │ │ │ ├── apply.cpython-39.pyc │ │ │ ├── arraylike.cpython-39.pyc │ │ │ ├── base.cpython-39.pyc │ │ │ ├── common.cpython-39.pyc │ │ │ ├── config_init.cpython-39.pyc │ │ │ ├── construction.cpython-39.pyc │ │ │ ├── describe.cpython-39.pyc │ │ │ ├── flags.cpython-39.pyc │ │ │ ├── frame.cpython-39.pyc │ │ │ ├── generic.cpython-39.pyc │ │ │ ├── index.cpython-39.pyc │ │ │ ├── indexing.cpython-39.pyc │ │ │ ├── missing.cpython-39.pyc │ │ │ ├── nanops.cpython-39.pyc │ │ │ ├── resample.cpython-39.pyc │ │ │ ├── roperator.cpython-39.pyc │ │ │ ├── sample.cpython-39.pyc │ │ │ ├── series.cpython-39.pyc │ │ │ ├── shared_docs.cpython-39.pyc │ │ │ └── sorting.cpython-39.pyc │ │ ├── _numba │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── executor.cpython-39.pyc │ │ │ ├── executor.py │ │ │ └── kernels │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── mean_.cpython-39.pyc │ │ │ │ ├── min_max_.cpython-39.pyc │ │ │ │ ├── shared.cpython-39.pyc │ │ │ │ ├── sum_.cpython-39.pyc │ │ │ │ └── var_.cpython-39.pyc │ │ │ │ ├── mean_.py │ │ │ │ ├── min_max_.py │ │ │ │ ├── shared.py │ │ │ │ ├── sum_.py │ │ │ │ └── var_.py │ │ ├── accessor.py │ │ ├── algorithms.py │ │ ├── api.py │ │ ├── apply.py │ │ ├── array_algos │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── masked_reductions.cpython-39.pyc │ │ │ │ ├── putmask.cpython-39.pyc │ │ │ │ ├── quantile.cpython-39.pyc │ │ │ │ ├── replace.cpython-39.pyc │ │ │ │ ├── take.cpython-39.pyc │ │ │ │ └── transforms.cpython-39.pyc │ │ │ ├── masked_reductions.py │ │ │ ├── putmask.py │ │ │ ├── quantile.py │ │ │ ├── replace.py │ │ │ ├── take.py │ │ │ └── transforms.py │ │ ├── arraylike.py │ │ ├── arrays │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _mixins.cpython-39.pyc │ │ │ │ ├── _ranges.cpython-39.pyc │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ ├── boolean.cpython-39.pyc │ │ │ │ ├── categorical.cpython-39.pyc │ │ │ │ ├── datetimelike.cpython-39.pyc │ │ │ │ ├── datetimes.cpython-39.pyc │ │ │ │ ├── floating.cpython-39.pyc │ │ │ │ ├── integer.cpython-39.pyc │ │ │ │ ├── interval.cpython-39.pyc │ │ │ │ ├── masked.cpython-39.pyc │ │ │ │ ├── numeric.cpython-39.pyc │ │ │ │ ├── numpy_.cpython-39.pyc │ │ │ │ ├── period.cpython-39.pyc │ │ │ │ ├── string_.cpython-39.pyc │ │ │ │ ├── string_arrow.cpython-39.pyc │ │ │ │ └── timedeltas.cpython-39.pyc │ │ │ ├── _mixins.py │ │ │ ├── _ranges.py │ │ │ ├── arrow │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _arrow_utils.cpython-39.pyc │ │ │ │ │ ├── array.cpython-39.pyc │ │ │ │ │ ├── dtype.cpython-39.pyc │ │ │ │ │ └── extension_types.cpython-39.pyc │ │ │ │ ├── _arrow_utils.py │ │ │ │ ├── array.py │ │ │ │ ├── dtype.py │ │ │ │ └── extension_types.py │ │ │ ├── base.py │ │ │ ├── boolean.py │ │ │ ├── categorical.py │ │ │ ├── datetimelike.py │ │ │ ├── datetimes.py │ │ │ ├── floating.py │ │ │ ├── integer.py │ │ │ ├── interval.py │ │ │ ├── masked.py │ │ │ ├── numeric.py │ │ │ ├── numpy_.py │ │ │ ├── period.py │ │ │ ├── sparse │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── accessor.cpython-39.pyc │ │ │ │ │ ├── array.cpython-39.pyc │ │ │ │ │ ├── dtype.cpython-39.pyc │ │ │ │ │ └── scipy_sparse.cpython-39.pyc │ │ │ │ ├── accessor.py │ │ │ │ ├── array.py │ │ │ │ ├── dtype.py │ │ │ │ └── scipy_sparse.py │ │ │ ├── string_.py │ │ │ ├── string_arrow.py │ │ │ └── timedeltas.py │ │ ├── base.py │ │ ├── common.py │ │ ├── computation │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── align.cpython-39.pyc │ │ │ │ ├── api.cpython-39.pyc │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ ├── common.cpython-39.pyc │ │ │ │ ├── engines.cpython-39.pyc │ │ │ │ ├── eval.cpython-39.pyc │ │ │ │ ├── expr.cpython-39.pyc │ │ │ │ ├── expressions.cpython-39.pyc │ │ │ │ ├── ops.cpython-39.pyc │ │ │ │ ├── parsing.cpython-39.pyc │ │ │ │ ├── pytables.cpython-39.pyc │ │ │ │ └── scope.cpython-39.pyc │ │ │ ├── align.py │ │ │ ├── api.py │ │ │ ├── check.py │ │ │ ├── common.py │ │ │ ├── engines.py │ │ │ ├── eval.py │ │ │ ├── expr.py │ │ │ ├── expressions.py │ │ │ ├── ops.py │ │ │ ├── parsing.py │ │ │ ├── pytables.py │ │ │ └── scope.py │ │ ├── config_init.py │ │ ├── construction.py │ │ ├── describe.py │ │ ├── dtypes │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── api.cpython-39.pyc │ │ │ │ ├── astype.cpython-39.pyc │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ ├── cast.cpython-39.pyc │ │ │ │ ├── common.cpython-39.pyc │ │ │ │ ├── concat.cpython-39.pyc │ │ │ │ ├── dtypes.cpython-39.pyc │ │ │ │ ├── generic.cpython-39.pyc │ │ │ │ ├── inference.cpython-39.pyc │ │ │ │ └── missing.cpython-39.pyc │ │ │ ├── api.py │ │ │ ├── astype.py │ │ │ ├── base.py │ │ │ ├── cast.py │ │ │ ├── common.py │ │ │ ├── concat.py │ │ │ ├── dtypes.py │ │ │ ├── generic.py │ │ │ ├── inference.py │ │ │ └── missing.py │ │ ├── flags.py │ │ ├── frame.py │ │ ├── generic.py │ │ ├── groupby │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ ├── categorical.cpython-39.pyc │ │ │ │ ├── generic.cpython-39.pyc │ │ │ │ ├── groupby.cpython-39.pyc │ │ │ │ ├── grouper.cpython-39.pyc │ │ │ │ ├── indexing.cpython-39.pyc │ │ │ │ ├── numba_.cpython-39.pyc │ │ │ │ └── ops.cpython-39.pyc │ │ │ ├── base.py │ │ │ ├── categorical.py │ │ │ ├── generic.py │ │ │ ├── groupby.py │ │ │ ├── grouper.py │ │ │ ├── indexing.py │ │ │ ├── numba_.py │ │ │ └── ops.py │ │ ├── index.py │ │ ├── indexers │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── objects.cpython-39.pyc │ │ │ │ └── utils.cpython-39.pyc │ │ │ ├── objects.py │ │ │ └── utils.py │ │ ├── indexes │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── accessors.cpython-39.pyc │ │ │ │ ├── api.cpython-39.pyc │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ ├── category.cpython-39.pyc │ │ │ │ ├── datetimelike.cpython-39.pyc │ │ │ │ ├── datetimes.cpython-39.pyc │ │ │ │ ├── extension.cpython-39.pyc │ │ │ │ ├── frozen.cpython-39.pyc │ │ │ │ ├── interval.cpython-39.pyc │ │ │ │ ├── multi.cpython-39.pyc │ │ │ │ ├── numeric.cpython-39.pyc │ │ │ │ ├── period.cpython-39.pyc │ │ │ │ ├── range.cpython-39.pyc │ │ │ │ └── timedeltas.cpython-39.pyc │ │ │ ├── accessors.py │ │ │ ├── api.py │ │ │ ├── base.py │ │ │ ├── category.py │ │ │ ├── datetimelike.py │ │ │ ├── datetimes.py │ │ │ ├── extension.py │ │ │ ├── frozen.py │ │ │ ├── interval.py │ │ │ ├── multi.py │ │ │ ├── numeric.py │ │ │ ├── period.py │ │ │ ├── range.py │ │ │ └── timedeltas.py │ │ ├── indexing.py │ │ ├── interchange │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── buffer.cpython-39.pyc │ │ │ │ ├── column.cpython-39.pyc │ │ │ │ ├── dataframe.cpython-39.pyc │ │ │ │ ├── dataframe_protocol.cpython-39.pyc │ │ │ │ ├── from_dataframe.cpython-39.pyc │ │ │ │ └── utils.cpython-39.pyc │ │ │ ├── buffer.py │ │ │ ├── column.py │ │ │ ├── dataframe.py │ │ │ ├── dataframe_protocol.py │ │ │ ├── from_dataframe.py │ │ │ └── utils.py │ │ ├── internals │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── api.cpython-39.pyc │ │ │ │ ├── array_manager.cpython-39.pyc │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ ├── blocks.cpython-39.pyc │ │ │ │ ├── concat.cpython-39.pyc │ │ │ │ ├── construction.cpython-39.pyc │ │ │ │ ├── managers.cpython-39.pyc │ │ │ │ └── ops.cpython-39.pyc │ │ │ ├── api.py │ │ │ ├── array_manager.py │ │ │ ├── base.py │ │ │ ├── blocks.py │ │ │ ├── concat.py │ │ │ ├── construction.py │ │ │ ├── managers.py │ │ │ └── ops.py │ │ ├── missing.py │ │ ├── nanops.py │ │ ├── ops │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── array_ops.cpython-39.pyc │ │ │ │ ├── common.cpython-39.pyc │ │ │ │ ├── dispatch.cpython-39.pyc │ │ │ │ ├── docstrings.cpython-39.pyc │ │ │ │ ├── invalid.cpython-39.pyc │ │ │ │ ├── mask_ops.cpython-39.pyc │ │ │ │ ├── methods.cpython-39.pyc │ │ │ │ └── missing.cpython-39.pyc │ │ │ ├── array_ops.py │ │ │ ├── common.py │ │ │ ├── dispatch.py │ │ │ ├── docstrings.py │ │ │ ├── invalid.py │ │ │ ├── mask_ops.py │ │ │ ├── methods.py │ │ │ └── missing.py │ │ ├── resample.py │ │ ├── reshape │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── api.cpython-39.pyc │ │ │ │ ├── concat.cpython-39.pyc │ │ │ │ ├── encoding.cpython-39.pyc │ │ │ │ ├── melt.cpython-39.pyc │ │ │ │ ├── merge.cpython-39.pyc │ │ │ │ ├── pivot.cpython-39.pyc │ │ │ │ ├── reshape.cpython-39.pyc │ │ │ │ ├── tile.cpython-39.pyc │ │ │ │ └── util.cpython-39.pyc │ │ │ ├── api.py │ │ │ ├── concat.py │ │ │ ├── encoding.py │ │ │ ├── melt.py │ │ │ ├── merge.py │ │ │ ├── pivot.py │ │ │ ├── reshape.py │ │ │ ├── tile.py │ │ │ └── util.py │ │ ├── roperator.py │ │ ├── sample.py │ │ ├── series.py │ │ ├── shared_docs.py │ │ ├── sorting.py │ │ ├── sparse │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── api.cpython-39.pyc │ │ │ └── api.py │ │ ├── strings │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── accessor.cpython-39.pyc │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ └── object_array.cpython-39.pyc │ │ │ ├── accessor.py │ │ │ ├── base.py │ │ │ └── object_array.py │ │ ├── tools │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── datetimes.cpython-39.pyc │ │ │ │ ├── numeric.cpython-39.pyc │ │ │ │ ├── timedeltas.cpython-39.pyc │ │ │ │ └── times.cpython-39.pyc │ │ │ ├── datetimes.py │ │ │ ├── numeric.py │ │ │ ├── timedeltas.py │ │ │ └── times.py │ │ ├── util │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── hashing.cpython-39.pyc │ │ │ │ └── numba_.cpython-39.pyc │ │ │ ├── hashing.py │ │ │ └── numba_.py │ │ └── window │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── common.cpython-39.pyc │ │ │ ├── doc.cpython-39.pyc │ │ │ ├── ewm.cpython-39.pyc │ │ │ ├── expanding.cpython-39.pyc │ │ │ ├── numba_.cpython-39.pyc │ │ │ ├── online.cpython-39.pyc │ │ │ └── rolling.cpython-39.pyc │ │ │ ├── common.py │ │ │ ├── doc.py │ │ │ ├── ewm.py │ │ │ ├── expanding.py │ │ │ ├── numba_.py │ │ │ ├── online.py │ │ │ └── rolling.py │ ├── errors │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── io │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── api.cpython-39.pyc │ │ │ ├── clipboards.cpython-39.pyc │ │ │ ├── common.cpython-39.pyc │ │ │ ├── date_converters.cpython-39.pyc │ │ │ ├── feather_format.cpython-39.pyc │ │ │ ├── gbq.cpython-39.pyc │ │ │ ├── html.cpython-39.pyc │ │ │ ├── orc.cpython-39.pyc │ │ │ ├── parquet.cpython-39.pyc │ │ │ ├── pickle.cpython-39.pyc │ │ │ ├── pytables.cpython-39.pyc │ │ │ ├── spss.cpython-39.pyc │ │ │ ├── sql.cpython-39.pyc │ │ │ ├── stata.cpython-39.pyc │ │ │ └── xml.cpython-39.pyc │ │ ├── api.py │ │ ├── clipboard │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── clipboards.py │ │ ├── common.py │ │ ├── date_converters.py │ │ ├── excel │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _base.cpython-39.pyc │ │ │ │ ├── _odfreader.cpython-39.pyc │ │ │ │ ├── _odswriter.cpython-39.pyc │ │ │ │ ├── _openpyxl.cpython-39.pyc │ │ │ │ ├── _pyxlsb.cpython-39.pyc │ │ │ │ ├── _util.cpython-39.pyc │ │ │ │ ├── _xlrd.cpython-39.pyc │ │ │ │ ├── _xlsxwriter.cpython-39.pyc │ │ │ │ └── _xlwt.cpython-39.pyc │ │ │ ├── _base.py │ │ │ ├── _odfreader.py │ │ │ ├── _odswriter.py │ │ │ ├── _openpyxl.py │ │ │ ├── _pyxlsb.py │ │ │ ├── _util.py │ │ │ ├── _xlrd.py │ │ │ ├── _xlsxwriter.py │ │ │ └── _xlwt.py │ │ ├── feather_format.py │ │ ├── formats │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _color_data.cpython-39.pyc │ │ │ │ ├── console.cpython-39.pyc │ │ │ │ ├── css.cpython-39.pyc │ │ │ │ ├── csvs.cpython-39.pyc │ │ │ │ ├── excel.cpython-39.pyc │ │ │ │ ├── format.cpython-39.pyc │ │ │ │ ├── html.cpython-39.pyc │ │ │ │ ├── info.cpython-39.pyc │ │ │ │ ├── latex.cpython-39.pyc │ │ │ │ ├── printing.cpython-39.pyc │ │ │ │ ├── string.cpython-39.pyc │ │ │ │ ├── style.cpython-39.pyc │ │ │ │ ├── style_render.cpython-39.pyc │ │ │ │ └── xml.cpython-39.pyc │ │ │ ├── _color_data.py │ │ │ ├── console.py │ │ │ ├── css.py │ │ │ ├── csvs.py │ │ │ ├── excel.py │ │ │ ├── format.py │ │ │ ├── html.py │ │ │ ├── info.py │ │ │ ├── latex.py │ │ │ ├── printing.py │ │ │ ├── string.py │ │ │ ├── style.py │ │ │ ├── style_render.py │ │ │ ├── templates │ │ │ │ ├── html.tpl │ │ │ │ ├── html_style.tpl │ │ │ │ ├── html_table.tpl │ │ │ │ ├── latex.tpl │ │ │ │ ├── latex_longtable.tpl │ │ │ │ ├── latex_table.tpl │ │ │ │ └── string.tpl │ │ │ └── xml.py │ │ ├── gbq.py │ │ ├── html.py │ │ ├── json │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _json.cpython-39.pyc │ │ │ │ ├── _normalize.cpython-39.pyc │ │ │ │ └── _table_schema.cpython-39.pyc │ │ │ ├── _json.py │ │ │ ├── _normalize.py │ │ │ └── _table_schema.py │ │ ├── orc.py │ │ ├── parquet.py │ │ ├── parsers │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── arrow_parser_wrapper.cpython-39.pyc │ │ │ │ ├── base_parser.cpython-39.pyc │ │ │ │ ├── c_parser_wrapper.cpython-39.pyc │ │ │ │ ├── python_parser.cpython-39.pyc │ │ │ │ └── readers.cpython-39.pyc │ │ │ ├── arrow_parser_wrapper.py │ │ │ ├── base_parser.py │ │ │ ├── c_parser_wrapper.py │ │ │ ├── python_parser.py │ │ │ └── readers.py │ │ ├── pickle.py │ │ ├── pytables.py │ │ ├── sas │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── sas7bdat.cpython-39.pyc │ │ │ │ ├── sas_constants.cpython-39.pyc │ │ │ │ ├── sas_xport.cpython-39.pyc │ │ │ │ └── sasreader.cpython-39.pyc │ │ │ ├── _sas.cp39-win_amd64.pyd │ │ │ ├── _sas.pyi │ │ │ ├── sas.pyx │ │ │ ├── sas7bdat.py │ │ │ ├── sas_constants.py │ │ │ ├── sas_xport.py │ │ │ └── sasreader.py │ │ ├── spss.py │ │ ├── sql.py │ │ ├── stata.py │ │ └── xml.py │ ├── plotting │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _core.cpython-39.pyc │ │ │ └── _misc.cpython-39.pyc │ │ ├── _core.py │ │ ├── _matplotlib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── boxplot.cpython-39.pyc │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ ├── converter.cpython-39.pyc │ │ │ │ ├── core.cpython-39.pyc │ │ │ │ ├── groupby.cpython-39.pyc │ │ │ │ ├── hist.cpython-39.pyc │ │ │ │ ├── misc.cpython-39.pyc │ │ │ │ ├── style.cpython-39.pyc │ │ │ │ ├── timeseries.cpython-39.pyc │ │ │ │ └── tools.cpython-39.pyc │ │ │ ├── boxplot.py │ │ │ ├── compat.py │ │ │ ├── converter.py │ │ │ ├── core.py │ │ │ ├── groupby.py │ │ │ ├── hist.py │ │ │ ├── misc.py │ │ │ ├── style.py │ │ │ ├── timeseries.py │ │ │ └── tools.py │ │ └── _misc.py │ ├── testing.py │ ├── tests │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── test_aggregation.cpython-39.pyc │ │ │ ├── test_algos.cpython-39.pyc │ │ │ ├── test_common.cpython-39.pyc │ │ │ ├── test_downstream.cpython-39.pyc │ │ │ ├── test_errors.cpython-39.pyc │ │ │ ├── test_expressions.cpython-39.pyc │ │ │ ├── test_flags.cpython-39.pyc │ │ │ ├── test_multilevel.cpython-39.pyc │ │ │ ├── test_nanops.cpython-39.pyc │ │ │ ├── test_optional_dependency.cpython-39.pyc │ │ │ ├── test_register_accessor.cpython-39.pyc │ │ │ ├── test_sorting.cpython-39.pyc │ │ │ └── test_take.cpython-39.pyc │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── test_api.cpython-39.pyc │ │ │ │ └── test_types.cpython-39.pyc │ │ │ ├── test_api.py │ │ │ └── test_types.py │ │ ├── apply │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── common.cpython-39.pyc │ │ │ │ ├── conftest.cpython-39.pyc │ │ │ │ ├── test_frame_apply.cpython-39.pyc │ │ │ │ ├── test_frame_apply_relabeling.cpython-39.pyc │ │ │ │ ├── test_frame_transform.cpython-39.pyc │ │ │ │ ├── test_invalid_arg.cpython-39.pyc │ │ │ │ ├── test_series_apply.cpython-39.pyc │ │ │ │ ├── test_series_apply_relabeling.cpython-39.pyc │ │ │ │ ├── test_series_transform.cpython-39.pyc │ │ │ │ └── test_str.cpython-39.pyc │ │ │ ├── common.py │ │ │ ├── conftest.py │ │ │ ├── test_frame_apply.py │ │ │ ├── test_frame_apply_relabeling.py │ │ │ ├── test_frame_transform.py │ │ │ ├── test_invalid_arg.py │ │ │ ├── test_series_apply.py │ │ │ ├── test_series_apply_relabeling.py │ │ │ ├── test_series_transform.py │ │ │ └── test_str.py │ │ ├── arithmetic │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── common.cpython-39.pyc │ │ │ │ ├── conftest.cpython-39.pyc │ │ │ │ ├── test_array_ops.cpython-39.pyc │ │ │ │ ├── test_categorical.cpython-39.pyc │ │ │ │ ├── test_datetime64.cpython-39.pyc │ │ │ │ ├── test_interval.cpython-39.pyc │ │ │ │ ├── test_numeric.cpython-39.pyc │ │ │ │ ├── test_object.cpython-39.pyc │ │ │ │ ├── test_period.cpython-39.pyc │ │ │ │ └── test_timedelta64.cpython-39.pyc │ │ │ ├── common.py │ │ │ ├── conftest.py │ │ │ ├── test_array_ops.py │ │ │ ├── test_categorical.py │ │ │ ├── test_datetime64.py │ │ │ ├── test_interval.py │ │ │ ├── test_numeric.py │ │ │ ├── test_object.py │ │ │ ├── test_period.py │ │ │ └── test_timedelta64.py │ │ ├── arrays │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── masked_shared.cpython-39.pyc │ │ │ │ ├── test_array.cpython-39.pyc │ │ │ │ ├── test_datetimelike.cpython-39.pyc │ │ │ │ ├── test_datetimes.cpython-39.pyc │ │ │ │ ├── test_ndarray_backed.cpython-39.pyc │ │ │ │ ├── test_period.cpython-39.pyc │ │ │ │ └── test_timedeltas.cpython-39.pyc │ │ │ ├── boolean │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_arithmetic.cpython-39.pyc │ │ │ │ │ ├── test_astype.cpython-39.pyc │ │ │ │ │ ├── test_comparison.cpython-39.pyc │ │ │ │ │ ├── test_construction.cpython-39.pyc │ │ │ │ │ ├── test_function.cpython-39.pyc │ │ │ │ │ ├── test_indexing.cpython-39.pyc │ │ │ │ │ ├── test_logical.cpython-39.pyc │ │ │ │ │ ├── test_ops.cpython-39.pyc │ │ │ │ │ ├── test_reduction.cpython-39.pyc │ │ │ │ │ └── test_repr.cpython-39.pyc │ │ │ │ ├── test_arithmetic.py │ │ │ │ ├── test_astype.py │ │ │ │ ├── test_comparison.py │ │ │ │ ├── test_construction.py │ │ │ │ ├── test_function.py │ │ │ │ ├── test_indexing.py │ │ │ │ ├── test_logical.py │ │ │ │ ├── test_ops.py │ │ │ │ ├── test_reduction.py │ │ │ │ └── test_repr.py │ │ │ ├── categorical │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── conftest.cpython-39.pyc │ │ │ │ │ ├── test_algos.cpython-39.pyc │ │ │ │ │ ├── test_analytics.cpython-39.pyc │ │ │ │ │ ├── test_api.cpython-39.pyc │ │ │ │ │ ├── test_astype.cpython-39.pyc │ │ │ │ │ ├── test_constructors.cpython-39.pyc │ │ │ │ │ ├── test_dtypes.cpython-39.pyc │ │ │ │ │ ├── test_indexing.cpython-39.pyc │ │ │ │ │ ├── test_missing.cpython-39.pyc │ │ │ │ │ ├── test_operators.cpython-39.pyc │ │ │ │ │ ├── test_replace.cpython-39.pyc │ │ │ │ │ ├── test_repr.cpython-39.pyc │ │ │ │ │ ├── test_sorting.cpython-39.pyc │ │ │ │ │ ├── test_subclass.cpython-39.pyc │ │ │ │ │ ├── test_take.cpython-39.pyc │ │ │ │ │ └── test_warnings.cpython-39.pyc │ │ │ │ ├── conftest.py │ │ │ │ ├── test_algos.py │ │ │ │ ├── test_analytics.py │ │ │ │ ├── test_api.py │ │ │ │ ├── test_astype.py │ │ │ │ ├── test_constructors.py │ │ │ │ ├── test_dtypes.py │ │ │ │ ├── test_indexing.py │ │ │ │ ├── test_missing.py │ │ │ │ ├── test_operators.py │ │ │ │ ├── test_replace.py │ │ │ │ ├── test_repr.py │ │ │ │ ├── test_sorting.py │ │ │ │ ├── test_subclass.py │ │ │ │ ├── test_take.py │ │ │ │ └── test_warnings.py │ │ │ ├── datetimes │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_constructors.cpython-39.pyc │ │ │ │ │ └── test_reductions.cpython-39.pyc │ │ │ │ ├── test_constructors.py │ │ │ │ └── test_reductions.py │ │ │ ├── floating │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── conftest.cpython-39.pyc │ │ │ │ │ ├── test_arithmetic.cpython-39.pyc │ │ │ │ │ ├── test_astype.cpython-39.pyc │ │ │ │ │ ├── test_comparison.cpython-39.pyc │ │ │ │ │ ├── test_concat.cpython-39.pyc │ │ │ │ │ ├── test_construction.cpython-39.pyc │ │ │ │ │ ├── test_function.cpython-39.pyc │ │ │ │ │ ├── test_repr.cpython-39.pyc │ │ │ │ │ └── test_to_numpy.cpython-39.pyc │ │ │ │ ├── conftest.py │ │ │ │ ├── test_arithmetic.py │ │ │ │ ├── test_astype.py │ │ │ │ ├── test_comparison.py │ │ │ │ ├── test_concat.py │ │ │ │ ├── test_construction.py │ │ │ │ ├── test_function.py │ │ │ │ ├── test_repr.py │ │ │ │ └── test_to_numpy.py │ │ │ ├── integer │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── conftest.cpython-39.pyc │ │ │ │ │ ├── test_arithmetic.cpython-39.pyc │ │ │ │ │ ├── test_comparison.cpython-39.pyc │ │ │ │ │ ├── test_concat.cpython-39.pyc │ │ │ │ │ ├── test_construction.cpython-39.pyc │ │ │ │ │ ├── test_dtypes.cpython-39.pyc │ │ │ │ │ ├── test_function.cpython-39.pyc │ │ │ │ │ ├── test_indexing.cpython-39.pyc │ │ │ │ │ └── test_repr.cpython-39.pyc │ │ │ │ ├── conftest.py │ │ │ │ ├── test_arithmetic.py │ │ │ │ ├── test_comparison.py │ │ │ │ ├── test_concat.py │ │ │ │ ├── test_construction.py │ │ │ │ ├── test_dtypes.py │ │ │ │ ├── test_function.py │ │ │ │ ├── test_indexing.py │ │ │ │ └── test_repr.py │ │ │ ├── interval │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_astype.cpython-39.pyc │ │ │ │ │ ├── test_interval.cpython-39.pyc │ │ │ │ │ └── test_ops.cpython-39.pyc │ │ │ │ ├── test_astype.py │ │ │ │ ├── test_interval.py │ │ │ │ └── test_ops.py │ │ │ ├── masked │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_arithmetic.cpython-39.pyc │ │ │ │ │ ├── test_arrow_compat.cpython-39.pyc │ │ │ │ │ ├── test_function.cpython-39.pyc │ │ │ │ │ └── test_indexing.cpython-39.pyc │ │ │ │ ├── test_arithmetic.py │ │ │ │ ├── test_arrow_compat.py │ │ │ │ ├── test_function.py │ │ │ │ └── test_indexing.py │ │ │ ├── masked_shared.py │ │ │ ├── numpy_ │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_indexing.cpython-39.pyc │ │ │ │ │ └── test_numpy.cpython-39.pyc │ │ │ │ ├── test_indexing.py │ │ │ │ └── test_numpy.py │ │ │ ├── period │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_arrow_compat.cpython-39.pyc │ │ │ │ │ ├── test_astype.cpython-39.pyc │ │ │ │ │ ├── test_constructors.cpython-39.pyc │ │ │ │ │ └── test_reductions.cpython-39.pyc │ │ │ │ ├── test_arrow_compat.py │ │ │ │ ├── test_astype.py │ │ │ │ ├── test_constructors.py │ │ │ │ └── test_reductions.py │ │ │ ├── sparse │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_accessor.cpython-39.pyc │ │ │ │ │ ├── test_arithmetics.cpython-39.pyc │ │ │ │ │ ├── test_array.cpython-39.pyc │ │ │ │ │ ├── test_astype.cpython-39.pyc │ │ │ │ │ ├── test_combine_concat.cpython-39.pyc │ │ │ │ │ ├── test_constructors.cpython-39.pyc │ │ │ │ │ ├── test_dtype.cpython-39.pyc │ │ │ │ │ ├── test_indexing.cpython-39.pyc │ │ │ │ │ ├── test_libsparse.cpython-39.pyc │ │ │ │ │ ├── test_reductions.cpython-39.pyc │ │ │ │ │ └── test_unary.cpython-39.pyc │ │ │ │ ├── test_accessor.py │ │ │ │ ├── test_arithmetics.py │ │ │ │ ├── test_array.py │ │ │ │ ├── test_astype.py │ │ │ │ ├── test_combine_concat.py │ │ │ │ ├── test_constructors.py │ │ │ │ ├── test_dtype.py │ │ │ │ ├── test_indexing.py │ │ │ │ ├── test_libsparse.py │ │ │ │ ├── test_reductions.py │ │ │ │ └── test_unary.py │ │ │ ├── string_ │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_string.cpython-39.pyc │ │ │ │ │ └── test_string_arrow.cpython-39.pyc │ │ │ │ ├── test_string.py │ │ │ │ └── test_string_arrow.py │ │ │ ├── test_array.py │ │ │ ├── test_datetimelike.py │ │ │ ├── test_datetimes.py │ │ │ ├── test_ndarray_backed.py │ │ │ ├── test_period.py │ │ │ ├── test_timedeltas.py │ │ │ └── timedeltas │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── test_constructors.cpython-39.pyc │ │ │ │ └── test_reductions.cpython-39.pyc │ │ │ │ ├── test_constructors.py │ │ │ │ └── test_reductions.py │ │ ├── base │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── common.cpython-39.pyc │ │ │ │ ├── test_constructors.cpython-39.pyc │ │ │ │ ├── test_conversion.cpython-39.pyc │ │ │ │ ├── test_fillna.cpython-39.pyc │ │ │ │ ├── test_misc.cpython-39.pyc │ │ │ │ ├── test_transpose.cpython-39.pyc │ │ │ │ ├── test_unique.cpython-39.pyc │ │ │ │ └── test_value_counts.cpython-39.pyc │ │ │ ├── common.py │ │ │ ├── test_constructors.py │ │ │ ├── test_conversion.py │ │ │ ├── test_fillna.py │ │ │ ├── test_misc.py │ │ │ ├── test_transpose.py │ │ │ ├── test_unique.py │ │ │ └── test_value_counts.py │ │ ├── computation │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── test_compat.cpython-39.pyc │ │ │ │ └── test_eval.cpython-39.pyc │ │ │ ├── test_compat.py │ │ │ └── test_eval.py │ │ ├── config │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── test_config.cpython-39.pyc │ │ │ │ └── test_localization.cpython-39.pyc │ │ │ ├── test_config.py │ │ │ └── test_localization.py │ │ ├── construction │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── test_extract_array.cpython-39.pyc │ │ │ └── test_extract_array.py │ │ ├── copy_view │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── test_indexing.cpython-39.pyc │ │ │ │ ├── test_internals.cpython-39.pyc │ │ │ │ ├── test_methods.cpython-39.pyc │ │ │ │ ├── test_setitem.cpython-39.pyc │ │ │ │ └── util.cpython-39.pyc │ │ │ ├── test_indexing.py │ │ │ ├── test_internals.py │ │ │ ├── test_methods.py │ │ │ ├── test_setitem.py │ │ │ └── util.py │ │ ├── dtypes │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── test_common.cpython-39.pyc │ │ │ │ ├── test_concat.cpython-39.pyc │ │ │ │ ├── test_dtypes.cpython-39.pyc │ │ │ │ ├── test_generic.cpython-39.pyc │ │ │ │ ├── test_inference.cpython-39.pyc │ │ │ │ └── test_missing.cpython-39.pyc │ │ │ ├── cast │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_can_hold_element.cpython-39.pyc │ │ │ │ │ ├── test_construct_from_scalar.cpython-39.pyc │ │ │ │ │ ├── test_construct_ndarray.cpython-39.pyc │ │ │ │ │ ├── test_construct_object_arr.cpython-39.pyc │ │ │ │ │ ├── test_dict_compat.cpython-39.pyc │ │ │ │ │ ├── test_downcast.cpython-39.pyc │ │ │ │ │ ├── test_find_common_type.cpython-39.pyc │ │ │ │ │ ├── test_infer_datetimelike.cpython-39.pyc │ │ │ │ │ ├── test_infer_dtype.cpython-39.pyc │ │ │ │ │ ├── test_maybe_box_native.cpython-39.pyc │ │ │ │ │ └── test_promote.cpython-39.pyc │ │ │ │ ├── test_can_hold_element.py │ │ │ │ ├── test_construct_from_scalar.py │ │ │ │ ├── test_construct_ndarray.py │ │ │ │ ├── test_construct_object_arr.py │ │ │ │ ├── test_dict_compat.py │ │ │ │ ├── test_downcast.py │ │ │ │ ├── test_find_common_type.py │ │ │ │ ├── test_infer_datetimelike.py │ │ │ │ ├── test_infer_dtype.py │ │ │ │ ├── test_maybe_box_native.py │ │ │ │ └── test_promote.py │ │ │ ├── test_common.py │ │ │ ├── test_concat.py │ │ │ ├── test_dtypes.py │ │ │ ├── test_generic.py │ │ │ ├── test_inference.py │ │ │ └── test_missing.py │ │ ├── extension │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── conftest.cpython-39.pyc │ │ │ │ ├── test_arrow.cpython-39.pyc │ │ │ │ ├── test_boolean.cpython-39.pyc │ │ │ │ ├── test_categorical.cpython-39.pyc │ │ │ │ ├── test_common.cpython-39.pyc │ │ │ │ ├── test_datetime.cpython-39.pyc │ │ │ │ ├── test_extension.cpython-39.pyc │ │ │ │ ├── test_external_block.cpython-39.pyc │ │ │ │ ├── test_floating.cpython-39.pyc │ │ │ │ ├── test_integer.cpython-39.pyc │ │ │ │ ├── test_interval.cpython-39.pyc │ │ │ │ ├── test_numpy.cpython-39.pyc │ │ │ │ ├── test_period.cpython-39.pyc │ │ │ │ ├── test_sparse.cpython-39.pyc │ │ │ │ └── test_string.cpython-39.pyc │ │ │ ├── array_with_attr │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── array.cpython-39.pyc │ │ │ │ │ └── test_array_with_attr.cpython-39.pyc │ │ │ │ ├── array.py │ │ │ │ └── test_array_with_attr.py │ │ │ ├── arrow │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── arrays.cpython-39.pyc │ │ │ │ │ ├── test_bool.cpython-39.pyc │ │ │ │ │ ├── test_string.cpython-39.pyc │ │ │ │ │ └── test_timestamp.cpython-39.pyc │ │ │ │ ├── arrays.py │ │ │ │ ├── test_bool.py │ │ │ │ ├── test_string.py │ │ │ │ └── test_timestamp.py │ │ │ ├── base │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ ├── casting.cpython-39.pyc │ │ │ │ │ ├── constructors.cpython-39.pyc │ │ │ │ │ ├── dim2.cpython-39.pyc │ │ │ │ │ ├── dtype.cpython-39.pyc │ │ │ │ │ ├── getitem.cpython-39.pyc │ │ │ │ │ ├── groupby.cpython-39.pyc │ │ │ │ │ ├── index.cpython-39.pyc │ │ │ │ │ ├── interface.cpython-39.pyc │ │ │ │ │ ├── io.cpython-39.pyc │ │ │ │ │ ├── methods.cpython-39.pyc │ │ │ │ │ ├── missing.cpython-39.pyc │ │ │ │ │ ├── ops.cpython-39.pyc │ │ │ │ │ ├── printing.cpython-39.pyc │ │ │ │ │ ├── reduce.cpython-39.pyc │ │ │ │ │ ├── reshaping.cpython-39.pyc │ │ │ │ │ └── setitem.cpython-39.pyc │ │ │ │ ├── base.py │ │ │ │ ├── casting.py │ │ │ │ ├── constructors.py │ │ │ │ ├── dim2.py │ │ │ │ ├── dtype.py │ │ │ │ ├── getitem.py │ │ │ │ ├── groupby.py │ │ │ │ ├── index.py │ │ │ │ ├── interface.py │ │ │ │ ├── io.py │ │ │ │ ├── methods.py │ │ │ │ ├── missing.py │ │ │ │ ├── ops.py │ │ │ │ ├── printing.py │ │ │ │ ├── reduce.py │ │ │ │ ├── reshaping.py │ │ │ │ └── setitem.py │ │ │ ├── conftest.py │ │ │ ├── date │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── array.cpython-39.pyc │ │ │ │ └── array.py │ │ │ ├── decimal │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── array.cpython-39.pyc │ │ │ │ │ └── test_decimal.cpython-39.pyc │ │ │ │ ├── array.py │ │ │ │ └── test_decimal.py │ │ │ ├── json │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── array.cpython-39.pyc │ │ │ │ │ └── test_json.cpython-39.pyc │ │ │ │ ├── array.py │ │ │ │ └── test_json.py │ │ │ ├── list │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── array.cpython-39.pyc │ │ │ │ │ └── test_list.cpython-39.pyc │ │ │ │ ├── array.py │ │ │ │ └── test_list.py │ │ │ ├── test_arrow.py │ │ │ ├── test_boolean.py │ │ │ ├── test_categorical.py │ │ │ ├── test_common.py │ │ │ ├── test_datetime.py │ │ │ ├── test_extension.py │ │ │ ├── test_external_block.py │ │ │ ├── test_floating.py │ │ │ ├── test_integer.py │ │ │ ├── test_interval.py │ │ │ ├── test_numpy.py │ │ │ ├── test_period.py │ │ │ ├── test_sparse.py │ │ │ └── test_string.py │ │ ├── frame │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── common.cpython-39.pyc │ │ │ │ ├── conftest.cpython-39.pyc │ │ │ │ ├── test_alter_axes.cpython-39.pyc │ │ │ │ ├── test_api.cpython-39.pyc │ │ │ │ ├── test_arithmetic.cpython-39.pyc │ │ │ │ ├── test_block_internals.cpython-39.pyc │ │ │ │ ├── test_constructors.cpython-39.pyc │ │ │ │ ├── test_cumulative.cpython-39.pyc │ │ │ │ ├── test_iteration.cpython-39.pyc │ │ │ │ ├── test_logical_ops.cpython-39.pyc │ │ │ │ ├── test_nonunique_indexes.cpython-39.pyc │ │ │ │ ├── test_npfuncs.cpython-39.pyc │ │ │ │ ├── test_query_eval.cpython-39.pyc │ │ │ │ ├── test_reductions.cpython-39.pyc │ │ │ │ ├── test_repr_info.cpython-39.pyc │ │ │ │ ├── test_stack_unstack.cpython-39.pyc │ │ │ │ ├── test_subclass.cpython-39.pyc │ │ │ │ ├── test_ufunc.cpython-39.pyc │ │ │ │ ├── test_unary.cpython-39.pyc │ │ │ │ └── test_validate.cpython-39.pyc │ │ │ ├── common.py │ │ │ ├── conftest.py │ │ │ ├── constructors │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_from_dict.cpython-39.pyc │ │ │ │ │ └── test_from_records.cpython-39.pyc │ │ │ │ ├── test_from_dict.py │ │ │ │ └── test_from_records.py │ │ │ ├── indexing │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_coercion.cpython-39.pyc │ │ │ │ │ ├── test_delitem.cpython-39.pyc │ │ │ │ │ ├── test_get.cpython-39.pyc │ │ │ │ │ ├── test_get_value.cpython-39.pyc │ │ │ │ │ ├── test_getitem.cpython-39.pyc │ │ │ │ │ ├── test_indexing.cpython-39.pyc │ │ │ │ │ ├── test_insert.cpython-39.pyc │ │ │ │ │ ├── test_lookup.cpython-39.pyc │ │ │ │ │ ├── test_mask.cpython-39.pyc │ │ │ │ │ ├── test_set_value.cpython-39.pyc │ │ │ │ │ ├── test_setitem.cpython-39.pyc │ │ │ │ │ ├── test_take.cpython-39.pyc │ │ │ │ │ ├── test_where.cpython-39.pyc │ │ │ │ │ └── test_xs.cpython-39.pyc │ │ │ │ ├── test_coercion.py │ │ │ │ ├── test_delitem.py │ │ │ │ ├── test_get.py │ │ │ │ ├── test_get_value.py │ │ │ │ ├── test_getitem.py │ │ │ │ ├── test_indexing.py │ │ │ │ ├── test_insert.py │ │ │ │ ├── test_lookup.py │ │ │ │ ├── test_mask.py │ │ │ │ ├── test_set_value.py │ │ │ │ ├── test_setitem.py │ │ │ │ ├── test_take.py │ │ │ │ ├── test_where.py │ │ │ │ └── test_xs.py │ │ │ ├── methods │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_add_prefix_suffix.cpython-39.pyc │ │ │ │ │ ├── test_align.cpython-39.pyc │ │ │ │ │ ├── test_append.cpython-39.pyc │ │ │ │ │ ├── test_asfreq.cpython-39.pyc │ │ │ │ │ ├── test_asof.cpython-39.pyc │ │ │ │ │ ├── test_assign.cpython-39.pyc │ │ │ │ │ ├── test_astype.cpython-39.pyc │ │ │ │ │ ├── test_at_time.cpython-39.pyc │ │ │ │ │ ├── test_between_time.cpython-39.pyc │ │ │ │ │ ├── test_clip.cpython-39.pyc │ │ │ │ │ ├── test_combine.cpython-39.pyc │ │ │ │ │ ├── test_combine_first.cpython-39.pyc │ │ │ │ │ ├── test_compare.cpython-39.pyc │ │ │ │ │ ├── test_convert.cpython-39.pyc │ │ │ │ │ ├── test_convert_dtypes.cpython-39.pyc │ │ │ │ │ ├── test_copy.cpython-39.pyc │ │ │ │ │ ├── test_count.cpython-39.pyc │ │ │ │ │ ├── test_count_with_level_deprecated.cpython-39.pyc │ │ │ │ │ ├── test_cov_corr.cpython-39.pyc │ │ │ │ │ ├── test_describe.cpython-39.pyc │ │ │ │ │ ├── test_diff.cpython-39.pyc │ │ │ │ │ ├── test_dot.cpython-39.pyc │ │ │ │ │ ├── test_drop.cpython-39.pyc │ │ │ │ │ ├── test_drop_duplicates.cpython-39.pyc │ │ │ │ │ ├── test_droplevel.cpython-39.pyc │ │ │ │ │ ├── test_dropna.cpython-39.pyc │ │ │ │ │ ├── test_dtypes.cpython-39.pyc │ │ │ │ │ ├── test_duplicated.cpython-39.pyc │ │ │ │ │ ├── test_equals.cpython-39.pyc │ │ │ │ │ ├── test_explode.cpython-39.pyc │ │ │ │ │ ├── test_fillna.cpython-39.pyc │ │ │ │ │ ├── test_filter.cpython-39.pyc │ │ │ │ │ ├── test_first_and_last.cpython-39.pyc │ │ │ │ │ ├── test_first_valid_index.cpython-39.pyc │ │ │ │ │ ├── test_get_numeric_data.cpython-39.pyc │ │ │ │ │ ├── test_head_tail.cpython-39.pyc │ │ │ │ │ ├── test_infer_objects.cpython-39.pyc │ │ │ │ │ ├── test_interpolate.cpython-39.pyc │ │ │ │ │ ├── test_is_homogeneous_dtype.cpython-39.pyc │ │ │ │ │ ├── test_isin.cpython-39.pyc │ │ │ │ │ ├── test_join.cpython-39.pyc │ │ │ │ │ ├── test_matmul.cpython-39.pyc │ │ │ │ │ ├── test_nlargest.cpython-39.pyc │ │ │ │ │ ├── test_pct_change.cpython-39.pyc │ │ │ │ │ ├── test_pipe.cpython-39.pyc │ │ │ │ │ ├── test_pop.cpython-39.pyc │ │ │ │ │ ├── test_quantile.cpython-39.pyc │ │ │ │ │ ├── test_rank.cpython-39.pyc │ │ │ │ │ ├── test_reindex.cpython-39.pyc │ │ │ │ │ ├── test_reindex_like.cpython-39.pyc │ │ │ │ │ ├── test_rename.cpython-39.pyc │ │ │ │ │ ├── test_rename_axis.cpython-39.pyc │ │ │ │ │ ├── test_reorder_levels.cpython-39.pyc │ │ │ │ │ ├── test_replace.cpython-39.pyc │ │ │ │ │ ├── test_reset_index.cpython-39.pyc │ │ │ │ │ ├── test_round.cpython-39.pyc │ │ │ │ │ ├── test_sample.cpython-39.pyc │ │ │ │ │ ├── test_select_dtypes.cpython-39.pyc │ │ │ │ │ ├── test_set_axis.cpython-39.pyc │ │ │ │ │ ├── test_set_index.cpython-39.pyc │ │ │ │ │ ├── test_shift.cpython-39.pyc │ │ │ │ │ ├── test_sort_index.cpython-39.pyc │ │ │ │ │ ├── test_sort_values.cpython-39.pyc │ │ │ │ │ ├── test_swapaxes.cpython-39.pyc │ │ │ │ │ ├── test_swaplevel.cpython-39.pyc │ │ │ │ │ ├── test_to_csv.cpython-39.pyc │ │ │ │ │ ├── test_to_dict.cpython-39.pyc │ │ │ │ │ ├── test_to_dict_of_blocks.cpython-39.pyc │ │ │ │ │ ├── test_to_numpy.cpython-39.pyc │ │ │ │ │ ├── test_to_period.cpython-39.pyc │ │ │ │ │ ├── test_to_records.cpython-39.pyc │ │ │ │ │ ├── test_to_timestamp.cpython-39.pyc │ │ │ │ │ ├── test_transpose.cpython-39.pyc │ │ │ │ │ ├── test_truncate.cpython-39.pyc │ │ │ │ │ ├── test_tz_convert.cpython-39.pyc │ │ │ │ │ ├── test_tz_localize.cpython-39.pyc │ │ │ │ │ ├── test_update.cpython-39.pyc │ │ │ │ │ ├── test_value_counts.cpython-39.pyc │ │ │ │ │ └── test_values.cpython-39.pyc │ │ │ │ ├── test_add_prefix_suffix.py │ │ │ │ ├── test_align.py │ │ │ │ ├── test_append.py │ │ │ │ ├── test_asfreq.py │ │ │ │ ├── test_asof.py │ │ │ │ ├── test_assign.py │ │ │ │ ├── test_astype.py │ │ │ │ ├── test_at_time.py │ │ │ │ ├── test_between_time.py │ │ │ │ ├── test_clip.py │ │ │ │ ├── test_combine.py │ │ │ │ ├── test_combine_first.py │ │ │ │ ├── test_compare.py │ │ │ │ ├── test_convert.py │ │ │ │ ├── test_convert_dtypes.py │ │ │ │ ├── test_copy.py │ │ │ │ ├── test_count.py │ │ │ │ ├── test_count_with_level_deprecated.py │ │ │ │ ├── test_cov_corr.py │ │ │ │ ├── test_describe.py │ │ │ │ ├── test_diff.py │ │ │ │ ├── test_dot.py │ │ │ │ ├── test_drop.py │ │ │ │ ├── test_drop_duplicates.py │ │ │ │ ├── test_droplevel.py │ │ │ │ ├── test_dropna.py │ │ │ │ ├── test_dtypes.py │ │ │ │ ├── test_duplicated.py │ │ │ │ ├── test_equals.py │ │ │ │ ├── test_explode.py │ │ │ │ ├── test_fillna.py │ │ │ │ ├── test_filter.py │ │ │ │ ├── test_first_and_last.py │ │ │ │ ├── test_first_valid_index.py │ │ │ │ ├── test_get_numeric_data.py │ │ │ │ ├── test_head_tail.py │ │ │ │ ├── test_infer_objects.py │ │ │ │ ├── test_interpolate.py │ │ │ │ ├── test_is_homogeneous_dtype.py │ │ │ │ ├── test_isin.py │ │ │ │ ├── test_join.py │ │ │ │ ├── test_matmul.py │ │ │ │ ├── test_nlargest.py │ │ │ │ ├── test_pct_change.py │ │ │ │ ├── test_pipe.py │ │ │ │ ├── test_pop.py │ │ │ │ ├── test_quantile.py │ │ │ │ ├── test_rank.py │ │ │ │ ├── test_reindex.py │ │ │ │ ├── test_reindex_like.py │ │ │ │ ├── test_rename.py │ │ │ │ ├── test_rename_axis.py │ │ │ │ ├── test_reorder_levels.py │ │ │ │ ├── test_replace.py │ │ │ │ ├── test_reset_index.py │ │ │ │ ├── test_round.py │ │ │ │ ├── test_sample.py │ │ │ │ ├── test_select_dtypes.py │ │ │ │ ├── test_set_axis.py │ │ │ │ ├── test_set_index.py │ │ │ │ ├── test_shift.py │ │ │ │ ├── test_sort_index.py │ │ │ │ ├── test_sort_values.py │ │ │ │ ├── test_swapaxes.py │ │ │ │ ├── test_swaplevel.py │ │ │ │ ├── test_to_csv.py │ │ │ │ ├── test_to_dict.py │ │ │ │ ├── test_to_dict_of_blocks.py │ │ │ │ ├── test_to_numpy.py │ │ │ │ ├── test_to_period.py │ │ │ │ ├── test_to_records.py │ │ │ │ ├── test_to_timestamp.py │ │ │ │ ├── test_transpose.py │ │ │ │ ├── test_truncate.py │ │ │ │ ├── test_tz_convert.py │ │ │ │ ├── test_tz_localize.py │ │ │ │ ├── test_update.py │ │ │ │ ├── test_value_counts.py │ │ │ │ └── test_values.py │ │ │ ├── test_alter_axes.py │ │ │ ├── test_api.py │ │ │ ├── test_arithmetic.py │ │ │ ├── test_block_internals.py │ │ │ ├── test_constructors.py │ │ │ ├── test_cumulative.py │ │ │ ├── test_iteration.py │ │ │ ├── test_logical_ops.py │ │ │ ├── test_nonunique_indexes.py │ │ │ ├── test_npfuncs.py │ │ │ ├── test_query_eval.py │ │ │ ├── test_reductions.py │ │ │ ├── test_repr_info.py │ │ │ ├── test_stack_unstack.py │ │ │ ├── test_subclass.py │ │ │ ├── test_ufunc.py │ │ │ ├── test_unary.py │ │ │ └── test_validate.py │ │ ├── generic │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── test_duplicate_labels.cpython-39.pyc │ │ │ │ ├── test_finalize.cpython-39.pyc │ │ │ │ ├── test_frame.cpython-39.pyc │ │ │ │ ├── test_generic.cpython-39.pyc │ │ │ │ ├── test_label_or_level_utils.cpython-39.pyc │ │ │ │ ├── test_series.cpython-39.pyc │ │ │ │ └── test_to_xarray.cpython-39.pyc │ │ │ ├── test_duplicate_labels.py │ │ │ ├── test_finalize.py │ │ │ ├── test_frame.py │ │ │ ├── test_generic.py │ │ │ ├── test_label_or_level_utils.py │ │ │ ├── test_series.py │ │ │ └── test_to_xarray.py │ │ ├── groupby │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── conftest.cpython-39.pyc │ │ │ │ ├── test_allowlist.cpython-39.pyc │ │ │ │ ├── test_any_all.cpython-39.pyc │ │ │ │ ├── test_apply.cpython-39.pyc │ │ │ │ ├── test_apply_mutate.cpython-39.pyc │ │ │ │ ├── test_bin_groupby.cpython-39.pyc │ │ │ │ ├── test_categorical.cpython-39.pyc │ │ │ │ ├── test_counting.cpython-39.pyc │ │ │ │ ├── test_filters.cpython-39.pyc │ │ │ │ ├── test_frame_value_counts.cpython-39.pyc │ │ │ │ ├── test_function.cpython-39.pyc │ │ │ │ ├── test_groupby.cpython-39.pyc │ │ │ │ ├── test_groupby_dropna.cpython-39.pyc │ │ │ │ ├── test_groupby_shift_diff.cpython-39.pyc │ │ │ │ ├── test_groupby_subclass.cpython-39.pyc │ │ │ │ ├── test_grouping.cpython-39.pyc │ │ │ │ ├── test_index_as_string.cpython-39.pyc │ │ │ │ ├── test_indexing.cpython-39.pyc │ │ │ │ ├── test_libgroupby.cpython-39.pyc │ │ │ │ ├── test_min_max.cpython-39.pyc │ │ │ │ ├── test_missing.cpython-39.pyc │ │ │ │ ├── test_nth.cpython-39.pyc │ │ │ │ ├── test_numba.cpython-39.pyc │ │ │ │ ├── test_nunique.cpython-39.pyc │ │ │ │ ├── test_pipe.cpython-39.pyc │ │ │ │ ├── test_quantile.cpython-39.pyc │ │ │ │ ├── test_rank.cpython-39.pyc │ │ │ │ ├── test_sample.cpython-39.pyc │ │ │ │ ├── test_size.cpython-39.pyc │ │ │ │ ├── test_timegrouper.cpython-39.pyc │ │ │ │ └── test_value_counts.cpython-39.pyc │ │ │ ├── aggregate │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_aggregate.cpython-39.pyc │ │ │ │ │ ├── test_cython.cpython-39.pyc │ │ │ │ │ ├── test_numba.cpython-39.pyc │ │ │ │ │ └── test_other.cpython-39.pyc │ │ │ │ ├── test_aggregate.py │ │ │ │ ├── test_cython.py │ │ │ │ ├── test_numba.py │ │ │ │ └── test_other.py │ │ │ ├── conftest.py │ │ │ ├── test_allowlist.py │ │ │ ├── test_any_all.py │ │ │ ├── test_apply.py │ │ │ ├── test_apply_mutate.py │ │ │ ├── test_bin_groupby.py │ │ │ ├── test_categorical.py │ │ │ ├── test_counting.py │ │ │ ├── test_filters.py │ │ │ ├── test_frame_value_counts.py │ │ │ ├── test_function.py │ │ │ ├── test_groupby.py │ │ │ ├── test_groupby_dropna.py │ │ │ ├── test_groupby_shift_diff.py │ │ │ ├── test_groupby_subclass.py │ │ │ ├── test_grouping.py │ │ │ ├── test_index_as_string.py │ │ │ ├── test_indexing.py │ │ │ ├── test_libgroupby.py │ │ │ ├── test_min_max.py │ │ │ ├── test_missing.py │ │ │ ├── test_nth.py │ │ │ ├── test_numba.py │ │ │ ├── test_nunique.py │ │ │ ├── test_pipe.py │ │ │ ├── test_quantile.py │ │ │ ├── test_rank.py │ │ │ ├── test_sample.py │ │ │ ├── test_size.py │ │ │ ├── test_timegrouper.py │ │ │ ├── test_value_counts.py │ │ │ └── transform │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── test_numba.cpython-39.pyc │ │ │ │ └── test_transform.cpython-39.pyc │ │ │ │ ├── test_numba.py │ │ │ │ └── test_transform.py │ │ ├── indexes │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── common.cpython-39.pyc │ │ │ │ ├── conftest.cpython-39.pyc │ │ │ │ ├── datetimelike.cpython-39.pyc │ │ │ │ ├── test_any_index.cpython-39.pyc │ │ │ │ ├── test_base.cpython-39.pyc │ │ │ │ ├── test_common.cpython-39.pyc │ │ │ │ ├── test_engines.cpython-39.pyc │ │ │ │ ├── test_frozen.cpython-39.pyc │ │ │ │ ├── test_index_new.cpython-39.pyc │ │ │ │ ├── test_indexing.cpython-39.pyc │ │ │ │ ├── test_numpy_compat.cpython-39.pyc │ │ │ │ ├── test_setops.cpython-39.pyc │ │ │ │ └── test_subclass.cpython-39.pyc │ │ │ ├── base_class │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_constructors.cpython-39.pyc │ │ │ │ │ ├── test_formats.cpython-39.pyc │ │ │ │ │ ├── test_indexing.cpython-39.pyc │ │ │ │ │ ├── test_pickle.cpython-39.pyc │ │ │ │ │ ├── test_reshape.cpython-39.pyc │ │ │ │ │ ├── test_setops.cpython-39.pyc │ │ │ │ │ └── test_where.cpython-39.pyc │ │ │ │ ├── test_constructors.py │ │ │ │ ├── test_formats.py │ │ │ │ ├── test_indexing.py │ │ │ │ ├── test_pickle.py │ │ │ │ ├── test_reshape.py │ │ │ │ ├── test_setops.py │ │ │ │ └── test_where.py │ │ │ ├── categorical │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_append.cpython-39.pyc │ │ │ │ │ ├── test_astype.cpython-39.pyc │ │ │ │ │ ├── test_category.cpython-39.pyc │ │ │ │ │ ├── test_constructors.cpython-39.pyc │ │ │ │ │ ├── test_equals.cpython-39.pyc │ │ │ │ │ ├── test_fillna.cpython-39.pyc │ │ │ │ │ ├── test_formats.cpython-39.pyc │ │ │ │ │ ├── test_indexing.cpython-39.pyc │ │ │ │ │ ├── test_map.cpython-39.pyc │ │ │ │ │ └── test_reindex.cpython-39.pyc │ │ │ │ ├── test_append.py │ │ │ │ ├── test_astype.py │ │ │ │ ├── test_category.py │ │ │ │ ├── test_constructors.py │ │ │ │ ├── test_equals.py │ │ │ │ ├── test_fillna.py │ │ │ │ ├── test_formats.py │ │ │ │ ├── test_indexing.py │ │ │ │ ├── test_map.py │ │ │ │ └── test_reindex.py │ │ │ ├── common.py │ │ │ ├── conftest.py │ │ │ ├── datetimelike.py │ │ │ ├── datetimelike_ │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_drop_duplicates.cpython-39.pyc │ │ │ │ │ ├── test_equals.cpython-39.pyc │ │ │ │ │ ├── test_indexing.cpython-39.pyc │ │ │ │ │ ├── test_is_monotonic.cpython-39.pyc │ │ │ │ │ ├── test_nat.cpython-39.pyc │ │ │ │ │ ├── test_sort_values.cpython-39.pyc │ │ │ │ │ └── test_value_counts.cpython-39.pyc │ │ │ │ ├── test_drop_duplicates.py │ │ │ │ ├── test_equals.py │ │ │ │ ├── test_indexing.py │ │ │ │ ├── test_is_monotonic.py │ │ │ │ ├── test_nat.py │ │ │ │ ├── test_sort_values.py │ │ │ │ └── test_value_counts.py │ │ │ ├── datetimes │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_asof.cpython-39.pyc │ │ │ │ │ ├── test_constructors.cpython-39.pyc │ │ │ │ │ ├── test_date_range.cpython-39.pyc │ │ │ │ │ ├── test_datetime.cpython-39.pyc │ │ │ │ │ ├── test_datetimelike.cpython-39.pyc │ │ │ │ │ ├── test_delete.cpython-39.pyc │ │ │ │ │ ├── test_formats.cpython-39.pyc │ │ │ │ │ ├── test_freq_attr.cpython-39.pyc │ │ │ │ │ ├── test_indexing.cpython-39.pyc │ │ │ │ │ ├── test_join.cpython-39.pyc │ │ │ │ │ ├── test_map.cpython-39.pyc │ │ │ │ │ ├── test_misc.cpython-39.pyc │ │ │ │ │ ├── test_npfuncs.cpython-39.pyc │ │ │ │ │ ├── test_ops.cpython-39.pyc │ │ │ │ │ ├── test_partial_slicing.cpython-39.pyc │ │ │ │ │ ├── test_pickle.cpython-39.pyc │ │ │ │ │ ├── test_reindex.cpython-39.pyc │ │ │ │ │ ├── test_scalar_compat.cpython-39.pyc │ │ │ │ │ ├── test_setops.cpython-39.pyc │ │ │ │ │ ├── test_timezones.cpython-39.pyc │ │ │ │ │ └── test_unique.cpython-39.pyc │ │ │ │ ├── methods │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── test_astype.cpython-39.pyc │ │ │ │ │ │ ├── test_factorize.cpython-39.pyc │ │ │ │ │ │ ├── test_fillna.cpython-39.pyc │ │ │ │ │ │ ├── test_insert.cpython-39.pyc │ │ │ │ │ │ ├── test_isocalendar.cpython-39.pyc │ │ │ │ │ │ ├── test_repeat.cpython-39.pyc │ │ │ │ │ │ ├── test_shift.cpython-39.pyc │ │ │ │ │ │ ├── test_snap.cpython-39.pyc │ │ │ │ │ │ ├── test_to_frame.cpython-39.pyc │ │ │ │ │ │ ├── test_to_period.cpython-39.pyc │ │ │ │ │ │ └── test_to_series.cpython-39.pyc │ │ │ │ │ ├── test_astype.py │ │ │ │ │ ├── test_factorize.py │ │ │ │ │ ├── test_fillna.py │ │ │ │ │ ├── test_insert.py │ │ │ │ │ ├── test_isocalendar.py │ │ │ │ │ ├── test_repeat.py │ │ │ │ │ ├── test_shift.py │ │ │ │ │ ├── test_snap.py │ │ │ │ │ ├── test_to_frame.py │ │ │ │ │ ├── test_to_period.py │ │ │ │ │ └── test_to_series.py │ │ │ │ ├── test_asof.py │ │ │ │ ├── test_constructors.py │ │ │ │ ├── test_date_range.py │ │ │ │ ├── test_datetime.py │ │ │ │ ├── test_datetimelike.py │ │ │ │ ├── test_delete.py │ │ │ │ ├── test_formats.py │ │ │ │ ├── test_freq_attr.py │ │ │ │ ├── test_indexing.py │ │ │ │ ├── test_join.py │ │ │ │ ├── test_map.py │ │ │ │ ├── test_misc.py │ │ │ │ ├── test_npfuncs.py │ │ │ │ ├── test_ops.py │ │ │ │ ├── test_partial_slicing.py │ │ │ │ ├── test_pickle.py │ │ │ │ ├── test_reindex.py │ │ │ │ ├── test_scalar_compat.py │ │ │ │ ├── test_setops.py │ │ │ │ ├── test_timezones.py │ │ │ │ └── test_unique.py │ │ │ ├── interval │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_astype.cpython-39.pyc │ │ │ │ │ ├── test_base.cpython-39.pyc │ │ │ │ │ ├── test_constructors.cpython-39.pyc │ │ │ │ │ ├── test_equals.cpython-39.pyc │ │ │ │ │ ├── test_formats.cpython-39.pyc │ │ │ │ │ ├── test_indexing.cpython-39.pyc │ │ │ │ │ ├── test_interval.cpython-39.pyc │ │ │ │ │ ├── test_interval_range.cpython-39.pyc │ │ │ │ │ ├── test_interval_tree.cpython-39.pyc │ │ │ │ │ ├── test_join.cpython-39.pyc │ │ │ │ │ ├── test_pickle.cpython-39.pyc │ │ │ │ │ └── test_setops.cpython-39.pyc │ │ │ │ ├── test_astype.py │ │ │ │ ├── test_base.py │ │ │ │ ├── test_constructors.py │ │ │ │ ├── test_equals.py │ │ │ │ ├── test_formats.py │ │ │ │ ├── test_indexing.py │ │ │ │ ├── test_interval.py │ │ │ │ ├── test_interval_range.py │ │ │ │ ├── test_interval_tree.py │ │ │ │ ├── test_join.py │ │ │ │ ├── test_pickle.py │ │ │ │ └── test_setops.py │ │ │ ├── multi │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── conftest.cpython-39.pyc │ │ │ │ │ ├── test_analytics.cpython-39.pyc │ │ │ │ │ ├── test_astype.cpython-39.pyc │ │ │ │ │ ├── test_compat.cpython-39.pyc │ │ │ │ │ ├── test_constructors.cpython-39.pyc │ │ │ │ │ ├── test_conversion.cpython-39.pyc │ │ │ │ │ ├── test_copy.cpython-39.pyc │ │ │ │ │ ├── test_drop.cpython-39.pyc │ │ │ │ │ ├── test_duplicates.cpython-39.pyc │ │ │ │ │ ├── test_equivalence.cpython-39.pyc │ │ │ │ │ ├── test_formats.cpython-39.pyc │ │ │ │ │ ├── test_get_level_values.cpython-39.pyc │ │ │ │ │ ├── test_get_set.cpython-39.pyc │ │ │ │ │ ├── test_indexing.cpython-39.pyc │ │ │ │ │ ├── test_integrity.cpython-39.pyc │ │ │ │ │ ├── test_isin.cpython-39.pyc │ │ │ │ │ ├── test_join.cpython-39.pyc │ │ │ │ │ ├── test_lexsort.cpython-39.pyc │ │ │ │ │ ├── test_missing.cpython-39.pyc │ │ │ │ │ ├── test_monotonic.cpython-39.pyc │ │ │ │ │ ├── test_names.cpython-39.pyc │ │ │ │ │ ├── test_partial_indexing.cpython-39.pyc │ │ │ │ │ ├── test_pickle.cpython-39.pyc │ │ │ │ │ ├── test_reindex.cpython-39.pyc │ │ │ │ │ ├── test_reshape.cpython-39.pyc │ │ │ │ │ ├── test_setops.cpython-39.pyc │ │ │ │ │ ├── test_sorting.cpython-39.pyc │ │ │ │ │ └── test_take.cpython-39.pyc │ │ │ │ ├── conftest.py │ │ │ │ ├── test_analytics.py │ │ │ │ ├── test_astype.py │ │ │ │ ├── test_compat.py │ │ │ │ ├── test_constructors.py │ │ │ │ ├── test_conversion.py │ │ │ │ ├── test_copy.py │ │ │ │ ├── test_drop.py │ │ │ │ ├── test_duplicates.py │ │ │ │ ├── test_equivalence.py │ │ │ │ ├── test_formats.py │ │ │ │ ├── test_get_level_values.py │ │ │ │ ├── test_get_set.py │ │ │ │ ├── test_indexing.py │ │ │ │ ├── test_integrity.py │ │ │ │ ├── test_isin.py │ │ │ │ ├── test_join.py │ │ │ │ ├── test_lexsort.py │ │ │ │ ├── test_missing.py │ │ │ │ ├── test_monotonic.py │ │ │ │ ├── test_names.py │ │ │ │ ├── test_partial_indexing.py │ │ │ │ ├── test_pickle.py │ │ │ │ ├── test_reindex.py │ │ │ │ ├── test_reshape.py │ │ │ │ ├── test_setops.py │ │ │ │ ├── test_sorting.py │ │ │ │ └── test_take.py │ │ │ ├── numeric │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_astype.cpython-39.pyc │ │ │ │ │ ├── test_indexing.cpython-39.pyc │ │ │ │ │ ├── test_join.cpython-39.pyc │ │ │ │ │ ├── test_numeric.cpython-39.pyc │ │ │ │ │ └── test_setops.cpython-39.pyc │ │ │ │ ├── test_astype.py │ │ │ │ ├── test_indexing.py │ │ │ │ ├── test_join.py │ │ │ │ ├── test_numeric.py │ │ │ │ └── test_setops.py │ │ │ ├── object │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_astype.cpython-39.pyc │ │ │ │ │ └── test_indexing.cpython-39.pyc │ │ │ │ ├── test_astype.py │ │ │ │ └── test_indexing.py │ │ │ ├── period │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_constructors.cpython-39.pyc │ │ │ │ │ ├── test_formats.cpython-39.pyc │ │ │ │ │ ├── test_freq_attr.cpython-39.pyc │ │ │ │ │ ├── test_indexing.cpython-39.pyc │ │ │ │ │ ├── test_join.cpython-39.pyc │ │ │ │ │ ├── test_monotonic.cpython-39.pyc │ │ │ │ │ ├── test_partial_slicing.cpython-39.pyc │ │ │ │ │ ├── test_period.cpython-39.pyc │ │ │ │ │ ├── test_period_range.cpython-39.pyc │ │ │ │ │ ├── test_pickle.cpython-39.pyc │ │ │ │ │ ├── test_resolution.cpython-39.pyc │ │ │ │ │ ├── test_scalar_compat.cpython-39.pyc │ │ │ │ │ ├── test_searchsorted.cpython-39.pyc │ │ │ │ │ ├── test_setops.cpython-39.pyc │ │ │ │ │ └── test_tools.cpython-39.pyc │ │ │ │ ├── methods │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── test_asfreq.cpython-39.pyc │ │ │ │ │ │ ├── test_astype.cpython-39.pyc │ │ │ │ │ │ ├── test_factorize.cpython-39.pyc │ │ │ │ │ │ ├── test_fillna.cpython-39.pyc │ │ │ │ │ │ ├── test_insert.cpython-39.pyc │ │ │ │ │ │ ├── test_is_full.cpython-39.pyc │ │ │ │ │ │ ├── test_repeat.cpython-39.pyc │ │ │ │ │ │ ├── test_shift.cpython-39.pyc │ │ │ │ │ │ └── test_to_timestamp.cpython-39.pyc │ │ │ │ │ ├── test_asfreq.py │ │ │ │ │ ├── test_astype.py │ │ │ │ │ ├── test_factorize.py │ │ │ │ │ ├── test_fillna.py │ │ │ │ │ ├── test_insert.py │ │ │ │ │ ├── test_is_full.py │ │ │ │ │ ├── test_repeat.py │ │ │ │ │ ├── test_shift.py │ │ │ │ │ └── test_to_timestamp.py │ │ │ │ ├── test_constructors.py │ │ │ │ ├── test_formats.py │ │ │ │ ├── test_freq_attr.py │ │ │ │ ├── test_indexing.py │ │ │ │ ├── test_join.py │ │ │ │ ├── test_monotonic.py │ │ │ │ ├── test_partial_slicing.py │ │ │ │ ├── test_period.py │ │ │ │ ├── test_period_range.py │ │ │ │ ├── test_pickle.py │ │ │ │ ├── test_resolution.py │ │ │ │ ├── test_scalar_compat.py │ │ │ │ ├── test_searchsorted.py │ │ │ │ ├── test_setops.py │ │ │ │ └── test_tools.py │ │ │ ├── ranges │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_constructors.cpython-39.pyc │ │ │ │ │ ├── test_indexing.cpython-39.pyc │ │ │ │ │ ├── test_join.cpython-39.pyc │ │ │ │ │ ├── test_range.cpython-39.pyc │ │ │ │ │ └── test_setops.cpython-39.pyc │ │ │ │ ├── test_constructors.py │ │ │ │ ├── test_indexing.py │ │ │ │ ├── test_join.py │ │ │ │ ├── test_range.py │ │ │ │ └── test_setops.py │ │ │ ├── test_any_index.py │ │ │ ├── test_base.py │ │ │ ├── test_common.py │ │ │ ├── test_engines.py │ │ │ ├── test_frozen.py │ │ │ ├── test_index_new.py │ │ │ ├── test_indexing.py │ │ │ ├── test_numpy_compat.py │ │ │ ├── test_setops.py │ │ │ ├── test_subclass.py │ │ │ └── timedeltas │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── test_constructors.cpython-39.pyc │ │ │ │ ├── test_delete.cpython-39.pyc │ │ │ │ ├── test_formats.cpython-39.pyc │ │ │ │ ├── test_freq_attr.cpython-39.pyc │ │ │ │ ├── test_indexing.cpython-39.pyc │ │ │ │ ├── test_join.cpython-39.pyc │ │ │ │ ├── test_ops.cpython-39.pyc │ │ │ │ ├── test_pickle.cpython-39.pyc │ │ │ │ ├── test_scalar_compat.cpython-39.pyc │ │ │ │ ├── test_searchsorted.cpython-39.pyc │ │ │ │ ├── test_setops.cpython-39.pyc │ │ │ │ ├── test_timedelta.cpython-39.pyc │ │ │ │ └── test_timedelta_range.cpython-39.pyc │ │ │ │ ├── methods │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_astype.cpython-39.pyc │ │ │ │ │ ├── test_factorize.cpython-39.pyc │ │ │ │ │ ├── test_fillna.cpython-39.pyc │ │ │ │ │ ├── test_insert.cpython-39.pyc │ │ │ │ │ ├── test_repeat.cpython-39.pyc │ │ │ │ │ └── test_shift.cpython-39.pyc │ │ │ │ ├── test_astype.py │ │ │ │ ├── test_factorize.py │ │ │ │ ├── test_fillna.py │ │ │ │ ├── test_insert.py │ │ │ │ ├── test_repeat.py │ │ │ │ └── test_shift.py │ │ │ │ ├── test_constructors.py │ │ │ │ ├── test_delete.py │ │ │ │ ├── test_formats.py │ │ │ │ ├── test_freq_attr.py │ │ │ │ ├── test_indexing.py │ │ │ │ ├── test_join.py │ │ │ │ ├── test_ops.py │ │ │ │ ├── test_pickle.py │ │ │ │ ├── test_scalar_compat.py │ │ │ │ ├── test_searchsorted.py │ │ │ │ ├── test_setops.py │ │ │ │ ├── test_timedelta.py │ │ │ │ └── test_timedelta_range.py │ │ ├── indexing │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── common.cpython-39.pyc │ │ │ │ ├── test_at.cpython-39.pyc │ │ │ │ ├── test_categorical.cpython-39.pyc │ │ │ │ ├── test_chaining_and_caching.cpython-39.pyc │ │ │ │ ├── test_check_indexer.cpython-39.pyc │ │ │ │ ├── test_coercion.cpython-39.pyc │ │ │ │ ├── test_datetime.cpython-39.pyc │ │ │ │ ├── test_floats.cpython-39.pyc │ │ │ │ ├── test_iat.cpython-39.pyc │ │ │ │ ├── test_iloc.cpython-39.pyc │ │ │ │ ├── test_indexers.cpython-39.pyc │ │ │ │ ├── test_indexing.cpython-39.pyc │ │ │ │ ├── test_loc.cpython-39.pyc │ │ │ │ ├── test_na_indexing.cpython-39.pyc │ │ │ │ ├── test_partial.cpython-39.pyc │ │ │ │ └── test_scalar.cpython-39.pyc │ │ │ ├── common.py │ │ │ ├── interval │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_interval.cpython-39.pyc │ │ │ │ │ └── test_interval_new.cpython-39.pyc │ │ │ │ ├── test_interval.py │ │ │ │ └── test_interval_new.py │ │ │ ├── multiindex │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_chaining_and_caching.cpython-39.pyc │ │ │ │ │ ├── test_datetime.cpython-39.pyc │ │ │ │ │ ├── test_getitem.cpython-39.pyc │ │ │ │ │ ├── test_iloc.cpython-39.pyc │ │ │ │ │ ├── test_indexing_slow.cpython-39.pyc │ │ │ │ │ ├── test_loc.cpython-39.pyc │ │ │ │ │ ├── test_multiindex.cpython-39.pyc │ │ │ │ │ ├── test_partial.cpython-39.pyc │ │ │ │ │ ├── test_setitem.cpython-39.pyc │ │ │ │ │ ├── test_slice.cpython-39.pyc │ │ │ │ │ └── test_sorted.cpython-39.pyc │ │ │ │ ├── test_chaining_and_caching.py │ │ │ │ ├── test_datetime.py │ │ │ │ ├── test_getitem.py │ │ │ │ ├── test_iloc.py │ │ │ │ ├── test_indexing_slow.py │ │ │ │ ├── test_loc.py │ │ │ │ ├── test_multiindex.py │ │ │ │ ├── test_partial.py │ │ │ │ ├── test_setitem.py │ │ │ │ ├── test_slice.py │ │ │ │ └── test_sorted.py │ │ │ ├── test_at.py │ │ │ ├── test_categorical.py │ │ │ ├── test_chaining_and_caching.py │ │ │ ├── test_check_indexer.py │ │ │ ├── test_coercion.py │ │ │ ├── test_datetime.py │ │ │ ├── test_floats.py │ │ │ ├── test_iat.py │ │ │ ├── test_iloc.py │ │ │ ├── test_indexers.py │ │ │ ├── test_indexing.py │ │ │ ├── test_loc.py │ │ │ ├── test_na_indexing.py │ │ │ ├── test_partial.py │ │ │ └── test_scalar.py │ │ ├── interchange │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── conftest.cpython-39.pyc │ │ │ │ ├── test_impl.cpython-39.pyc │ │ │ │ ├── test_spec_conformance.cpython-39.pyc │ │ │ │ └── test_utils.cpython-39.pyc │ │ │ ├── conftest.py │ │ │ ├── test_impl.py │ │ │ ├── test_spec_conformance.py │ │ │ └── test_utils.py │ │ ├── internals │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── test_api.cpython-39.pyc │ │ │ │ ├── test_internals.cpython-39.pyc │ │ │ │ └── test_managers.cpython-39.pyc │ │ │ ├── test_api.py │ │ │ ├── test_internals.py │ │ │ └── test_managers.py │ │ ├── io │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── conftest.cpython-39.pyc │ │ │ │ ├── generate_legacy_storage_files.cpython-39.pyc │ │ │ │ ├── test_clipboard.cpython-39.pyc │ │ │ │ ├── test_common.cpython-39.pyc │ │ │ │ ├── test_compression.cpython-39.pyc │ │ │ │ ├── test_date_converters.cpython-39.pyc │ │ │ │ ├── test_feather.cpython-39.pyc │ │ │ │ ├── test_fsspec.cpython-39.pyc │ │ │ │ ├── test_gcs.cpython-39.pyc │ │ │ │ ├── test_html.cpython-39.pyc │ │ │ │ ├── test_orc.cpython-39.pyc │ │ │ │ ├── test_parquet.cpython-39.pyc │ │ │ │ ├── test_pickle.cpython-39.pyc │ │ │ │ ├── test_s3.cpython-39.pyc │ │ │ │ ├── test_spss.cpython-39.pyc │ │ │ │ ├── test_sql.cpython-39.pyc │ │ │ │ ├── test_stata.cpython-39.pyc │ │ │ │ └── test_user_agent.cpython-39.pyc │ │ │ ├── conftest.py │ │ │ ├── data │ │ │ │ ├── fixed_width │ │ │ │ │ └── fixed_width_format.txt │ │ │ │ ├── gbq_fake_job.txt │ │ │ │ ├── legacy_pickle │ │ │ │ │ └── 1.2.4 │ │ │ │ │ │ └── empty_frame_v1_2_4-GH#42345.pkl │ │ │ │ ├── parquet │ │ │ │ │ └── simple.parquet │ │ │ │ ├── pickle │ │ │ │ │ ├── test_mi_py27.pkl │ │ │ │ │ └── test_py27.pkl │ │ │ │ └── xml │ │ │ │ │ ├── baby_names.xml │ │ │ │ │ ├── books.xml │ │ │ │ │ ├── cta_rail_lines.kml │ │ │ │ │ ├── doc_ch_utf.xml │ │ │ │ │ ├── flatten_doc.xsl │ │ │ │ │ └── row_field_output.xsl │ │ │ ├── excel │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── conftest.cpython-39.pyc │ │ │ │ │ ├── test_odf.cpython-39.pyc │ │ │ │ │ ├── test_odswriter.cpython-39.pyc │ │ │ │ │ ├── test_openpyxl.cpython-39.pyc │ │ │ │ │ ├── test_readers.cpython-39.pyc │ │ │ │ │ ├── test_style.cpython-39.pyc │ │ │ │ │ ├── test_writers.cpython-39.pyc │ │ │ │ │ ├── test_xlrd.cpython-39.pyc │ │ │ │ │ ├── test_xlsxwriter.cpython-39.pyc │ │ │ │ │ └── test_xlwt.cpython-39.pyc │ │ │ │ ├── conftest.py │ │ │ │ ├── test_odf.py │ │ │ │ ├── test_odswriter.py │ │ │ │ ├── test_openpyxl.py │ │ │ │ ├── test_readers.py │ │ │ │ ├── test_style.py │ │ │ │ ├── test_writers.py │ │ │ │ ├── test_xlrd.py │ │ │ │ ├── test_xlsxwriter.py │ │ │ │ └── test_xlwt.py │ │ │ ├── formats │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_console.cpython-39.pyc │ │ │ │ │ ├── test_css.cpython-39.pyc │ │ │ │ │ ├── test_eng_formatting.cpython-39.pyc │ │ │ │ │ ├── test_format.cpython-39.pyc │ │ │ │ │ ├── test_info.cpython-39.pyc │ │ │ │ │ ├── test_printing.cpython-39.pyc │ │ │ │ │ ├── test_series_info.cpython-39.pyc │ │ │ │ │ ├── test_to_csv.cpython-39.pyc │ │ │ │ │ ├── test_to_excel.cpython-39.pyc │ │ │ │ │ ├── test_to_html.cpython-39.pyc │ │ │ │ │ ├── test_to_latex.cpython-39.pyc │ │ │ │ │ ├── test_to_markdown.cpython-39.pyc │ │ │ │ │ └── test_to_string.cpython-39.pyc │ │ │ │ ├── style │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── test_bar.cpython-39.pyc │ │ │ │ │ │ ├── test_deprecated.cpython-39.pyc │ │ │ │ │ │ ├── test_exceptions.cpython-39.pyc │ │ │ │ │ │ ├── test_format.cpython-39.pyc │ │ │ │ │ │ ├── test_highlight.cpython-39.pyc │ │ │ │ │ │ ├── test_html.cpython-39.pyc │ │ │ │ │ │ ├── test_matplotlib.cpython-39.pyc │ │ │ │ │ │ ├── test_non_unique.cpython-39.pyc │ │ │ │ │ │ ├── test_style.cpython-39.pyc │ │ │ │ │ │ ├── test_to_latex.cpython-39.pyc │ │ │ │ │ │ ├── test_to_string.cpython-39.pyc │ │ │ │ │ │ └── test_tooltip.cpython-39.pyc │ │ │ │ │ ├── test_bar.py │ │ │ │ │ ├── test_deprecated.py │ │ │ │ │ ├── test_exceptions.py │ │ │ │ │ ├── test_format.py │ │ │ │ │ ├── test_highlight.py │ │ │ │ │ ├── test_html.py │ │ │ │ │ ├── test_matplotlib.py │ │ │ │ │ ├── test_non_unique.py │ │ │ │ │ ├── test_style.py │ │ │ │ │ ├── test_to_latex.py │ │ │ │ │ ├── test_to_string.py │ │ │ │ │ └── test_tooltip.py │ │ │ │ ├── test_console.py │ │ │ │ ├── test_css.py │ │ │ │ ├── test_eng_formatting.py │ │ │ │ ├── test_format.py │ │ │ │ ├── test_info.py │ │ │ │ ├── test_printing.py │ │ │ │ ├── test_series_info.py │ │ │ │ ├── test_to_csv.py │ │ │ │ ├── test_to_excel.py │ │ │ │ ├── test_to_html.py │ │ │ │ ├── test_to_latex.py │ │ │ │ ├── test_to_markdown.py │ │ │ │ └── test_to_string.py │ │ │ ├── generate_legacy_storage_files.py │ │ │ ├── json │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── conftest.cpython-39.pyc │ │ │ │ │ ├── test_compression.cpython-39.pyc │ │ │ │ │ ├── test_deprecated_kwargs.cpython-39.pyc │ │ │ │ │ ├── test_json_table_schema.cpython-39.pyc │ │ │ │ │ ├── test_json_table_schema_ext_dtype.cpython-39.pyc │ │ │ │ │ ├── test_normalize.cpython-39.pyc │ │ │ │ │ ├── test_pandas.cpython-39.pyc │ │ │ │ │ ├── test_readlines.cpython-39.pyc │ │ │ │ │ └── test_ujson.cpython-39.pyc │ │ │ │ ├── conftest.py │ │ │ │ ├── test_compression.py │ │ │ │ ├── test_deprecated_kwargs.py │ │ │ │ ├── test_json_table_schema.py │ │ │ │ ├── test_json_table_schema_ext_dtype.py │ │ │ │ ├── test_normalize.py │ │ │ │ ├── test_pandas.py │ │ │ │ ├── test_readlines.py │ │ │ │ └── test_ujson.py │ │ │ ├── parser │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── conftest.cpython-39.pyc │ │ │ │ │ ├── test_c_parser_only.cpython-39.pyc │ │ │ │ │ ├── test_comment.cpython-39.pyc │ │ │ │ │ ├── test_compression.cpython-39.pyc │ │ │ │ │ ├── test_converters.cpython-39.pyc │ │ │ │ │ ├── test_dialect.cpython-39.pyc │ │ │ │ │ ├── test_encoding.cpython-39.pyc │ │ │ │ │ ├── test_header.cpython-39.pyc │ │ │ │ │ ├── test_index_col.cpython-39.pyc │ │ │ │ │ ├── test_mangle_dupes.cpython-39.pyc │ │ │ │ │ ├── test_multi_thread.cpython-39.pyc │ │ │ │ │ ├── test_na_values.cpython-39.pyc │ │ │ │ │ ├── test_network.cpython-39.pyc │ │ │ │ │ ├── test_parse_dates.cpython-39.pyc │ │ │ │ │ ├── test_python_parser_only.cpython-39.pyc │ │ │ │ │ ├── test_quoting.cpython-39.pyc │ │ │ │ │ ├── test_read_fwf.cpython-39.pyc │ │ │ │ │ ├── test_skiprows.cpython-39.pyc │ │ │ │ │ ├── test_textreader.cpython-39.pyc │ │ │ │ │ └── test_unsupported.cpython-39.pyc │ │ │ │ ├── common │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── test_chunksize.cpython-39.pyc │ │ │ │ │ │ ├── test_common_basic.cpython-39.pyc │ │ │ │ │ │ ├── test_data_list.cpython-39.pyc │ │ │ │ │ │ ├── test_decimal.cpython-39.pyc │ │ │ │ │ │ ├── test_file_buffer_url.cpython-39.pyc │ │ │ │ │ │ ├── test_float.cpython-39.pyc │ │ │ │ │ │ ├── test_index.cpython-39.pyc │ │ │ │ │ │ ├── test_inf.cpython-39.pyc │ │ │ │ │ │ ├── test_ints.cpython-39.pyc │ │ │ │ │ │ ├── test_iterator.cpython-39.pyc │ │ │ │ │ │ ├── test_read_errors.cpython-39.pyc │ │ │ │ │ │ └── test_verbose.cpython-39.pyc │ │ │ │ │ ├── test_chunksize.py │ │ │ │ │ ├── test_common_basic.py │ │ │ │ │ ├── test_data_list.py │ │ │ │ │ ├── test_decimal.py │ │ │ │ │ ├── test_file_buffer_url.py │ │ │ │ │ ├── test_float.py │ │ │ │ │ ├── test_index.py │ │ │ │ │ ├── test_inf.py │ │ │ │ │ ├── test_ints.py │ │ │ │ │ ├── test_iterator.py │ │ │ │ │ ├── test_read_errors.py │ │ │ │ │ └── test_verbose.py │ │ │ │ ├── conftest.py │ │ │ │ ├── dtypes │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── test_categorical.cpython-39.pyc │ │ │ │ │ │ ├── test_dtypes_basic.cpython-39.pyc │ │ │ │ │ │ └── test_empty.cpython-39.pyc │ │ │ │ │ ├── test_categorical.py │ │ │ │ │ ├── test_dtypes_basic.py │ │ │ │ │ └── test_empty.py │ │ │ │ ├── test_c_parser_only.py │ │ │ │ ├── test_comment.py │ │ │ │ ├── test_compression.py │ │ │ │ ├── test_converters.py │ │ │ │ ├── test_dialect.py │ │ │ │ ├── test_encoding.py │ │ │ │ ├── test_header.py │ │ │ │ ├── test_index_col.py │ │ │ │ ├── test_mangle_dupes.py │ │ │ │ ├── test_multi_thread.py │ │ │ │ ├── test_na_values.py │ │ │ │ ├── test_network.py │ │ │ │ ├── test_parse_dates.py │ │ │ │ ├── test_python_parser_only.py │ │ │ │ ├── test_quoting.py │ │ │ │ ├── test_read_fwf.py │ │ │ │ ├── test_skiprows.py │ │ │ │ ├── test_textreader.py │ │ │ │ ├── test_unsupported.py │ │ │ │ └── usecols │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_parse_dates.cpython-39.pyc │ │ │ │ │ ├── test_strings.cpython-39.pyc │ │ │ │ │ └── test_usecols_basic.cpython-39.pyc │ │ │ │ │ ├── test_parse_dates.py │ │ │ │ │ ├── test_strings.py │ │ │ │ │ └── test_usecols_basic.py │ │ │ ├── pytables │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── common.cpython-39.pyc │ │ │ │ │ ├── conftest.cpython-39.pyc │ │ │ │ │ ├── test_append.cpython-39.pyc │ │ │ │ │ ├── test_categorical.cpython-39.pyc │ │ │ │ │ ├── test_compat.cpython-39.pyc │ │ │ │ │ ├── test_complex.cpython-39.pyc │ │ │ │ │ ├── test_errors.cpython-39.pyc │ │ │ │ │ ├── test_file_handling.cpython-39.pyc │ │ │ │ │ ├── test_keys.cpython-39.pyc │ │ │ │ │ ├── test_put.cpython-39.pyc │ │ │ │ │ ├── test_pytables_missing.cpython-39.pyc │ │ │ │ │ ├── test_read.cpython-39.pyc │ │ │ │ │ ├── test_retain_attributes.cpython-39.pyc │ │ │ │ │ ├── test_round_trip.cpython-39.pyc │ │ │ │ │ ├── test_select.cpython-39.pyc │ │ │ │ │ ├── test_store.cpython-39.pyc │ │ │ │ │ ├── test_subclass.cpython-39.pyc │ │ │ │ │ ├── test_time_series.cpython-39.pyc │ │ │ │ │ └── test_timezones.cpython-39.pyc │ │ │ │ ├── common.py │ │ │ │ ├── conftest.py │ │ │ │ ├── test_append.py │ │ │ │ ├── test_categorical.py │ │ │ │ ├── test_compat.py │ │ │ │ ├── test_complex.py │ │ │ │ ├── test_errors.py │ │ │ │ ├── test_file_handling.py │ │ │ │ ├── test_keys.py │ │ │ │ ├── test_put.py │ │ │ │ ├── test_pytables_missing.py │ │ │ │ ├── test_read.py │ │ │ │ ├── test_retain_attributes.py │ │ │ │ ├── test_round_trip.py │ │ │ │ ├── test_select.py │ │ │ │ ├── test_store.py │ │ │ │ ├── test_subclass.py │ │ │ │ ├── test_time_series.py │ │ │ │ └── test_timezones.py │ │ │ ├── sas │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_sas.cpython-39.pyc │ │ │ │ │ ├── test_sas7bdat.cpython-39.pyc │ │ │ │ │ └── test_xport.cpython-39.pyc │ │ │ │ ├── test_sas.py │ │ │ │ ├── test_sas7bdat.py │ │ │ │ └── test_xport.py │ │ │ ├── test_clipboard.py │ │ │ ├── test_common.py │ │ │ ├── test_compression.py │ │ │ ├── test_date_converters.py │ │ │ ├── test_feather.py │ │ │ ├── test_fsspec.py │ │ │ ├── test_gcs.py │ │ │ ├── test_html.py │ │ │ ├── test_orc.py │ │ │ ├── test_parquet.py │ │ │ ├── test_pickle.py │ │ │ ├── test_s3.py │ │ │ ├── test_spss.py │ │ │ ├── test_sql.py │ │ │ ├── test_stata.py │ │ │ ├── test_user_agent.py │ │ │ └── xml │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── test_to_xml.cpython-39.pyc │ │ │ │ ├── test_xml.cpython-39.pyc │ │ │ │ └── test_xml_dtypes.cpython-39.pyc │ │ │ │ ├── test_to_xml.py │ │ │ │ ├── test_xml.py │ │ │ │ └── test_xml_dtypes.py │ │ ├── libs │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── test_hashtable.cpython-39.pyc │ │ │ │ ├── test_join.cpython-39.pyc │ │ │ │ └── test_lib.cpython-39.pyc │ │ │ ├── test_hashtable.py │ │ │ ├── test_join.py │ │ │ └── test_lib.py │ │ ├── plotting │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── common.cpython-39.pyc │ │ │ │ ├── conftest.cpython-39.pyc │ │ │ │ ├── test_backend.cpython-39.pyc │ │ │ │ ├── test_boxplot_method.cpython-39.pyc │ │ │ │ ├── test_common.cpython-39.pyc │ │ │ │ ├── test_converter.cpython-39.pyc │ │ │ │ ├── test_datetimelike.cpython-39.pyc │ │ │ │ ├── test_groupby.cpython-39.pyc │ │ │ │ ├── test_hist_method.cpython-39.pyc │ │ │ │ ├── test_misc.cpython-39.pyc │ │ │ │ ├── test_series.cpython-39.pyc │ │ │ │ └── test_style.cpython-39.pyc │ │ │ ├── common.py │ │ │ ├── conftest.py │ │ │ ├── frame │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_frame.cpython-39.pyc │ │ │ │ │ ├── test_frame_color.cpython-39.pyc │ │ │ │ │ ├── test_frame_groupby.cpython-39.pyc │ │ │ │ │ ├── test_frame_legend.cpython-39.pyc │ │ │ │ │ ├── test_frame_subplots.cpython-39.pyc │ │ │ │ │ └── test_hist_box_by.cpython-39.pyc │ │ │ │ ├── test_frame.py │ │ │ │ ├── test_frame_color.py │ │ │ │ ├── test_frame_groupby.py │ │ │ │ ├── test_frame_legend.py │ │ │ │ ├── test_frame_subplots.py │ │ │ │ └── test_hist_box_by.py │ │ │ ├── test_backend.py │ │ │ ├── test_boxplot_method.py │ │ │ ├── test_common.py │ │ │ ├── test_converter.py │ │ │ ├── test_datetimelike.py │ │ │ ├── test_groupby.py │ │ │ ├── test_hist_method.py │ │ │ ├── test_misc.py │ │ │ ├── test_series.py │ │ │ └── test_style.py │ │ ├── reductions │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── test_reductions.cpython-39.pyc │ │ │ │ └── test_stat_reductions.cpython-39.pyc │ │ │ ├── test_reductions.py │ │ │ └── test_stat_reductions.py │ │ ├── resample │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── conftest.cpython-39.pyc │ │ │ │ ├── test_base.cpython-39.pyc │ │ │ │ ├── test_datetime_index.cpython-39.pyc │ │ │ │ ├── test_deprecated.cpython-39.pyc │ │ │ │ ├── test_period_index.cpython-39.pyc │ │ │ │ ├── test_resample_api.cpython-39.pyc │ │ │ │ ├── test_resampler_grouper.cpython-39.pyc │ │ │ │ ├── test_time_grouper.cpython-39.pyc │ │ │ │ └── test_timedelta.cpython-39.pyc │ │ │ ├── conftest.py │ │ │ ├── test_base.py │ │ │ ├── test_datetime_index.py │ │ │ ├── test_deprecated.py │ │ │ ├── test_period_index.py │ │ │ ├── test_resample_api.py │ │ │ ├── test_resampler_grouper.py │ │ │ ├── test_time_grouper.py │ │ │ └── test_timedelta.py │ │ ├── reshape │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── test_crosstab.cpython-39.pyc │ │ │ │ ├── test_cut.cpython-39.pyc │ │ │ │ ├── test_from_dummies.cpython-39.pyc │ │ │ │ ├── test_get_dummies.cpython-39.pyc │ │ │ │ ├── test_melt.cpython-39.pyc │ │ │ │ ├── test_pivot.cpython-39.pyc │ │ │ │ ├── test_pivot_multilevel.cpython-39.pyc │ │ │ │ ├── test_qcut.cpython-39.pyc │ │ │ │ ├── test_union_categoricals.cpython-39.pyc │ │ │ │ └── test_util.cpython-39.pyc │ │ │ ├── concat │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── conftest.cpython-39.pyc │ │ │ │ │ ├── test_append.cpython-39.pyc │ │ │ │ │ ├── test_append_common.cpython-39.pyc │ │ │ │ │ ├── test_categorical.cpython-39.pyc │ │ │ │ │ ├── test_concat.cpython-39.pyc │ │ │ │ │ ├── test_dataframe.cpython-39.pyc │ │ │ │ │ ├── test_datetimes.cpython-39.pyc │ │ │ │ │ ├── test_empty.cpython-39.pyc │ │ │ │ │ ├── test_index.cpython-39.pyc │ │ │ │ │ ├── test_invalid.cpython-39.pyc │ │ │ │ │ ├── test_series.cpython-39.pyc │ │ │ │ │ └── test_sort.cpython-39.pyc │ │ │ │ ├── conftest.py │ │ │ │ ├── test_append.py │ │ │ │ ├── test_append_common.py │ │ │ │ ├── test_categorical.py │ │ │ │ ├── test_concat.py │ │ │ │ ├── test_dataframe.py │ │ │ │ ├── test_datetimes.py │ │ │ │ ├── test_empty.py │ │ │ │ ├── test_index.py │ │ │ │ ├── test_invalid.py │ │ │ │ ├── test_series.py │ │ │ │ └── test_sort.py │ │ │ ├── merge │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_join.cpython-39.pyc │ │ │ │ │ ├── test_merge.cpython-39.pyc │ │ │ │ │ ├── test_merge_asof.cpython-39.pyc │ │ │ │ │ ├── test_merge_cross.cpython-39.pyc │ │ │ │ │ ├── test_merge_index_as_string.cpython-39.pyc │ │ │ │ │ ├── test_merge_ordered.cpython-39.pyc │ │ │ │ │ └── test_multi.cpython-39.pyc │ │ │ │ ├── test_join.py │ │ │ │ ├── test_merge.py │ │ │ │ ├── test_merge_asof.py │ │ │ │ ├── test_merge_cross.py │ │ │ │ ├── test_merge_index_as_string.py │ │ │ │ ├── test_merge_ordered.py │ │ │ │ └── test_multi.py │ │ │ ├── test_crosstab.py │ │ │ ├── test_cut.py │ │ │ ├── test_from_dummies.py │ │ │ ├── test_get_dummies.py │ │ │ ├── test_melt.py │ │ │ ├── test_pivot.py │ │ │ ├── test_pivot_multilevel.py │ │ │ ├── test_qcut.py │ │ │ ├── test_union_categoricals.py │ │ │ └── test_util.py │ │ ├── scalar │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── test_na_scalar.cpython-39.pyc │ │ │ │ └── test_nat.cpython-39.pyc │ │ │ ├── interval │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_arithmetic.cpython-39.pyc │ │ │ │ │ ├── test_interval.cpython-39.pyc │ │ │ │ │ └── test_ops.cpython-39.pyc │ │ │ │ ├── test_arithmetic.py │ │ │ │ ├── test_interval.py │ │ │ │ └── test_ops.py │ │ │ ├── period │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_asfreq.cpython-39.pyc │ │ │ │ │ └── test_period.cpython-39.pyc │ │ │ │ ├── test_asfreq.py │ │ │ │ └── test_period.py │ │ │ ├── test_na_scalar.py │ │ │ ├── test_nat.py │ │ │ ├── timedelta │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_arithmetic.cpython-39.pyc │ │ │ │ │ ├── test_constructors.cpython-39.pyc │ │ │ │ │ ├── test_formats.cpython-39.pyc │ │ │ │ │ └── test_timedelta.cpython-39.pyc │ │ │ │ ├── test_arithmetic.py │ │ │ │ ├── test_constructors.py │ │ │ │ ├── test_formats.py │ │ │ │ └── test_timedelta.py │ │ │ └── timestamp │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── test_arithmetic.cpython-39.pyc │ │ │ │ ├── test_comparisons.cpython-39.pyc │ │ │ │ ├── test_constructors.cpython-39.pyc │ │ │ │ ├── test_formats.cpython-39.pyc │ │ │ │ ├── test_rendering.cpython-39.pyc │ │ │ │ ├── test_timestamp.cpython-39.pyc │ │ │ │ ├── test_timezones.cpython-39.pyc │ │ │ │ └── test_unary_ops.cpython-39.pyc │ │ │ │ ├── test_arithmetic.py │ │ │ │ ├── test_comparisons.py │ │ │ │ ├── test_constructors.py │ │ │ │ ├── test_formats.py │ │ │ │ ├── test_rendering.py │ │ │ │ ├── test_timestamp.py │ │ │ │ ├── test_timezones.py │ │ │ │ └── test_unary_ops.py │ │ ├── series │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── test_api.cpython-39.pyc │ │ │ │ ├── test_arithmetic.cpython-39.pyc │ │ │ │ ├── test_constructors.cpython-39.pyc │ │ │ │ ├── test_cumulative.cpython-39.pyc │ │ │ │ ├── test_iteration.cpython-39.pyc │ │ │ │ ├── test_logical_ops.cpython-39.pyc │ │ │ │ ├── test_missing.cpython-39.pyc │ │ │ │ ├── test_npfuncs.cpython-39.pyc │ │ │ │ ├── test_reductions.cpython-39.pyc │ │ │ │ ├── test_repr.cpython-39.pyc │ │ │ │ ├── test_subclass.cpython-39.pyc │ │ │ │ ├── test_ufunc.cpython-39.pyc │ │ │ │ ├── test_unary.cpython-39.pyc │ │ │ │ └── test_validate.cpython-39.pyc │ │ │ ├── accessors │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_cat_accessor.cpython-39.pyc │ │ │ │ │ ├── test_dt_accessor.cpython-39.pyc │ │ │ │ │ ├── test_sparse_accessor.cpython-39.pyc │ │ │ │ │ └── test_str_accessor.cpython-39.pyc │ │ │ │ ├── test_cat_accessor.py │ │ │ │ ├── test_dt_accessor.py │ │ │ │ ├── test_sparse_accessor.py │ │ │ │ └── test_str_accessor.py │ │ │ ├── indexing │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_datetime.cpython-39.pyc │ │ │ │ │ ├── test_delitem.cpython-39.pyc │ │ │ │ │ ├── test_get.cpython-39.pyc │ │ │ │ │ ├── test_getitem.cpython-39.pyc │ │ │ │ │ ├── test_indexing.cpython-39.pyc │ │ │ │ │ ├── test_mask.cpython-39.pyc │ │ │ │ │ ├── test_set_value.cpython-39.pyc │ │ │ │ │ ├── test_setitem.cpython-39.pyc │ │ │ │ │ ├── test_take.cpython-39.pyc │ │ │ │ │ ├── test_where.cpython-39.pyc │ │ │ │ │ └── test_xs.cpython-39.pyc │ │ │ │ ├── test_datetime.py │ │ │ │ ├── test_delitem.py │ │ │ │ ├── test_get.py │ │ │ │ ├── test_getitem.py │ │ │ │ ├── test_indexing.py │ │ │ │ ├── test_mask.py │ │ │ │ ├── test_set_value.py │ │ │ │ ├── test_setitem.py │ │ │ │ ├── test_take.py │ │ │ │ ├── test_where.py │ │ │ │ └── test_xs.py │ │ │ ├── methods │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_align.cpython-39.pyc │ │ │ │ │ ├── test_append.cpython-39.pyc │ │ │ │ │ ├── test_argsort.cpython-39.pyc │ │ │ │ │ ├── test_asof.cpython-39.pyc │ │ │ │ │ ├── test_astype.cpython-39.pyc │ │ │ │ │ ├── test_autocorr.cpython-39.pyc │ │ │ │ │ ├── test_between.cpython-39.pyc │ │ │ │ │ ├── test_clip.cpython-39.pyc │ │ │ │ │ ├── test_combine.cpython-39.pyc │ │ │ │ │ ├── test_combine_first.cpython-39.pyc │ │ │ │ │ ├── test_compare.cpython-39.pyc │ │ │ │ │ ├── test_convert.cpython-39.pyc │ │ │ │ │ ├── test_convert_dtypes.cpython-39.pyc │ │ │ │ │ ├── test_copy.cpython-39.pyc │ │ │ │ │ ├── test_count.cpython-39.pyc │ │ │ │ │ ├── test_cov_corr.cpython-39.pyc │ │ │ │ │ ├── test_describe.cpython-39.pyc │ │ │ │ │ ├── test_diff.cpython-39.pyc │ │ │ │ │ ├── test_drop.cpython-39.pyc │ │ │ │ │ ├── test_drop_duplicates.cpython-39.pyc │ │ │ │ │ ├── test_dropna.cpython-39.pyc │ │ │ │ │ ├── test_dtypes.cpython-39.pyc │ │ │ │ │ ├── test_duplicated.cpython-39.pyc │ │ │ │ │ ├── test_equals.cpython-39.pyc │ │ │ │ │ ├── test_explode.cpython-39.pyc │ │ │ │ │ ├── test_fillna.cpython-39.pyc │ │ │ │ │ ├── test_get_numeric_data.cpython-39.pyc │ │ │ │ │ ├── test_head_tail.cpython-39.pyc │ │ │ │ │ ├── test_infer_objects.cpython-39.pyc │ │ │ │ │ ├── test_interpolate.cpython-39.pyc │ │ │ │ │ ├── test_is_monotonic.cpython-39.pyc │ │ │ │ │ ├── test_is_unique.cpython-39.pyc │ │ │ │ │ ├── test_isin.cpython-39.pyc │ │ │ │ │ ├── test_isna.cpython-39.pyc │ │ │ │ │ ├── test_item.cpython-39.pyc │ │ │ │ │ ├── test_matmul.cpython-39.pyc │ │ │ │ │ ├── test_nlargest.cpython-39.pyc │ │ │ │ │ ├── test_nunique.cpython-39.pyc │ │ │ │ │ ├── test_pct_change.cpython-39.pyc │ │ │ │ │ ├── test_pop.cpython-39.pyc │ │ │ │ │ ├── test_quantile.cpython-39.pyc │ │ │ │ │ ├── test_rank.cpython-39.pyc │ │ │ │ │ ├── test_reindex.cpython-39.pyc │ │ │ │ │ ├── test_reindex_like.cpython-39.pyc │ │ │ │ │ ├── test_rename.cpython-39.pyc │ │ │ │ │ ├── test_rename_axis.cpython-39.pyc │ │ │ │ │ ├── test_repeat.cpython-39.pyc │ │ │ │ │ ├── test_replace.cpython-39.pyc │ │ │ │ │ ├── test_reset_index.cpython-39.pyc │ │ │ │ │ ├── test_round.cpython-39.pyc │ │ │ │ │ ├── test_searchsorted.cpython-39.pyc │ │ │ │ │ ├── test_set_name.cpython-39.pyc │ │ │ │ │ ├── test_sort_index.cpython-39.pyc │ │ │ │ │ ├── test_sort_values.cpython-39.pyc │ │ │ │ │ ├── test_to_csv.cpython-39.pyc │ │ │ │ │ ├── test_to_dict.cpython-39.pyc │ │ │ │ │ ├── test_to_frame.cpython-39.pyc │ │ │ │ │ ├── test_truncate.cpython-39.pyc │ │ │ │ │ ├── test_tz_localize.cpython-39.pyc │ │ │ │ │ ├── test_unique.cpython-39.pyc │ │ │ │ │ ├── test_unstack.cpython-39.pyc │ │ │ │ │ ├── test_update.cpython-39.pyc │ │ │ │ │ ├── test_value_counts.cpython-39.pyc │ │ │ │ │ ├── test_values.cpython-39.pyc │ │ │ │ │ └── test_view.cpython-39.pyc │ │ │ │ ├── test_align.py │ │ │ │ ├── test_append.py │ │ │ │ ├── test_argsort.py │ │ │ │ ├── test_asof.py │ │ │ │ ├── test_astype.py │ │ │ │ ├── test_autocorr.py │ │ │ │ ├── test_between.py │ │ │ │ ├── test_clip.py │ │ │ │ ├── test_combine.py │ │ │ │ ├── test_combine_first.py │ │ │ │ ├── test_compare.py │ │ │ │ ├── test_convert.py │ │ │ │ ├── test_convert_dtypes.py │ │ │ │ ├── test_copy.py │ │ │ │ ├── test_count.py │ │ │ │ ├── test_cov_corr.py │ │ │ │ ├── test_describe.py │ │ │ │ ├── test_diff.py │ │ │ │ ├── test_drop.py │ │ │ │ ├── test_drop_duplicates.py │ │ │ │ ├── test_dropna.py │ │ │ │ ├── test_dtypes.py │ │ │ │ ├── test_duplicated.py │ │ │ │ ├── test_equals.py │ │ │ │ ├── test_explode.py │ │ │ │ ├── test_fillna.py │ │ │ │ ├── test_get_numeric_data.py │ │ │ │ ├── test_head_tail.py │ │ │ │ ├── test_infer_objects.py │ │ │ │ ├── test_interpolate.py │ │ │ │ ├── test_is_monotonic.py │ │ │ │ ├── test_is_unique.py │ │ │ │ ├── test_isin.py │ │ │ │ ├── test_isna.py │ │ │ │ ├── test_item.py │ │ │ │ ├── test_matmul.py │ │ │ │ ├── test_nlargest.py │ │ │ │ ├── test_nunique.py │ │ │ │ ├── test_pct_change.py │ │ │ │ ├── test_pop.py │ │ │ │ ├── test_quantile.py │ │ │ │ ├── test_rank.py │ │ │ │ ├── test_reindex.py │ │ │ │ ├── test_reindex_like.py │ │ │ │ ├── test_rename.py │ │ │ │ ├── test_rename_axis.py │ │ │ │ ├── test_repeat.py │ │ │ │ ├── test_replace.py │ │ │ │ ├── test_reset_index.py │ │ │ │ ├── test_round.py │ │ │ │ ├── test_searchsorted.py │ │ │ │ ├── test_set_name.py │ │ │ │ ├── test_sort_index.py │ │ │ │ ├── test_sort_values.py │ │ │ │ ├── test_to_csv.py │ │ │ │ ├── test_to_dict.py │ │ │ │ ├── test_to_frame.py │ │ │ │ ├── test_truncate.py │ │ │ │ ├── test_tz_localize.py │ │ │ │ ├── test_unique.py │ │ │ │ ├── test_unstack.py │ │ │ │ ├── test_update.py │ │ │ │ ├── test_value_counts.py │ │ │ │ ├── test_values.py │ │ │ │ └── test_view.py │ │ │ ├── test_api.py │ │ │ ├── test_arithmetic.py │ │ │ ├── test_constructors.py │ │ │ ├── test_cumulative.py │ │ │ ├── test_iteration.py │ │ │ ├── test_logical_ops.py │ │ │ ├── test_missing.py │ │ │ ├── test_npfuncs.py │ │ │ ├── test_reductions.py │ │ │ ├── test_repr.py │ │ │ ├── test_subclass.py │ │ │ ├── test_ufunc.py │ │ │ ├── test_unary.py │ │ │ └── test_validate.py │ │ ├── strings │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── conftest.cpython-39.pyc │ │ │ │ ├── test_api.cpython-39.pyc │ │ │ │ ├── test_case_justify.cpython-39.pyc │ │ │ │ ├── test_cat.cpython-39.pyc │ │ │ │ ├── test_extract.cpython-39.pyc │ │ │ │ ├── test_find_replace.cpython-39.pyc │ │ │ │ ├── test_get_dummies.cpython-39.pyc │ │ │ │ ├── test_split_partition.cpython-39.pyc │ │ │ │ ├── test_string_array.cpython-39.pyc │ │ │ │ └── test_strings.cpython-39.pyc │ │ │ ├── conftest.py │ │ │ ├── test_api.py │ │ │ ├── test_case_justify.py │ │ │ ├── test_cat.py │ │ │ ├── test_extract.py │ │ │ ├── test_find_replace.py │ │ │ ├── test_get_dummies.py │ │ │ ├── test_split_partition.py │ │ │ ├── test_string_array.py │ │ │ └── test_strings.py │ │ ├── test_aggregation.py │ │ ├── test_algos.py │ │ ├── test_common.py │ │ ├── test_downstream.py │ │ ├── test_errors.py │ │ ├── test_expressions.py │ │ ├── test_flags.py │ │ ├── test_multilevel.py │ │ ├── test_nanops.py │ │ ├── test_optional_dependency.py │ │ ├── test_register_accessor.py │ │ ├── test_sorting.py │ │ ├── test_take.py │ │ ├── tools │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── test_to_datetime.cpython-39.pyc │ │ │ │ ├── test_to_numeric.cpython-39.pyc │ │ │ │ ├── test_to_time.cpython-39.pyc │ │ │ │ └── test_to_timedelta.cpython-39.pyc │ │ │ ├── test_to_datetime.py │ │ │ ├── test_to_numeric.py │ │ │ ├── test_to_time.py │ │ │ └── test_to_timedelta.py │ │ ├── tseries │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ ├── frequencies │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_freq_code.cpython-39.pyc │ │ │ │ │ ├── test_frequencies.cpython-39.pyc │ │ │ │ │ └── test_inference.cpython-39.pyc │ │ │ │ ├── test_freq_code.py │ │ │ │ ├── test_frequencies.py │ │ │ │ └── test_inference.py │ │ │ ├── holiday │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_calendar.cpython-39.pyc │ │ │ │ │ ├── test_federal.cpython-39.pyc │ │ │ │ │ ├── test_holiday.cpython-39.pyc │ │ │ │ │ └── test_observance.cpython-39.pyc │ │ │ │ ├── test_calendar.py │ │ │ │ ├── test_federal.py │ │ │ │ ├── test_holiday.py │ │ │ │ └── test_observance.py │ │ │ └── offsets │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── common.cpython-39.pyc │ │ │ │ ├── conftest.cpython-39.pyc │ │ │ │ ├── test_business_day.cpython-39.pyc │ │ │ │ ├── test_business_hour.cpython-39.pyc │ │ │ │ ├── test_business_month.cpython-39.pyc │ │ │ │ ├── test_business_quarter.cpython-39.pyc │ │ │ │ ├── test_business_year.cpython-39.pyc │ │ │ │ ├── test_custom_business_day.cpython-39.pyc │ │ │ │ ├── test_custom_business_hour.cpython-39.pyc │ │ │ │ ├── test_custom_business_month.cpython-39.pyc │ │ │ │ ├── test_dst.cpython-39.pyc │ │ │ │ ├── test_easter.cpython-39.pyc │ │ │ │ ├── test_fiscal.cpython-39.pyc │ │ │ │ ├── test_index.cpython-39.pyc │ │ │ │ ├── test_month.cpython-39.pyc │ │ │ │ ├── test_offsets.cpython-39.pyc │ │ │ │ ├── test_offsets_properties.cpython-39.pyc │ │ │ │ ├── test_quarter.cpython-39.pyc │ │ │ │ ├── test_ticks.cpython-39.pyc │ │ │ │ ├── test_week.cpython-39.pyc │ │ │ │ └── test_year.cpython-39.pyc │ │ │ │ ├── common.py │ │ │ │ ├── conftest.py │ │ │ │ ├── test_business_day.py │ │ │ │ ├── test_business_hour.py │ │ │ │ ├── test_business_month.py │ │ │ │ ├── test_business_quarter.py │ │ │ │ ├── test_business_year.py │ │ │ │ ├── test_custom_business_day.py │ │ │ │ ├── test_custom_business_hour.py │ │ │ │ ├── test_custom_business_month.py │ │ │ │ ├── test_dst.py │ │ │ │ ├── test_easter.py │ │ │ │ ├── test_fiscal.py │ │ │ │ ├── test_index.py │ │ │ │ ├── test_month.py │ │ │ │ ├── test_offsets.py │ │ │ │ ├── test_offsets_properties.py │ │ │ │ ├── test_quarter.py │ │ │ │ ├── test_ticks.py │ │ │ │ ├── test_week.py │ │ │ │ └── test_year.py │ │ ├── tslibs │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── test_api.cpython-39.pyc │ │ │ │ ├── test_array_to_datetime.cpython-39.pyc │ │ │ │ ├── test_ccalendar.cpython-39.pyc │ │ │ │ ├── test_conversion.cpython-39.pyc │ │ │ │ ├── test_fields.cpython-39.pyc │ │ │ │ ├── test_libfrequencies.cpython-39.pyc │ │ │ │ ├── test_liboffsets.cpython-39.pyc │ │ │ │ ├── test_np_datetime.cpython-39.pyc │ │ │ │ ├── test_parse_iso8601.cpython-39.pyc │ │ │ │ ├── test_parsing.cpython-39.pyc │ │ │ │ ├── test_period_asfreq.cpython-39.pyc │ │ │ │ ├── test_resolution.cpython-39.pyc │ │ │ │ ├── test_timedeltas.cpython-39.pyc │ │ │ │ ├── test_timezones.cpython-39.pyc │ │ │ │ ├── test_to_offset.cpython-39.pyc │ │ │ │ └── test_tzconversion.cpython-39.pyc │ │ │ ├── test_api.py │ │ │ ├── test_array_to_datetime.py │ │ │ ├── test_ccalendar.py │ │ │ ├── test_conversion.py │ │ │ ├── test_fields.py │ │ │ ├── test_libfrequencies.py │ │ │ ├── test_liboffsets.py │ │ │ ├── test_np_datetime.py │ │ │ ├── test_parse_iso8601.py │ │ │ ├── test_parsing.py │ │ │ ├── test_period_asfreq.py │ │ │ ├── test_resolution.py │ │ │ ├── test_timedeltas.py │ │ │ ├── test_timezones.py │ │ │ ├── test_to_offset.py │ │ │ └── test_tzconversion.py │ │ ├── util │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── conftest.cpython-39.pyc │ │ │ │ ├── test_assert_almost_equal.cpython-39.pyc │ │ │ │ ├── test_assert_attr_equal.cpython-39.pyc │ │ │ │ ├── test_assert_categorical_equal.cpython-39.pyc │ │ │ │ ├── test_assert_extension_array_equal.cpython-39.pyc │ │ │ │ ├── test_assert_frame_equal.cpython-39.pyc │ │ │ │ ├── test_assert_index_equal.cpython-39.pyc │ │ │ │ ├── test_assert_interval_array_equal.cpython-39.pyc │ │ │ │ ├── test_assert_numpy_array_equal.cpython-39.pyc │ │ │ │ ├── test_assert_produces_warning.cpython-39.pyc │ │ │ │ ├── test_assert_series_equal.cpython-39.pyc │ │ │ │ ├── test_deprecate.cpython-39.pyc │ │ │ │ ├── test_deprecate_kwarg.cpython-39.pyc │ │ │ │ ├── test_deprecate_nonkeyword_arguments.cpython-39.pyc │ │ │ │ ├── test_doc.cpython-39.pyc │ │ │ │ ├── test_hashing.cpython-39.pyc │ │ │ │ ├── test_make_objects.cpython-39.pyc │ │ │ │ ├── test_numba.cpython-39.pyc │ │ │ │ ├── test_rewrite_warning.cpython-39.pyc │ │ │ │ ├── test_safe_import.cpython-39.pyc │ │ │ │ ├── test_shares_memory.cpython-39.pyc │ │ │ │ ├── test_show_versions.cpython-39.pyc │ │ │ │ ├── test_util.cpython-39.pyc │ │ │ │ ├── test_validate_args.cpython-39.pyc │ │ │ │ ├── test_validate_args_and_kwargs.cpython-39.pyc │ │ │ │ ├── test_validate_inclusive.cpython-39.pyc │ │ │ │ └── test_validate_kwargs.cpython-39.pyc │ │ │ ├── conftest.py │ │ │ ├── test_assert_almost_equal.py │ │ │ ├── test_assert_attr_equal.py │ │ │ ├── test_assert_categorical_equal.py │ │ │ ├── test_assert_extension_array_equal.py │ │ │ ├── test_assert_frame_equal.py │ │ │ ├── test_assert_index_equal.py │ │ │ ├── test_assert_interval_array_equal.py │ │ │ ├── test_assert_numpy_array_equal.py │ │ │ ├── test_assert_produces_warning.py │ │ │ ├── test_assert_series_equal.py │ │ │ ├── test_deprecate.py │ │ │ ├── test_deprecate_kwarg.py │ │ │ ├── test_deprecate_nonkeyword_arguments.py │ │ │ ├── test_doc.py │ │ │ ├── test_hashing.py │ │ │ ├── test_make_objects.py │ │ │ ├── test_numba.py │ │ │ ├── test_rewrite_warning.py │ │ │ ├── test_safe_import.py │ │ │ ├── test_shares_memory.py │ │ │ ├── test_show_versions.py │ │ │ ├── test_util.py │ │ │ ├── test_validate_args.py │ │ │ ├── test_validate_args_and_kwargs.py │ │ │ ├── test_validate_inclusive.py │ │ │ └── test_validate_kwargs.py │ │ └── window │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── conftest.cpython-39.pyc │ │ │ ├── test_api.cpython-39.pyc │ │ │ ├── test_apply.cpython-39.pyc │ │ │ ├── test_base_indexer.cpython-39.pyc │ │ │ ├── test_cython_aggregations.cpython-39.pyc │ │ │ ├── test_dtypes.cpython-39.pyc │ │ │ ├── test_ewm.cpython-39.pyc │ │ │ ├── test_expanding.cpython-39.pyc │ │ │ ├── test_groupby.cpython-39.pyc │ │ │ ├── test_numba.cpython-39.pyc │ │ │ ├── test_online.cpython-39.pyc │ │ │ ├── test_pairwise.cpython-39.pyc │ │ │ ├── test_rolling.cpython-39.pyc │ │ │ ├── test_rolling_functions.cpython-39.pyc │ │ │ ├── test_rolling_quantile.cpython-39.pyc │ │ │ ├── test_rolling_skew_kurt.cpython-39.pyc │ │ │ ├── test_timeseries_window.cpython-39.pyc │ │ │ └── test_win_type.cpython-39.pyc │ │ │ ├── conftest.py │ │ │ ├── moments │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── conftest.cpython-39.pyc │ │ │ │ ├── test_moments_consistency_ewm.cpython-39.pyc │ │ │ │ ├── test_moments_consistency_expanding.cpython-39.pyc │ │ │ │ └── test_moments_consistency_rolling.cpython-39.pyc │ │ │ ├── conftest.py │ │ │ ├── test_moments_consistency_ewm.py │ │ │ ├── test_moments_consistency_expanding.py │ │ │ └── test_moments_consistency_rolling.py │ │ │ ├── test_api.py │ │ │ ├── test_apply.py │ │ │ ├── test_base_indexer.py │ │ │ ├── test_cython_aggregations.py │ │ │ ├── test_dtypes.py │ │ │ ├── test_ewm.py │ │ │ ├── test_expanding.py │ │ │ ├── test_groupby.py │ │ │ ├── test_numba.py │ │ │ ├── test_online.py │ │ │ ├── test_pairwise.py │ │ │ ├── test_rolling.py │ │ │ ├── test_rolling_functions.py │ │ │ ├── test_rolling_quantile.py │ │ │ ├── test_rolling_skew_kurt.py │ │ │ ├── test_timeseries_window.py │ │ │ └── test_win_type.py │ ├── tseries │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── api.cpython-39.pyc │ │ │ ├── frequencies.cpython-39.pyc │ │ │ ├── holiday.cpython-39.pyc │ │ │ └── offsets.cpython-39.pyc │ │ ├── api.py │ │ ├── frequencies.py │ │ ├── holiday.py │ │ └── offsets.py │ └── util │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── _decorators.cpython-39.pyc │ │ ├── _doctools.cpython-39.pyc │ │ ├── _exceptions.cpython-39.pyc │ │ ├── _print_versions.cpython-39.pyc │ │ ├── _test_decorators.cpython-39.pyc │ │ ├── _tester.cpython-39.pyc │ │ ├── _validators.cpython-39.pyc │ │ └── testing.cpython-39.pyc │ │ ├── _decorators.py │ │ ├── _doctools.py │ │ ├── _exceptions.py │ │ ├── _print_versions.py │ │ ├── _test_decorators.py │ │ ├── _tester.py │ │ ├── _validators.py │ │ ├── testing.py │ │ └── version │ │ ├── __init__.py │ │ └── __pycache__ │ │ └── __init__.cpython-39.pyc │ ├── pandas_stubs-1.5.2.230105.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ └── WHEEL │ ├── pip-21.1.1.dist-info │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt │ ├── pip │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ └── __main__.cpython-39.pyc │ ├── _internal │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── build_env.cpython-39.pyc │ │ │ ├── cache.cpython-39.pyc │ │ │ ├── configuration.cpython-39.pyc │ │ │ ├── exceptions.cpython-39.pyc │ │ │ ├── main.cpython-39.pyc │ │ │ ├── pyproject.cpython-39.pyc │ │ │ ├── self_outdated_check.cpython-39.pyc │ │ │ └── wheel_builder.cpython-39.pyc │ │ ├── build_env.py │ │ ├── cache.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── autocompletion.cpython-39.pyc │ │ │ │ ├── base_command.cpython-39.pyc │ │ │ │ ├── cmdoptions.cpython-39.pyc │ │ │ │ ├── command_context.cpython-39.pyc │ │ │ │ ├── main.cpython-39.pyc │ │ │ │ ├── main_parser.cpython-39.pyc │ │ │ │ ├── parser.cpython-39.pyc │ │ │ │ ├── progress_bars.cpython-39.pyc │ │ │ │ ├── req_command.cpython-39.pyc │ │ │ │ ├── spinners.cpython-39.pyc │ │ │ │ └── status_codes.cpython-39.pyc │ │ │ ├── autocompletion.py │ │ │ ├── base_command.py │ │ │ ├── cmdoptions.py │ │ │ ├── command_context.py │ │ │ ├── main.py │ │ │ ├── main_parser.py │ │ │ ├── parser.py │ │ │ ├── progress_bars.py │ │ │ ├── req_command.py │ │ │ ├── spinners.py │ │ │ └── status_codes.py │ │ ├── commands │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ ├── completion.cpython-39.pyc │ │ │ │ ├── configuration.cpython-39.pyc │ │ │ │ ├── debug.cpython-39.pyc │ │ │ │ ├── download.cpython-39.pyc │ │ │ │ ├── freeze.cpython-39.pyc │ │ │ │ ├── hash.cpython-39.pyc │ │ │ │ ├── help.cpython-39.pyc │ │ │ │ ├── install.cpython-39.pyc │ │ │ │ ├── list.cpython-39.pyc │ │ │ │ ├── search.cpython-39.pyc │ │ │ │ ├── show.cpython-39.pyc │ │ │ │ ├── uninstall.cpython-39.pyc │ │ │ │ └── wheel.cpython-39.pyc │ │ │ ├── cache.py │ │ │ ├── check.py │ │ │ ├── completion.py │ │ │ ├── configuration.py │ │ │ ├── debug.py │ │ │ ├── download.py │ │ │ ├── freeze.py │ │ │ ├── hash.py │ │ │ ├── help.py │ │ │ ├── install.py │ │ │ ├── list.py │ │ │ ├── search.py │ │ │ ├── show.py │ │ │ ├── uninstall.py │ │ │ └── wheel.py │ │ ├── configuration.py │ │ ├── distributions │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ ├── installed.cpython-39.pyc │ │ │ │ ├── sdist.cpython-39.pyc │ │ │ │ └── wheel.cpython-39.pyc │ │ │ ├── base.py │ │ │ ├── installed.py │ │ │ ├── sdist.py │ │ │ └── wheel.py │ │ ├── exceptions.py │ │ ├── index │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── collector.cpython-39.pyc │ │ │ │ ├── package_finder.cpython-39.pyc │ │ │ │ └── sources.cpython-39.pyc │ │ │ ├── collector.py │ │ │ ├── package_finder.py │ │ │ └── sources.py │ │ ├── locations │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _distutils.cpython-39.pyc │ │ │ │ ├── _sysconfig.cpython-39.pyc │ │ │ │ └── base.cpython-39.pyc │ │ │ ├── _distutils.py │ │ │ ├── _sysconfig.py │ │ │ └── base.py │ │ ├── main.py │ │ ├── metadata │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ └── pkg_resources.cpython-39.pyc │ │ │ ├── base.py │ │ │ └── pkg_resources.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── candidate.cpython-39.pyc │ │ │ │ ├── direct_url.cpython-39.pyc │ │ │ │ ├── format_control.cpython-39.pyc │ │ │ │ ├── index.cpython-39.pyc │ │ │ │ ├── link.cpython-39.pyc │ │ │ │ ├── scheme.cpython-39.pyc │ │ │ │ ├── search_scope.cpython-39.pyc │ │ │ │ ├── selection_prefs.cpython-39.pyc │ │ │ │ ├── target_python.cpython-39.pyc │ │ │ │ └── wheel.cpython-39.pyc │ │ │ ├── candidate.py │ │ │ ├── direct_url.py │ │ │ ├── format_control.py │ │ │ ├── index.py │ │ │ ├── link.py │ │ │ ├── scheme.py │ │ │ ├── search_scope.py │ │ │ ├── selection_prefs.py │ │ │ ├── target_python.py │ │ │ └── wheel.py │ │ ├── network │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── auth.cpython-39.pyc │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ ├── download.cpython-39.pyc │ │ │ │ ├── lazy_wheel.cpython-39.pyc │ │ │ │ ├── session.cpython-39.pyc │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ └── xmlrpc.cpython-39.pyc │ │ │ ├── auth.py │ │ │ ├── cache.py │ │ │ ├── download.py │ │ │ ├── lazy_wheel.py │ │ │ ├── session.py │ │ │ ├── utils.py │ │ │ └── xmlrpc.py │ │ ├── operations │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ ├── freeze.cpython-39.pyc │ │ │ │ └── prepare.cpython-39.pyc │ │ │ ├── build │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── metadata.cpython-39.pyc │ │ │ │ │ ├── metadata_legacy.cpython-39.pyc │ │ │ │ │ ├── wheel.cpython-39.pyc │ │ │ │ │ └── wheel_legacy.cpython-39.pyc │ │ │ │ ├── metadata.py │ │ │ │ ├── metadata_legacy.py │ │ │ │ ├── wheel.py │ │ │ │ └── wheel_legacy.py │ │ │ ├── check.py │ │ │ ├── freeze.py │ │ │ ├── install │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── editable_legacy.cpython-39.pyc │ │ │ │ │ ├── legacy.cpython-39.pyc │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ ├── editable_legacy.py │ │ │ │ ├── legacy.py │ │ │ │ └── wheel.py │ │ │ └── prepare.py │ │ ├── pyproject.py │ │ ├── req │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── constructors.cpython-39.pyc │ │ │ │ ├── req_file.cpython-39.pyc │ │ │ │ ├── req_install.cpython-39.pyc │ │ │ │ ├── req_set.cpython-39.pyc │ │ │ │ ├── req_tracker.cpython-39.pyc │ │ │ │ └── req_uninstall.cpython-39.pyc │ │ │ ├── constructors.py │ │ │ ├── req_file.py │ │ │ ├── req_install.py │ │ │ ├── req_set.py │ │ │ ├── req_tracker.py │ │ │ └── req_uninstall.py │ │ ├── resolution │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── base.cpython-39.pyc │ │ │ ├── base.py │ │ │ ├── legacy │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── resolver.cpython-39.pyc │ │ │ │ └── resolver.py │ │ │ └── resolvelib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ ├── candidates.cpython-39.pyc │ │ │ │ ├── factory.cpython-39.pyc │ │ │ │ ├── found_candidates.cpython-39.pyc │ │ │ │ ├── provider.cpython-39.pyc │ │ │ │ ├── reporter.cpython-39.pyc │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ └── resolver.cpython-39.pyc │ │ │ │ ├── base.py │ │ │ │ ├── candidates.py │ │ │ │ ├── factory.py │ │ │ │ ├── found_candidates.py │ │ │ │ ├── provider.py │ │ │ │ ├── reporter.py │ │ │ │ ├── requirements.py │ │ │ │ └── resolver.py │ │ ├── self_outdated_check.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── appdirs.cpython-39.pyc │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ ├── compatibility_tags.cpython-39.pyc │ │ │ │ ├── datetime.cpython-39.pyc │ │ │ │ ├── deprecation.cpython-39.pyc │ │ │ │ ├── direct_url_helpers.cpython-39.pyc │ │ │ │ ├── distutils_args.cpython-39.pyc │ │ │ │ ├── encoding.cpython-39.pyc │ │ │ │ ├── entrypoints.cpython-39.pyc │ │ │ │ ├── filesystem.cpython-39.pyc │ │ │ │ ├── filetypes.cpython-39.pyc │ │ │ │ ├── glibc.cpython-39.pyc │ │ │ │ ├── hashes.cpython-39.pyc │ │ │ │ ├── inject_securetransport.cpython-39.pyc │ │ │ │ ├── logging.cpython-39.pyc │ │ │ │ ├── misc.cpython-39.pyc │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ ├── packaging.cpython-39.pyc │ │ │ │ ├── parallel.cpython-39.pyc │ │ │ │ ├── pkg_resources.cpython-39.pyc │ │ │ │ ├── setuptools_build.cpython-39.pyc │ │ │ │ ├── subprocess.cpython-39.pyc │ │ │ │ ├── temp_dir.cpython-39.pyc │ │ │ │ ├── unpacking.cpython-39.pyc │ │ │ │ ├── urls.cpython-39.pyc │ │ │ │ ├── virtualenv.cpython-39.pyc │ │ │ │ └── wheel.cpython-39.pyc │ │ │ ├── appdirs.py │ │ │ ├── compat.py │ │ │ ├── compatibility_tags.py │ │ │ ├── datetime.py │ │ │ ├── deprecation.py │ │ │ ├── direct_url_helpers.py │ │ │ ├── distutils_args.py │ │ │ ├── encoding.py │ │ │ ├── entrypoints.py │ │ │ ├── filesystem.py │ │ │ ├── filetypes.py │ │ │ ├── glibc.py │ │ │ ├── hashes.py │ │ │ ├── inject_securetransport.py │ │ │ ├── logging.py │ │ │ ├── misc.py │ │ │ ├── models.py │ │ │ ├── packaging.py │ │ │ ├── parallel.py │ │ │ ├── pkg_resources.py │ │ │ ├── setuptools_build.py │ │ │ ├── subprocess.py │ │ │ ├── temp_dir.py │ │ │ ├── unpacking.py │ │ │ ├── urls.py │ │ │ ├── virtualenv.py │ │ │ └── wheel.py │ │ ├── vcs │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── bazaar.cpython-39.pyc │ │ │ │ ├── git.cpython-39.pyc │ │ │ │ ├── mercurial.cpython-39.pyc │ │ │ │ ├── subversion.cpython-39.pyc │ │ │ │ └── versioncontrol.cpython-39.pyc │ │ │ ├── bazaar.py │ │ │ ├── git.py │ │ │ ├── mercurial.py │ │ │ ├── subversion.py │ │ │ └── versioncontrol.py │ │ └── wheel_builder.py │ ├── _vendor │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── appdirs.cpython-39.pyc │ │ │ ├── distro.cpython-39.pyc │ │ │ ├── pyparsing.cpython-39.pyc │ │ │ └── six.cpython-39.pyc │ │ ├── appdirs.py │ │ ├── cachecontrol │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _cmd.cpython-39.pyc │ │ │ │ ├── adapter.cpython-39.pyc │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ ├── controller.cpython-39.pyc │ │ │ │ ├── filewrapper.cpython-39.pyc │ │ │ │ ├── heuristics.cpython-39.pyc │ │ │ │ ├── serialize.cpython-39.pyc │ │ │ │ └── wrapper.cpython-39.pyc │ │ │ ├── _cmd.py │ │ │ ├── adapter.py │ │ │ ├── cache.py │ │ │ ├── caches │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── file_cache.cpython-39.pyc │ │ │ │ │ └── redis_cache.cpython-39.pyc │ │ │ │ ├── file_cache.py │ │ │ │ └── redis_cache.py │ │ │ ├── compat.py │ │ │ ├── controller.py │ │ │ ├── filewrapper.py │ │ │ ├── heuristics.py │ │ │ ├── serialize.py │ │ │ └── wrapper.py │ │ ├── certifi │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ └── core.cpython-39.pyc │ │ │ ├── cacert.pem │ │ │ └── core.py │ │ ├── chardet │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── big5freq.cpython-39.pyc │ │ │ │ ├── big5prober.cpython-39.pyc │ │ │ │ ├── chardistribution.cpython-39.pyc │ │ │ │ ├── charsetgroupprober.cpython-39.pyc │ │ │ │ ├── charsetprober.cpython-39.pyc │ │ │ │ ├── codingstatemachine.cpython-39.pyc │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ ├── cp949prober.cpython-39.pyc │ │ │ │ ├── enums.cpython-39.pyc │ │ │ │ ├── escprober.cpython-39.pyc │ │ │ │ ├── escsm.cpython-39.pyc │ │ │ │ ├── eucjpprober.cpython-39.pyc │ │ │ │ ├── euckrfreq.cpython-39.pyc │ │ │ │ ├── euckrprober.cpython-39.pyc │ │ │ │ ├── euctwfreq.cpython-39.pyc │ │ │ │ ├── euctwprober.cpython-39.pyc │ │ │ │ ├── gb2312freq.cpython-39.pyc │ │ │ │ ├── gb2312prober.cpython-39.pyc │ │ │ │ ├── hebrewprober.cpython-39.pyc │ │ │ │ ├── jisfreq.cpython-39.pyc │ │ │ │ ├── jpcntx.cpython-39.pyc │ │ │ │ ├── langbulgarianmodel.cpython-39.pyc │ │ │ │ ├── langgreekmodel.cpython-39.pyc │ │ │ │ ├── langhebrewmodel.cpython-39.pyc │ │ │ │ ├── langhungarianmodel.cpython-39.pyc │ │ │ │ ├── langrussianmodel.cpython-39.pyc │ │ │ │ ├── langthaimodel.cpython-39.pyc │ │ │ │ ├── langturkishmodel.cpython-39.pyc │ │ │ │ ├── latin1prober.cpython-39.pyc │ │ │ │ ├── mbcharsetprober.cpython-39.pyc │ │ │ │ ├── mbcsgroupprober.cpython-39.pyc │ │ │ │ ├── mbcssm.cpython-39.pyc │ │ │ │ ├── sbcharsetprober.cpython-39.pyc │ │ │ │ ├── sbcsgroupprober.cpython-39.pyc │ │ │ │ ├── sjisprober.cpython-39.pyc │ │ │ │ ├── universaldetector.cpython-39.pyc │ │ │ │ ├── utf8prober.cpython-39.pyc │ │ │ │ └── version.cpython-39.pyc │ │ │ ├── big5freq.py │ │ │ ├── big5prober.py │ │ │ ├── chardistribution.py │ │ │ ├── charsetgroupprober.py │ │ │ ├── charsetprober.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── chardetect.cpython-39.pyc │ │ │ │ └── chardetect.py │ │ │ ├── codingstatemachine.py │ │ │ ├── compat.py │ │ │ ├── cp949prober.py │ │ │ ├── enums.py │ │ │ ├── escprober.py │ │ │ ├── escsm.py │ │ │ ├── eucjpprober.py │ │ │ ├── euckrfreq.py │ │ │ ├── euckrprober.py │ │ │ ├── euctwfreq.py │ │ │ ├── euctwprober.py │ │ │ ├── gb2312freq.py │ │ │ ├── gb2312prober.py │ │ │ ├── hebrewprober.py │ │ │ ├── jisfreq.py │ │ │ ├── jpcntx.py │ │ │ ├── langbulgarianmodel.py │ │ │ ├── langgreekmodel.py │ │ │ ├── langhebrewmodel.py │ │ │ ├── langhungarianmodel.py │ │ │ ├── langrussianmodel.py │ │ │ ├── langthaimodel.py │ │ │ ├── langturkishmodel.py │ │ │ ├── latin1prober.py │ │ │ ├── mbcharsetprober.py │ │ │ ├── mbcsgroupprober.py │ │ │ ├── mbcssm.py │ │ │ ├── metadata │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── languages.cpython-39.pyc │ │ │ │ └── languages.py │ │ │ ├── sbcharsetprober.py │ │ │ ├── sbcsgroupprober.py │ │ │ ├── sjisprober.py │ │ │ ├── universaldetector.py │ │ │ ├── utf8prober.py │ │ │ └── version.py │ │ ├── colorama │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── ansi.cpython-39.pyc │ │ │ │ ├── ansitowin32.cpython-39.pyc │ │ │ │ ├── initialise.cpython-39.pyc │ │ │ │ ├── win32.cpython-39.pyc │ │ │ │ └── winterm.cpython-39.pyc │ │ │ ├── ansi.py │ │ │ ├── ansitowin32.py │ │ │ ├── initialise.py │ │ │ ├── win32.py │ │ │ └── winterm.py │ │ ├── distlib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ ├── database.cpython-39.pyc │ │ │ │ ├── index.cpython-39.pyc │ │ │ │ ├── locators.cpython-39.pyc │ │ │ │ ├── manifest.cpython-39.pyc │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ ├── metadata.cpython-39.pyc │ │ │ │ ├── resources.cpython-39.pyc │ │ │ │ ├── scripts.cpython-39.pyc │ │ │ │ ├── util.cpython-39.pyc │ │ │ │ ├── version.cpython-39.pyc │ │ │ │ └── wheel.cpython-39.pyc │ │ │ ├── _backport │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── misc.cpython-39.pyc │ │ │ │ │ ├── shutil.cpython-39.pyc │ │ │ │ │ ├── sysconfig.cpython-39.pyc │ │ │ │ │ └── tarfile.cpython-39.pyc │ │ │ │ ├── misc.py │ │ │ │ ├── shutil.py │ │ │ │ ├── sysconfig.cfg │ │ │ │ ├── sysconfig.py │ │ │ │ └── tarfile.py │ │ │ ├── compat.py │ │ │ ├── database.py │ │ │ ├── index.py │ │ │ ├── locators.py │ │ │ ├── manifest.py │ │ │ ├── markers.py │ │ │ ├── metadata.py │ │ │ ├── resources.py │ │ │ ├── scripts.py │ │ │ ├── t32.exe │ │ │ ├── t64.exe │ │ │ ├── util.py │ │ │ ├── version.py │ │ │ ├── w32.exe │ │ │ ├── w64.exe │ │ │ └── wheel.py │ │ ├── distro.py │ │ ├── html5lib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _ihatexml.cpython-39.pyc │ │ │ │ ├── _inputstream.cpython-39.pyc │ │ │ │ ├── _tokenizer.cpython-39.pyc │ │ │ │ ├── _utils.cpython-39.pyc │ │ │ │ ├── constants.cpython-39.pyc │ │ │ │ ├── html5parser.cpython-39.pyc │ │ │ │ └── serializer.cpython-39.pyc │ │ │ ├── _ihatexml.py │ │ │ ├── _inputstream.py │ │ │ ├── _tokenizer.py │ │ │ ├── _trie │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _base.cpython-39.pyc │ │ │ │ │ └── py.cpython-39.pyc │ │ │ │ ├── _base.py │ │ │ │ └── py.py │ │ │ ├── _utils.py │ │ │ ├── constants.py │ │ │ ├── filters │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── alphabeticalattributes.cpython-39.pyc │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ ├── inject_meta_charset.cpython-39.pyc │ │ │ │ │ ├── lint.cpython-39.pyc │ │ │ │ │ ├── optionaltags.cpython-39.pyc │ │ │ │ │ ├── sanitizer.cpython-39.pyc │ │ │ │ │ └── whitespace.cpython-39.pyc │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ ├── base.py │ │ │ │ ├── inject_meta_charset.py │ │ │ │ ├── lint.py │ │ │ │ ├── optionaltags.py │ │ │ │ ├── sanitizer.py │ │ │ │ └── whitespace.py │ │ │ ├── html5parser.py │ │ │ ├── serializer.py │ │ │ ├── treeadapters │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── genshi.cpython-39.pyc │ │ │ │ │ └── sax.cpython-39.pyc │ │ │ │ ├── genshi.py │ │ │ │ └── sax.py │ │ │ ├── treebuilders │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ ├── dom.cpython-39.pyc │ │ │ │ │ ├── etree.cpython-39.pyc │ │ │ │ │ └── etree_lxml.cpython-39.pyc │ │ │ │ ├── base.py │ │ │ │ ├── dom.py │ │ │ │ ├── etree.py │ │ │ │ └── etree_lxml.py │ │ │ └── treewalkers │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ ├── dom.cpython-39.pyc │ │ │ │ ├── etree.cpython-39.pyc │ │ │ │ ├── etree_lxml.cpython-39.pyc │ │ │ │ └── genshi.cpython-39.pyc │ │ │ │ ├── base.py │ │ │ │ ├── dom.py │ │ │ │ ├── etree.py │ │ │ │ ├── etree_lxml.py │ │ │ │ └── genshi.py │ │ ├── idna │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── codec.cpython-39.pyc │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ ├── core.cpython-39.pyc │ │ │ │ ├── idnadata.cpython-39.pyc │ │ │ │ ├── intranges.cpython-39.pyc │ │ │ │ ├── package_data.cpython-39.pyc │ │ │ │ └── uts46data.cpython-39.pyc │ │ │ ├── codec.py │ │ │ ├── compat.py │ │ │ ├── core.py │ │ │ ├── idnadata.py │ │ │ ├── intranges.py │ │ │ ├── package_data.py │ │ │ └── uts46data.py │ │ ├── msgpack │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _version.cpython-39.pyc │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ ├── ext.cpython-39.pyc │ │ │ │ └── fallback.cpython-39.pyc │ │ │ ├── _version.py │ │ │ ├── exceptions.py │ │ │ ├── ext.py │ │ │ └── fallback.py │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __about__.cpython-39.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _compat.cpython-39.pyc │ │ │ │ ├── _structures.cpython-39.pyc │ │ │ │ ├── _typing.cpython-39.pyc │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ ├── specifiers.cpython-39.pyc │ │ │ │ ├── tags.cpython-39.pyc │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ └── version.cpython-39.pyc │ │ │ ├── _compat.py │ │ │ ├── _structures.py │ │ │ ├── _typing.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── tags.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ ├── pep517 │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── build.cpython-39.pyc │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ ├── colorlog.cpython-39.pyc │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ ├── dirtools.cpython-39.pyc │ │ │ │ ├── envbuild.cpython-39.pyc │ │ │ │ ├── meta.cpython-39.pyc │ │ │ │ └── wrappers.cpython-39.pyc │ │ │ ├── build.py │ │ │ ├── check.py │ │ │ ├── colorlog.py │ │ │ ├── compat.py │ │ │ ├── dirtools.py │ │ │ ├── envbuild.py │ │ │ ├── in_process │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── _in_process.cpython-39.pyc │ │ │ │ └── _in_process.py │ │ │ ├── meta.py │ │ │ └── wrappers.py │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── py31compat.cpython-39.pyc │ │ │ └── py31compat.py │ │ ├── progress │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── bar.cpython-39.pyc │ │ │ │ ├── counter.cpython-39.pyc │ │ │ │ └── spinner.cpython-39.pyc │ │ │ ├── bar.py │ │ │ ├── counter.py │ │ │ └── spinner.py │ │ ├── pyparsing.py │ │ ├── requests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── __version__.cpython-39.pyc │ │ │ │ ├── _internal_utils.cpython-39.pyc │ │ │ │ ├── adapters.cpython-39.pyc │ │ │ │ ├── api.cpython-39.pyc │ │ │ │ ├── auth.cpython-39.pyc │ │ │ │ ├── certs.cpython-39.pyc │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ ├── cookies.cpython-39.pyc │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ ├── help.cpython-39.pyc │ │ │ │ ├── hooks.cpython-39.pyc │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ ├── packages.cpython-39.pyc │ │ │ │ ├── sessions.cpython-39.pyc │ │ │ │ ├── status_codes.cpython-39.pyc │ │ │ │ ├── structures.cpython-39.pyc │ │ │ │ └── utils.cpython-39.pyc │ │ │ ├── __version__.py │ │ │ ├── _internal_utils.py │ │ │ ├── adapters.py │ │ │ ├── api.py │ │ │ ├── auth.py │ │ │ ├── certs.py │ │ │ ├── compat.py │ │ │ ├── cookies.py │ │ │ ├── exceptions.py │ │ │ ├── help.py │ │ │ ├── hooks.py │ │ │ ├── models.py │ │ │ ├── packages.py │ │ │ ├── sessions.py │ │ │ ├── status_codes.py │ │ │ ├── structures.py │ │ │ └── utils.py │ │ ├── resolvelib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── providers.cpython-39.pyc │ │ │ │ ├── reporters.cpython-39.pyc │ │ │ │ ├── resolvers.cpython-39.pyc │ │ │ │ └── structs.cpython-39.pyc │ │ │ ├── compat │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── collections_abc.cpython-39.pyc │ │ │ │ └── collections_abc.py │ │ │ ├── providers.py │ │ │ ├── reporters.py │ │ │ ├── resolvers.py │ │ │ └── structs.py │ │ ├── six.py │ │ ├── tenacity │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _asyncio.cpython-39.pyc │ │ │ │ ├── _utils.cpython-39.pyc │ │ │ │ ├── after.cpython-39.pyc │ │ │ │ ├── before.cpython-39.pyc │ │ │ │ ├── before_sleep.cpython-39.pyc │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ ├── nap.cpython-39.pyc │ │ │ │ ├── retry.cpython-39.pyc │ │ │ │ ├── stop.cpython-39.pyc │ │ │ │ ├── tornadoweb.cpython-39.pyc │ │ │ │ └── wait.cpython-39.pyc │ │ │ ├── _asyncio.py │ │ │ ├── _utils.py │ │ │ ├── after.py │ │ │ ├── before.py │ │ │ ├── before_sleep.py │ │ │ ├── compat.py │ │ │ ├── nap.py │ │ │ ├── retry.py │ │ │ ├── stop.py │ │ │ ├── tornadoweb.py │ │ │ └── wait.py │ │ ├── toml │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── decoder.cpython-39.pyc │ │ │ │ ├── encoder.cpython-39.pyc │ │ │ │ ├── ordered.cpython-39.pyc │ │ │ │ └── tz.cpython-39.pyc │ │ │ ├── decoder.py │ │ │ ├── encoder.py │ │ │ ├── ordered.py │ │ │ └── tz.py │ │ ├── urllib3 │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _collections.cpython-39.pyc │ │ │ │ ├── _version.cpython-39.pyc │ │ │ │ ├── connection.cpython-39.pyc │ │ │ │ ├── connectionpool.cpython-39.pyc │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ ├── fields.cpython-39.pyc │ │ │ │ ├── filepost.cpython-39.pyc │ │ │ │ ├── poolmanager.cpython-39.pyc │ │ │ │ ├── request.cpython-39.pyc │ │ │ │ └── response.cpython-39.pyc │ │ │ ├── _collections.py │ │ │ ├── _version.py │ │ │ ├── connection.py │ │ │ ├── connectionpool.py │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _appengine_environ.cpython-39.pyc │ │ │ │ │ ├── appengine.cpython-39.pyc │ │ │ │ │ ├── ntlmpool.cpython-39.pyc │ │ │ │ │ ├── pyopenssl.cpython-39.pyc │ │ │ │ │ ├── securetransport.cpython-39.pyc │ │ │ │ │ └── socks.cpython-39.pyc │ │ │ │ ├── _appengine_environ.py │ │ │ │ ├── _securetransport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── bindings.cpython-39.pyc │ │ │ │ │ │ └── low_level.cpython-39.pyc │ │ │ │ │ ├── bindings.py │ │ │ │ │ └── low_level.py │ │ │ │ ├── appengine.py │ │ │ │ ├── ntlmpool.py │ │ │ │ ├── pyopenssl.py │ │ │ │ ├── securetransport.py │ │ │ │ └── socks.py │ │ │ ├── exceptions.py │ │ │ ├── fields.py │ │ │ ├── filepost.py │ │ │ ├── packages │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── six.cpython-39.pyc │ │ │ │ ├── backports │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── makefile.cpython-39.pyc │ │ │ │ │ └── makefile.py │ │ │ │ ├── six.py │ │ │ │ └── ssl_match_hostname │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── _implementation.cpython-39.pyc │ │ │ │ │ └── _implementation.py │ │ │ ├── poolmanager.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ └── util │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── connection.cpython-39.pyc │ │ │ │ ├── proxy.cpython-39.pyc │ │ │ │ ├── queue.cpython-39.pyc │ │ │ │ ├── request.cpython-39.pyc │ │ │ │ ├── response.cpython-39.pyc │ │ │ │ ├── retry.cpython-39.pyc │ │ │ │ ├── ssl_.cpython-39.pyc │ │ │ │ ├── ssltransport.cpython-39.pyc │ │ │ │ ├── timeout.cpython-39.pyc │ │ │ │ ├── url.cpython-39.pyc │ │ │ │ └── wait.cpython-39.pyc │ │ │ │ ├── connection.py │ │ │ │ ├── proxy.py │ │ │ │ ├── queue.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ ├── retry.py │ │ │ │ ├── ssl_.py │ │ │ │ ├── ssltransport.py │ │ │ │ ├── timeout.py │ │ │ │ ├── url.py │ │ │ │ └── wait.py │ │ ├── vendor.txt │ │ └── webencodings │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── labels.cpython-39.pyc │ │ │ ├── mklabels.cpython-39.pyc │ │ │ ├── tests.cpython-39.pyc │ │ │ └── x_user_defined.cpython-39.pyc │ │ │ ├── labels.py │ │ │ ├── mklabels.py │ │ │ ├── tests.py │ │ │ └── x_user_defined.py │ └── py.typed │ ├── pkg_resources │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-39.pyc │ ├── _vendor │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── appdirs.cpython-39.pyc │ │ │ └── pyparsing.cpython-39.pyc │ │ ├── appdirs.py │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __about__.cpython-39.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _compat.cpython-39.pyc │ │ │ │ ├── _structures.cpython-39.pyc │ │ │ │ ├── _typing.cpython-39.pyc │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ ├── specifiers.cpython-39.pyc │ │ │ │ ├── tags.cpython-39.pyc │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ └── version.cpython-39.pyc │ │ │ ├── _compat.py │ │ │ ├── _structures.py │ │ │ ├── _typing.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── tags.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ └── pyparsing.py │ ├── extern │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ └── tests │ │ └── data │ │ └── my-test-package-source │ │ ├── __pycache__ │ │ └── setup.cpython-39.pyc │ │ └── setup.py │ ├── python_dateutil-2.8.2.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── top_level.txt │ └── zip-safe │ ├── pytz-2022.7.dist-info │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── top_level.txt │ └── zip-safe │ ├── pytz-stubs │ ├── METADATA.toml │ ├── __init__.pyi │ ├── exceptions.pyi │ ├── lazy.pyi │ ├── reference.pyi │ ├── tzfile.pyi │ └── tzinfo.pyi │ ├── pytz │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── exceptions.cpython-39.pyc │ │ ├── lazy.cpython-39.pyc │ │ ├── reference.cpython-39.pyc │ │ ├── tzfile.cpython-39.pyc │ │ └── tzinfo.cpython-39.pyc │ ├── exceptions.py │ ├── lazy.py │ ├── reference.py │ ├── tzfile.py │ ├── tzinfo.py │ └── zoneinfo │ │ ├── Africa │ │ ├── Abidjan │ │ ├── Accra │ │ ├── Addis_Ababa │ │ ├── Algiers │ │ ├── Asmara │ │ ├── Asmera │ │ ├── Bamako │ │ ├── Bangui │ │ ├── Banjul │ │ ├── Bissau │ │ ├── Blantyre │ │ ├── Brazzaville │ │ ├── Bujumbura │ │ ├── Cairo │ │ ├── Casablanca │ │ ├── Ceuta │ │ ├── Conakry │ │ ├── Dakar │ │ ├── Dar_es_Salaam │ │ ├── Djibouti │ │ ├── Douala │ │ ├── El_Aaiun │ │ ├── Freetown │ │ ├── Gaborone │ │ ├── Harare │ │ ├── Johannesburg │ │ ├── Juba │ │ ├── Kampala │ │ ├── Khartoum │ │ ├── Kigali │ │ ├── Kinshasa │ │ ├── Lagos │ │ ├── Libreville │ │ ├── Lome │ │ ├── Luanda │ │ ├── Lubumbashi │ │ ├── Lusaka │ │ ├── Malabo │ │ ├── Maputo │ │ ├── Maseru │ │ ├── Mbabane │ │ ├── Mogadishu │ │ ├── Monrovia │ │ ├── Nairobi │ │ ├── Ndjamena │ │ ├── Niamey │ │ ├── Nouakchott │ │ ├── Ouagadougou │ │ ├── Porto-Novo │ │ ├── Sao_Tome │ │ ├── Timbuktu │ │ ├── Tripoli │ │ ├── Tunis │ │ └── Windhoek │ │ ├── America │ │ ├── Adak │ │ ├── Anchorage │ │ ├── Anguilla │ │ ├── Antigua │ │ ├── Araguaina │ │ ├── Argentina │ │ │ ├── Buenos_Aires │ │ │ ├── Catamarca │ │ │ ├── ComodRivadavia │ │ │ ├── Cordoba │ │ │ ├── Jujuy │ │ │ ├── La_Rioja │ │ │ ├── Mendoza │ │ │ ├── Rio_Gallegos │ │ │ ├── Salta │ │ │ ├── San_Juan │ │ │ ├── San_Luis │ │ │ ├── Tucuman │ │ │ └── Ushuaia │ │ ├── Aruba │ │ ├── Asuncion │ │ ├── Atikokan │ │ ├── Atka │ │ ├── Bahia │ │ ├── Bahia_Banderas │ │ ├── Barbados │ │ ├── Belem │ │ ├── Belize │ │ ├── Blanc-Sablon │ │ ├── Boa_Vista │ │ ├── Bogota │ │ ├── Boise │ │ ├── Buenos_Aires │ │ ├── Cambridge_Bay │ │ ├── Campo_Grande │ │ ├── Cancun │ │ ├── Caracas │ │ ├── Catamarca │ │ ├── Cayenne │ │ ├── Cayman │ │ ├── Chicago │ │ ├── Chihuahua │ │ ├── Ciudad_Juarez │ │ ├── Coral_Harbour │ │ ├── Cordoba │ │ ├── Costa_Rica │ │ ├── Creston │ │ ├── Cuiaba │ │ ├── Curacao │ │ ├── Danmarkshavn │ │ ├── Dawson │ │ ├── Dawson_Creek │ │ ├── Denver │ │ ├── Detroit │ │ ├── Dominica │ │ ├── Edmonton │ │ ├── Eirunepe │ │ ├── El_Salvador │ │ ├── Ensenada │ │ ├── Fort_Nelson │ │ ├── Fort_Wayne │ │ ├── Fortaleza │ │ ├── Glace_Bay │ │ ├── Godthab │ │ ├── Goose_Bay │ │ ├── Grand_Turk │ │ ├── Grenada │ │ ├── Guadeloupe │ │ ├── Guatemala │ │ ├── Guayaquil │ │ ├── Guyana │ │ ├── Halifax │ │ ├── Havana │ │ ├── Hermosillo │ │ ├── Indiana │ │ │ ├── Indianapolis │ │ │ ├── Knox │ │ │ ├── Marengo │ │ │ ├── Petersburg │ │ │ ├── Tell_City │ │ │ ├── Vevay │ │ │ ├── Vincennes │ │ │ └── Winamac │ │ ├── Indianapolis │ │ ├── Inuvik │ │ ├── Iqaluit │ │ ├── Jamaica │ │ ├── Jujuy │ │ ├── Juneau │ │ ├── Kentucky │ │ │ ├── Louisville │ │ │ └── Monticello │ │ ├── Knox_IN │ │ ├── Kralendijk │ │ ├── La_Paz │ │ ├── Lima │ │ ├── Los_Angeles │ │ ├── Louisville │ │ ├── Lower_Princes │ │ ├── Maceio │ │ ├── Managua │ │ ├── Manaus │ │ ├── Marigot │ │ ├── Martinique │ │ ├── Matamoros │ │ ├── Mazatlan │ │ ├── Mendoza │ │ ├── Menominee │ │ ├── Merida │ │ ├── Metlakatla │ │ ├── Mexico_City │ │ ├── Miquelon │ │ ├── Moncton │ │ ├── Monterrey │ │ ├── Montevideo │ │ ├── Montreal │ │ ├── Montserrat │ │ ├── Nassau │ │ ├── New_York │ │ ├── Nipigon │ │ ├── Nome │ │ ├── Noronha │ │ ├── North_Dakota │ │ │ ├── Beulah │ │ │ ├── Center │ │ │ └── New_Salem │ │ ├── Nuuk │ │ ├── Ojinaga │ │ ├── Panama │ │ ├── Pangnirtung │ │ ├── Paramaribo │ │ ├── Phoenix │ │ ├── Port-au-Prince │ │ ├── Port_of_Spain │ │ ├── Porto_Acre │ │ ├── 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 │ │ ├── Qostanay │ │ ├── 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 │ │ ├── St_Helena │ │ └── Stanley │ │ ├── Australia │ │ ├── ACT │ │ ├── Adelaide │ │ ├── Brisbane │ │ ├── Broken_Hill │ │ ├── Canberra │ │ ├── Currie │ │ ├── Darwin │ │ ├── Eucla │ │ ├── Hobart │ │ ├── LHI │ │ ├── Lindeman │ │ ├── Lord_Howe │ │ ├── Melbourne │ │ ├── NSW │ │ ├── North │ │ ├── Perth │ │ ├── Queensland │ │ ├── South │ │ ├── Sydney │ │ ├── Tasmania │ │ ├── Victoria │ │ ├── West │ │ └── Yancowinna │ │ ├── Brazil │ │ ├── Acre │ │ ├── DeNoronha │ │ ├── East │ │ └── West │ │ ├── CET │ │ ├── CST6CDT │ │ ├── Canada │ │ ├── Atlantic │ │ ├── Central │ │ ├── Eastern │ │ ├── Mountain │ │ ├── Newfoundland │ │ ├── Pacific │ │ ├── Saskatchewan │ │ └── Yukon │ │ ├── Chile │ │ ├── Continental │ │ └── EasterIsland │ │ ├── Cuba │ │ ├── EET │ │ ├── EST │ │ ├── EST5EDT │ │ ├── Egypt │ │ ├── Eire │ │ ├── Etc │ │ ├── GMT │ │ ├── GMT+0 │ │ ├── GMT+1 │ │ ├── GMT+10 │ │ ├── GMT+11 │ │ ├── GMT+12 │ │ ├── GMT+2 │ │ ├── GMT+3 │ │ ├── GMT+4 │ │ ├── GMT+5 │ │ ├── GMT+6 │ │ ├── GMT+7 │ │ ├── GMT+8 │ │ ├── GMT+9 │ │ ├── GMT-0 │ │ ├── GMT-1 │ │ ├── GMT-10 │ │ ├── GMT-11 │ │ ├── GMT-12 │ │ ├── GMT-13 │ │ ├── GMT-14 │ │ ├── GMT-2 │ │ ├── GMT-3 │ │ ├── GMT-4 │ │ ├── GMT-5 │ │ ├── GMT-6 │ │ ├── GMT-7 │ │ ├── GMT-8 │ │ ├── GMT-9 │ │ ├── GMT0 │ │ ├── Greenwich │ │ ├── UCT │ │ ├── UTC │ │ ├── Universal │ │ └── Zulu │ │ ├── Europe │ │ ├── Amsterdam │ │ ├── Andorra │ │ ├── Astrakhan │ │ ├── Athens │ │ ├── Belfast │ │ ├── Belgrade │ │ ├── Berlin │ │ ├── Bratislava │ │ ├── Brussels │ │ ├── Bucharest │ │ ├── Budapest │ │ ├── Busingen │ │ ├── Chisinau │ │ ├── Copenhagen │ │ ├── Dublin │ │ ├── Gibraltar │ │ ├── Guernsey │ │ ├── Helsinki │ │ ├── Isle_of_Man │ │ ├── Istanbul │ │ ├── Jersey │ │ ├── Kaliningrad │ │ ├── Kiev │ │ ├── Kirov │ │ ├── Kyiv │ │ ├── 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 │ │ ├── HST │ │ ├── Hongkong │ │ ├── Iceland │ │ ├── Indian │ │ ├── Antananarivo │ │ ├── Chagos │ │ ├── Christmas │ │ ├── Cocos │ │ ├── Comoro │ │ ├── Kerguelen │ │ ├── Mahe │ │ ├── Maldives │ │ ├── Mauritius │ │ ├── Mayotte │ │ └── Reunion │ │ ├── Iran │ │ ├── Israel │ │ ├── Jamaica │ │ ├── Japan │ │ ├── Kwajalein │ │ ├── Libya │ │ ├── MET │ │ ├── MST │ │ ├── MST7MDT │ │ ├── Mexico │ │ ├── BajaNorte │ │ ├── BajaSur │ │ └── General │ │ ├── NZ │ │ ├── NZ-CHAT │ │ ├── Navajo │ │ ├── PRC │ │ ├── PST8PDT │ │ ├── Pacific │ │ ├── Apia │ │ ├── Auckland │ │ ├── Bougainville │ │ ├── Chatham │ │ ├── Chuuk │ │ ├── Easter │ │ ├── Efate │ │ ├── Enderbury │ │ ├── Fakaofo │ │ ├── Fiji │ │ ├── Funafuti │ │ ├── Galapagos │ │ ├── Gambier │ │ ├── Guadalcanal │ │ ├── Guam │ │ ├── Honolulu │ │ ├── Johnston │ │ ├── Kanton │ │ ├── Kiritimati │ │ ├── Kosrae │ │ ├── Kwajalein │ │ ├── Majuro │ │ ├── Marquesas │ │ ├── Midway │ │ ├── Nauru │ │ ├── Niue │ │ ├── Norfolk │ │ ├── Noumea │ │ ├── Pago_Pago │ │ ├── Palau │ │ ├── Pitcairn │ │ ├── Pohnpei │ │ ├── Ponape │ │ ├── Port_Moresby │ │ ├── Rarotonga │ │ ├── Saipan │ │ ├── Samoa │ │ ├── Tahiti │ │ ├── Tarawa │ │ ├── Tongatapu │ │ ├── Truk │ │ ├── Wake │ │ ├── Wallis │ │ └── Yap │ │ ├── Poland │ │ ├── Portugal │ │ ├── ROC │ │ ├── ROK │ │ ├── Singapore │ │ ├── Turkey │ │ ├── UCT │ │ ├── US │ │ ├── Alaska │ │ ├── Aleutian │ │ ├── Arizona │ │ ├── Central │ │ ├── East-Indiana │ │ ├── Eastern │ │ ├── Hawaii │ │ ├── Indiana-Starke │ │ ├── Michigan │ │ ├── Mountain │ │ ├── Pacific │ │ └── Samoa │ │ ├── UTC │ │ ├── Universal │ │ ├── W-SU │ │ ├── WET │ │ ├── Zulu │ │ ├── iso3166.tab │ │ ├── leapseconds │ │ ├── tzdata.zi │ │ ├── zone.tab │ │ └── zone1970.tab │ ├── requests-2.28.1.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ ├── requests │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── __version__.cpython-39.pyc │ │ ├── _internal_utils.cpython-39.pyc │ │ ├── adapters.cpython-39.pyc │ │ ├── api.cpython-39.pyc │ │ ├── auth.cpython-39.pyc │ │ ├── certs.cpython-39.pyc │ │ ├── compat.cpython-39.pyc │ │ ├── cookies.cpython-39.pyc │ │ ├── exceptions.cpython-39.pyc │ │ ├── help.cpython-39.pyc │ │ ├── hooks.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── packages.cpython-39.pyc │ │ ├── sessions.cpython-39.pyc │ │ ├── status_codes.cpython-39.pyc │ │ ├── structures.cpython-39.pyc │ │ └── utils.cpython-39.pyc │ ├── __version__.py │ ├── _internal_utils.py │ ├── adapters.py │ ├── api.py │ ├── auth.py │ ├── certs.py │ ├── compat.py │ ├── cookies.py │ ├── exceptions.py │ ├── help.py │ ├── hooks.py │ ├── models.py │ ├── packages.py │ ├── sessions.py │ ├── status_codes.py │ ├── structures.py │ └── utils.py │ ├── setuptools-56.0.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ ├── dependency_links.txt │ ├── entry_points.txt │ └── top_level.txt │ ├── setuptools │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── _deprecation_warning.cpython-39.pyc │ │ ├── _imp.cpython-39.pyc │ │ ├── archive_util.cpython-39.pyc │ │ ├── build_meta.cpython-39.pyc │ │ ├── config.cpython-39.pyc │ │ ├── dep_util.cpython-39.pyc │ │ ├── depends.cpython-39.pyc │ │ ├── dist.cpython-39.pyc │ │ ├── errors.cpython-39.pyc │ │ ├── extension.cpython-39.pyc │ │ ├── glob.cpython-39.pyc │ │ ├── installer.cpython-39.pyc │ │ ├── launch.cpython-39.pyc │ │ ├── lib2to3_ex.cpython-39.pyc │ │ ├── monkey.cpython-39.pyc │ │ ├── msvc.cpython-39.pyc │ │ ├── namespaces.cpython-39.pyc │ │ ├── package_index.cpython-39.pyc │ │ ├── py34compat.cpython-39.pyc │ │ ├── sandbox.cpython-39.pyc │ │ ├── ssl_support.cpython-39.pyc │ │ ├── unicode_utils.cpython-39.pyc │ │ ├── version.cpython-39.pyc │ │ ├── wheel.cpython-39.pyc │ │ └── windows_support.cpython-39.pyc │ ├── _deprecation_warning.py │ ├── _distutils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _msvccompiler.cpython-39.pyc │ │ │ ├── archive_util.cpython-39.pyc │ │ │ ├── bcppcompiler.cpython-39.pyc │ │ │ ├── ccompiler.cpython-39.pyc │ │ │ ├── cmd.cpython-39.pyc │ │ │ ├── config.cpython-39.pyc │ │ │ ├── core.cpython-39.pyc │ │ │ ├── cygwinccompiler.cpython-39.pyc │ │ │ ├── debug.cpython-39.pyc │ │ │ ├── dep_util.cpython-39.pyc │ │ │ ├── dir_util.cpython-39.pyc │ │ │ ├── dist.cpython-39.pyc │ │ │ ├── errors.cpython-39.pyc │ │ │ ├── extension.cpython-39.pyc │ │ │ ├── fancy_getopt.cpython-39.pyc │ │ │ ├── file_util.cpython-39.pyc │ │ │ ├── filelist.cpython-39.pyc │ │ │ ├── log.cpython-39.pyc │ │ │ ├── msvc9compiler.cpython-39.pyc │ │ │ ├── msvccompiler.cpython-39.pyc │ │ │ ├── py35compat.cpython-39.pyc │ │ │ ├── py38compat.cpython-39.pyc │ │ │ ├── spawn.cpython-39.pyc │ │ │ ├── sysconfig.cpython-39.pyc │ │ │ ├── text_file.cpython-39.pyc │ │ │ ├── unixccompiler.cpython-39.pyc │ │ │ ├── util.cpython-39.pyc │ │ │ ├── version.cpython-39.pyc │ │ │ └── versionpredicate.cpython-39.pyc │ │ ├── _msvccompiler.py │ │ ├── archive_util.py │ │ ├── bcppcompiler.py │ │ ├── ccompiler.py │ │ ├── cmd.py │ │ ├── command │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── bdist.cpython-39.pyc │ │ │ │ ├── bdist_dumb.cpython-39.pyc │ │ │ │ ├── bdist_msi.cpython-39.pyc │ │ │ │ ├── bdist_rpm.cpython-39.pyc │ │ │ │ ├── bdist_wininst.cpython-39.pyc │ │ │ │ ├── build.cpython-39.pyc │ │ │ │ ├── build_clib.cpython-39.pyc │ │ │ │ ├── build_ext.cpython-39.pyc │ │ │ │ ├── build_py.cpython-39.pyc │ │ │ │ ├── build_scripts.cpython-39.pyc │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ ├── clean.cpython-39.pyc │ │ │ │ ├── config.cpython-39.pyc │ │ │ │ ├── install.cpython-39.pyc │ │ │ │ ├── install_data.cpython-39.pyc │ │ │ │ ├── install_egg_info.cpython-39.pyc │ │ │ │ ├── install_headers.cpython-39.pyc │ │ │ │ ├── install_lib.cpython-39.pyc │ │ │ │ ├── install_scripts.cpython-39.pyc │ │ │ │ ├── py37compat.cpython-39.pyc │ │ │ │ ├── register.cpython-39.pyc │ │ │ │ ├── sdist.cpython-39.pyc │ │ │ │ └── upload.cpython-39.pyc │ │ │ ├── bdist.py │ │ │ ├── bdist_dumb.py │ │ │ ├── bdist_msi.py │ │ │ ├── bdist_rpm.py │ │ │ ├── bdist_wininst.py │ │ │ ├── build.py │ │ │ ├── build_clib.py │ │ │ ├── build_ext.py │ │ │ ├── build_py.py │ │ │ ├── build_scripts.py │ │ │ ├── check.py │ │ │ ├── clean.py │ │ │ ├── config.py │ │ │ ├── install.py │ │ │ ├── install_data.py │ │ │ ├── install_egg_info.py │ │ │ ├── install_headers.py │ │ │ ├── install_lib.py │ │ │ ├── install_scripts.py │ │ │ ├── py37compat.py │ │ │ ├── register.py │ │ │ ├── sdist.py │ │ │ └── upload.py │ │ ├── config.py │ │ ├── core.py │ │ ├── cygwinccompiler.py │ │ ├── debug.py │ │ ├── dep_util.py │ │ ├── dir_util.py │ │ ├── dist.py │ │ ├── errors.py │ │ ├── extension.py │ │ ├── fancy_getopt.py │ │ ├── file_util.py │ │ ├── filelist.py │ │ ├── log.py │ │ ├── msvc9compiler.py │ │ ├── msvccompiler.py │ │ ├── py35compat.py │ │ ├── py38compat.py │ │ ├── spawn.py │ │ ├── sysconfig.py │ │ ├── text_file.py │ │ ├── unixccompiler.py │ │ ├── util.py │ │ ├── version.py │ │ └── versionpredicate.py │ ├── _imp.py │ ├── _vendor │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── ordered_set.cpython-39.pyc │ │ │ └── pyparsing.cpython-39.pyc │ │ ├── ordered_set.py │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __about__.cpython-39.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _compat.cpython-39.pyc │ │ │ │ ├── _structures.cpython-39.pyc │ │ │ │ ├── _typing.cpython-39.pyc │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ ├── specifiers.cpython-39.pyc │ │ │ │ ├── tags.cpython-39.pyc │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ └── version.cpython-39.pyc │ │ │ ├── _compat.py │ │ │ ├── _structures.py │ │ │ ├── _typing.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── tags.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ └── pyparsing.py │ ├── archive_util.py │ ├── build_meta.py │ ├── cli-32.exe │ ├── cli-64.exe │ ├── cli.exe │ ├── command │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── alias.cpython-39.pyc │ │ │ ├── bdist_egg.cpython-39.pyc │ │ │ ├── bdist_rpm.cpython-39.pyc │ │ │ ├── build_clib.cpython-39.pyc │ │ │ ├── build_ext.cpython-39.pyc │ │ │ ├── build_py.cpython-39.pyc │ │ │ ├── develop.cpython-39.pyc │ │ │ ├── dist_info.cpython-39.pyc │ │ │ ├── easy_install.cpython-39.pyc │ │ │ ├── egg_info.cpython-39.pyc │ │ │ ├── install.cpython-39.pyc │ │ │ ├── install_egg_info.cpython-39.pyc │ │ │ ├── install_lib.cpython-39.pyc │ │ │ ├── install_scripts.cpython-39.pyc │ │ │ ├── py36compat.cpython-39.pyc │ │ │ ├── register.cpython-39.pyc │ │ │ ├── rotate.cpython-39.pyc │ │ │ ├── saveopts.cpython-39.pyc │ │ │ ├── sdist.cpython-39.pyc │ │ │ ├── setopt.cpython-39.pyc │ │ │ ├── test.cpython-39.pyc │ │ │ ├── upload.cpython-39.pyc │ │ │ └── upload_docs.cpython-39.pyc │ │ ├── alias.py │ │ ├── bdist_egg.py │ │ ├── bdist_rpm.py │ │ ├── build_clib.py │ │ ├── build_ext.py │ │ ├── build_py.py │ │ ├── develop.py │ │ ├── dist_info.py │ │ ├── easy_install.py │ │ ├── egg_info.py │ │ ├── install.py │ │ ├── install_egg_info.py │ │ ├── install_lib.py │ │ ├── install_scripts.py │ │ ├── launcher manifest.xml │ │ ├── py36compat.py │ │ ├── register.py │ │ ├── rotate.py │ │ ├── saveopts.py │ │ ├── sdist.py │ │ ├── setopt.py │ │ ├── test.py │ │ ├── upload.py │ │ └── upload_docs.py │ ├── config.py │ ├── dep_util.py │ ├── depends.py │ ├── dist.py │ ├── errors.py │ ├── extension.py │ ├── extern │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── glob.py │ ├── gui-32.exe │ ├── gui-64.exe │ ├── gui.exe │ ├── installer.py │ ├── launch.py │ ├── lib2to3_ex.py │ ├── monkey.py │ ├── msvc.py │ ├── namespaces.py │ ├── package_index.py │ ├── py34compat.py │ ├── sandbox.py │ ├── script (dev).tmpl │ ├── script.tmpl │ ├── ssl_support.py │ ├── unicode_utils.py │ ├── version.py │ ├── wheel.py │ └── windows_support.py │ ├── six-1.16.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ ├── six.py │ ├── tqdm-4.64.1.dist-info │ ├── INSTALLER │ ├── LICENCE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt │ ├── tqdm │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── __main__.cpython-39.pyc │ │ ├── _dist_ver.cpython-39.pyc │ │ ├── _main.cpython-39.pyc │ │ ├── _monitor.cpython-39.pyc │ │ ├── _tqdm.cpython-39.pyc │ │ ├── _tqdm_gui.cpython-39.pyc │ │ ├── _tqdm_notebook.cpython-39.pyc │ │ ├── _tqdm_pandas.cpython-39.pyc │ │ ├── _utils.cpython-39.pyc │ │ ├── asyncio.cpython-39.pyc │ │ ├── auto.cpython-39.pyc │ │ ├── autonotebook.cpython-39.pyc │ │ ├── cli.cpython-39.pyc │ │ ├── dask.cpython-39.pyc │ │ ├── gui.cpython-39.pyc │ │ ├── keras.cpython-39.pyc │ │ ├── notebook.cpython-39.pyc │ │ ├── rich.cpython-39.pyc │ │ ├── std.cpython-39.pyc │ │ ├── tk.cpython-39.pyc │ │ ├── utils.cpython-39.pyc │ │ └── version.cpython-39.pyc │ ├── _dist_ver.py │ ├── _main.py │ ├── _monitor.py │ ├── _tqdm.py │ ├── _tqdm_gui.py │ ├── _tqdm_notebook.py │ ├── _tqdm_pandas.py │ ├── _utils.py │ ├── asyncio.py │ ├── auto.py │ ├── autonotebook.py │ ├── cli.py │ ├── completion.sh │ ├── contrib │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── bells.cpython-39.pyc │ │ │ ├── concurrent.cpython-39.pyc │ │ │ ├── discord.cpython-39.pyc │ │ │ ├── itertools.cpython-39.pyc │ │ │ ├── logging.cpython-39.pyc │ │ │ ├── slack.cpython-39.pyc │ │ │ ├── telegram.cpython-39.pyc │ │ │ └── utils_worker.cpython-39.pyc │ │ ├── bells.py │ │ ├── concurrent.py │ │ ├── discord.py │ │ ├── itertools.py │ │ ├── logging.py │ │ ├── slack.py │ │ ├── telegram.py │ │ └── utils_worker.py │ ├── dask.py │ ├── gui.py │ ├── keras.py │ ├── notebook.py │ ├── rich.py │ ├── std.py │ ├── tk.py │ ├── tqdm.1 │ ├── utils.py │ └── version.py │ ├── types_pytz-2022.7.0.0.dist-info │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ ├── typing_extensions-4.4.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ └── WHEEL │ ├── typing_extensions.py │ ├── urllib3-1.26.13.dist-info │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ └── urllib3 │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── _collections.cpython-39.pyc │ ├── _version.cpython-39.pyc │ ├── connection.cpython-39.pyc │ ├── connectionpool.cpython-39.pyc │ ├── exceptions.cpython-39.pyc │ ├── fields.cpython-39.pyc │ ├── filepost.cpython-39.pyc │ ├── poolmanager.cpython-39.pyc │ ├── request.cpython-39.pyc │ └── response.cpython-39.pyc │ ├── _collections.py │ ├── _version.py │ ├── connection.py │ ├── connectionpool.py │ ├── contrib │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── _appengine_environ.cpython-39.pyc │ │ ├── appengine.cpython-39.pyc │ │ ├── ntlmpool.cpython-39.pyc │ │ ├── pyopenssl.cpython-39.pyc │ │ ├── securetransport.cpython-39.pyc │ │ └── socks.cpython-39.pyc │ ├── _appengine_environ.py │ ├── _securetransport │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── bindings.cpython-39.pyc │ │ │ └── low_level.cpython-39.pyc │ │ ├── bindings.py │ │ └── low_level.py │ ├── appengine.py │ ├── ntlmpool.py │ ├── pyopenssl.py │ ├── securetransport.py │ └── socks.py │ ├── exceptions.py │ ├── fields.py │ ├── filepost.py │ ├── packages │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ └── six.cpython-39.pyc │ ├── backports │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── makefile.cpython-39.pyc │ │ └── makefile.py │ └── six.py │ ├── poolmanager.py │ ├── request.py │ ├── response.py │ └── util │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── connection.cpython-39.pyc │ ├── proxy.cpython-39.pyc │ ├── queue.cpython-39.pyc │ ├── request.cpython-39.pyc │ ├── response.cpython-39.pyc │ ├── retry.cpython-39.pyc │ ├── ssl_.cpython-39.pyc │ ├── ssl_match_hostname.cpython-39.pyc │ ├── ssltransport.cpython-39.pyc │ ├── timeout.cpython-39.pyc │ ├── url.cpython-39.pyc │ └── wait.cpython-39.pyc │ ├── connection.py │ ├── proxy.py │ ├── queue.py │ ├── request.py │ ├── response.py │ ├── retry.py │ ├── ssl_.py │ ├── ssl_match_hostname.py │ ├── ssltransport.py │ ├── timeout.py │ ├── url.py │ └── wait.py ├── Scripts ├── Activate.ps1 ├── activate ├── activate.bat ├── deactivate.bat ├── f2py.exe ├── normalizer.exe ├── openai.exe ├── pip.exe ├── pip3.9.exe ├── pip3.exe ├── python.exe ├── pythonw.exe └── tqdm.exe └── pyvenv.cfg /ai_lt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/ai_lt.ico -------------------------------------------------------------------------------- /api_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/api_key -------------------------------------------------------------------------------- /chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/chat.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/_distutils_hack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/_distutils_hack/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/_distutils_hack/override.py: -------------------------------------------------------------------------------- 1 | __import__('_distutils_hack').do_override() 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/certifi-2022.12.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/certifi-2022.12.7.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | certifi 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/certifi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/certifi/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/certifi/__main__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/certifi/cacert.pem -------------------------------------------------------------------------------- /virt/Lib/site-packages/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/certifi/core.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/certifi/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/charset_normalizer-2.1.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/charset_normalizer-2.1.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | charset_normalizer 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/charset_normalizer/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/charset_normalizer/api.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/charset_normalizer/cd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/charset_normalizer/cd.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/charset_normalizer/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/charset_normalizer/md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/charset_normalizer/md.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/charset_normalizer/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/charset_normalizer/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/charset_normalizer/utils.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/colorama-0.4.6.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/colorama/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/colorama/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/colorama/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/colorama/ansi.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/colorama/ansitowin32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/colorama/ansitowin32.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/colorama/initialise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/colorama/initialise.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/colorama/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/colorama/tests/ansi_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/colorama/tests/ansi_test.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/colorama/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/colorama/tests/utils.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/colorama/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/colorama/win32.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/colorama/winterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/colorama/winterm.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/customtkinter-5.0.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/customtkinter-5.0.3.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/customtkinter-5.0.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | customtkinter 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/customtkinter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/customtkinter/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/darkdetect-0.8.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/darkdetect-0.8.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | darkdetect 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/darkdetect/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/darkdetect/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/darkdetect/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/darkdetect/__main__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/darkdetect/_dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/darkdetect/_dummy.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/darkdetect/_linux_detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/darkdetect/_linux_detect.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/darkdetect/_mac_detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/darkdetect/_mac_detect.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/dateutil/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/dateutil/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/dateutil/_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/dateutil/_common.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/dateutil/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/dateutil/_version.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/dateutil/easter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/dateutil/easter.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/dateutil/parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/dateutil/parser/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/dateutil/parser/_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/dateutil/parser/_parser.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/dateutil/relativedelta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/dateutil/relativedelta.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/dateutil/rrule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/dateutil/rrule.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/dateutil/tz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/dateutil/tz/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/dateutil/tz/_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/dateutil/tz/_common.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/dateutil/tz/_factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/dateutil/tz/_factories.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/dateutil/tz/tz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/dateutil/tz/tz.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/dateutil/tz/win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/dateutil/tz/win.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/dateutil/tzwin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/dateutil/tzwin.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/dateutil/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/dateutil/utils.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/distutils-precedence.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/distutils-precedence.pth -------------------------------------------------------------------------------- /virt/Lib/site-packages/et_xmlfile-1.1.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/et_xmlfile-1.1.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | et_xmlfile 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/et_xmlfile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/et_xmlfile/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/et_xmlfile/xmlfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/et_xmlfile/xmlfile.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/idna-3.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/idna-3.4.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/idna-3.4.dist-info/METADATA -------------------------------------------------------------------------------- /virt/Lib/site-packages/idna-3.4.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/idna-3.4.dist-info/RECORD -------------------------------------------------------------------------------- /virt/Lib/site-packages/idna-3.4.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.7.1 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/idna/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/idna/codec.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/idna/compat.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/idna/core.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/idna/idnadata.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/idna/intranges.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.4' 2 | 3 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/idna/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/idna/uts46data.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy-1.24.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy-1.24.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/LICENSE.txt -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/__config__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/__config__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/__init__.pxd -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/__init__.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/_distributor_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/_distributor_init.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/_globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/_globals.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/_pyinstaller/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/_pytesttester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/_pytesttester.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/_pytesttester.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/_pytesttester.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/_typing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/_typing/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/_typing/_callable.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/_typing/_callable.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/_typing/_nbit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/_typing/_nbit.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/_typing/_scalars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/_typing/_scalars.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/_typing/_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/_typing/_shape.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/_typing/_ufunc.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/_typing/_ufunc.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/_typing/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/_typing/setup.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/_version.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/array_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/array_api/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/array_api/_dtypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/array_api/_dtypes.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/array_api/_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/array_api/_typing.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/array_api/linalg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/array_api/linalg.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/array_api/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/array_api/setup.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/compat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/compat/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/compat/_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/compat/_inspect.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/compat/_pep440.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/compat/_pep440.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/compat/py3k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/compat/py3k.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/compat/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/compat/setup.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/compat/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/conftest.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/__init__.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/_add_newdocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/_add_newdocs.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/_asarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/_asarray.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/_asarray.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/_asarray.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/_dtype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/_dtype.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/_dtype_ctypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/_dtype_ctypes.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/_exceptions.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/_internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/_internal.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/_internal.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/_internal.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/_machar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/_machar.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/_methods.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/_type_aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/_type_aliases.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/_ufunc_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/_ufunc_config.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/arrayprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/arrayprint.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/arrayprint.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/arrayprint.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/cversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/cversions.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/defchararray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/defchararray.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/defchararray.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/defchararray.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/einsumfunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/einsumfunc.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/einsumfunc.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/einsumfunc.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/fromnumeric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/fromnumeric.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/fromnumeric.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/fromnumeric.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/function_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/function_base.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/getlimits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/getlimits.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/getlimits.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/getlimits.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/include/numpy/.doxyfile: -------------------------------------------------------------------------------- 1 | INCLUDE_PATH += @CUR_DIR 2 | PREDEFINED += NPY_INTERNAL_BUILD 3 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/lib/npymath.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/lib/npymath.lib -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/memmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/memmap.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/memmap.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/memmap.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/multiarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/multiarray.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/multiarray.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/multiarray.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/numeric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/numeric.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/numeric.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/numeric.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/overrides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/overrides.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/records.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/records.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/records.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/setup.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/shape_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/shape_base.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/core/umath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/core/umath.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/ctypeslib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/ctypeslib.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/ctypeslib.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/ctypeslib.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/distutils/checks/test_flags.c: -------------------------------------------------------------------------------- 1 | int test_flags; 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/distutils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/distutils/core.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/distutils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/distutils/log.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/distutils/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/distutils/setup.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/distutils/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/doc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/doc/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/doc/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/doc/constants.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/doc/ufuncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/doc/ufuncs.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/dual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/dual.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/f2py/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/f2py/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/f2py/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/f2py/__init__.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/f2py/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/f2py/__main__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/f2py/auxfuncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/f2py/auxfuncs.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/f2py/capi_maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/f2py/capi_maps.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/f2py/cb_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/f2py/cb_rules.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/f2py/cfuncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/f2py/cfuncs.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/f2py/diagnose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/f2py/diagnose.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/f2py/f2py2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/f2py/f2py2e.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/f2py/func2subr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/f2py/func2subr.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/f2py/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/f2py/rules.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/f2py/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/f2py/setup.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/f2py/symbolic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/f2py/symbolic.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/f2py/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/f2py/tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/f2py/tests/util.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/f2py/use_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/f2py/use_rules.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/fft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/fft/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/fft/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/fft/__init__.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/fft/_pocketfft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/fft/_pocketfft.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/fft/_pocketfft.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/fft/_pocketfft.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/fft/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/fft/helper.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/fft/helper.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/fft/helper.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/fft/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/fft/setup.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/fft/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/__init__.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/_datasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/_datasource.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/_iotools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/_iotools.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/_version.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/_version.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/_version.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/arraypad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/arraypad.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/arraypad.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/arraypad.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/arraysetops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/arraysetops.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/format.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/format.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/format.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/histograms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/histograms.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/histograms.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/histograms.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/mixins.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/mixins.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/mixins.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/npyio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/npyio.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/npyio.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/npyio.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/polynomial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/polynomial.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/polynomial.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/polynomial.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/scimath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/scimath.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/scimath.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/scimath.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/setup.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/shape_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/shape_base.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/shape_base.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/shape_base.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/twodim_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/twodim_base.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/type_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/type_check.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/type_check.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/type_check.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/ufunclike.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/ufunclike.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/ufunclike.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/ufunclike.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/user_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/user_array.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/utils.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/lib/utils.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/lib/utils.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/linalg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/linalg/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/linalg/linalg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/linalg/linalg.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/linalg/linalg.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/linalg/linalg.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/linalg/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/linalg/setup.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/linalg/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/ma/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/ma/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/ma/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/ma/__init__.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/ma/bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/ma/bench.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/ma/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/ma/core.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/ma/core.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/ma/core.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/ma/extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/ma/extras.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/ma/extras.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/ma/extras.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/ma/mrecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/ma/mrecords.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/ma/mrecords.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/ma/mrecords.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/ma/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/ma/setup.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/ma/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/ma/testutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/ma/testutils.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/matlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/matlib.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/matrixlib/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/matrixlib/setup.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/matrixlib/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/polynomial/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/random/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/random/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/random/_common.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/random/_common.pxd -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/random/_pcg64.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/random/_pcg64.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/random/_philox.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/random/_philox.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/random/_pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/random/_pickle.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/random/_sfc64.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/random/_sfc64.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/random/mtrand.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/random/mtrand.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/random/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/random/setup.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/random/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/random/tests/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/setup.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/testing/_private/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/testing/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/testing/setup.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/testing/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/testing/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/testing/utils.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/typing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/typing/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/typing/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/typing/setup.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/typing/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/numpy/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/numpy/version.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openai-0.25.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/openai-0.25.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/openai-0.25.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | openai 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/openai/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openai/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openai/api_requestor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openai/api_requestor.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openai/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openai/cli.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openai/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openai/error.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openai/object_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openai/object_classes.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openai/openai_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openai/openai_object.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openai/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/openai/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openai/util.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openai/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openai/validators.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openai/version.py: -------------------------------------------------------------------------------- 1 | VERSION = "0.25.0" 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/openai/wandb_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openai/wandb_logger.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl-3.0.10.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl-3.0.10.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | openpyxl 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/_constants.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/cell/_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/cell/_writer.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/cell/cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/cell/cell.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/cell/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/cell/text.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/chart/_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/chart/_3d.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/chart/_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/chart/_chart.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/chart/axis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/chart/axis.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/chart/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/chart/label.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/chart/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/chart/layout.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/chart/legend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/chart/legend.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/chart/marker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/chart/marker.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/chart/pivot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/chart/pivot.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/chart/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/chart/reader.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/chart/series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/chart/series.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/chart/shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/chart/shapes.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/chart/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/chart/text.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/chart/title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/chart/title.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/compat/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/compat/abc.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/drawing/fill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/drawing/fill.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/drawing/line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/drawing/line.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/drawing/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/drawing/text.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/drawing/xdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/drawing/xdr.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/formatting/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2010-2022 openpyxl 2 | 3 | from .rule import Rule 4 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/pivot/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2010-2022 openpyxl 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/pivot/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/pivot/cache.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/pivot/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/pivot/fields.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/pivot/record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/pivot/record.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/pivot/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/pivot/table.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/reader/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2010-2022 openpyxl 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/reader/excel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/reader/excel.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/styles/fills.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/styles/fills.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/styles/fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/styles/fonts.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/styles/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/styles/proxy.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/styles/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/styles/table.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/utils/cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/utils/cell.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/utils/escape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/utils/escape.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/utils/units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/utils/units.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/workbook/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/workbook/web.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/worksheet/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2010-2022 openpyxl 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/writer/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2010-2022 openpyxl 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/writer/excel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/writer/excel.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/writer/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/writer/theme.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/openpyxl/xml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/openpyxl/xml/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-1.5.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-1.5.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pandas 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/_libs/window/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/_typing.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas-stubs/_typing.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/core/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/core/computation/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/core/computation/common.pyi: -------------------------------------------------------------------------------- 1 | def result_type_many(*arrays_and_dtypes): ... 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/core/dtypes/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/core/dtypes/cast.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/core/indexes/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/core/interchange/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/core/ops/common.pyi: -------------------------------------------------------------------------------- 1 | def unpack_zerodim_and_defer(name: str): ... 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/core/ops/docstrings.pyi: -------------------------------------------------------------------------------- 1 | reverse_op = ... 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/core/reshape/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/core/reshape/util.pyi: -------------------------------------------------------------------------------- 1 | def cartesian_product(X): ... 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/core/sparse/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/core/tools/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/core/util/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/io/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/io/api.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas-stubs/io/api.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/io/clipboard/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/io/formats/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/io/formats/css.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/io/gbq.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas-stubs/io/gbq.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/io/html.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas-stubs/io/html.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/io/orc.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas-stubs/io/orc.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/io/parsers.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/io/spss.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas-stubs/io/spss.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/io/sql.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas-stubs/io/sql.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/io/xml.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas-stubs/io/xml.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/testing.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas-stubs/testing.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/tseries/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas-stubs/util/_tester.pyi: -------------------------------------------------------------------------------- 1 | def test(extra_args=...) -> None: ... 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_config/config.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_config/dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_config/dates.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/algos.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/algos.pxd -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/algos.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/algos.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/algos.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/algos.pyx -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/arrays.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/arrays.pxd -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/arrays.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/arrays.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/arrays.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/arrays.pyx -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/dtypes.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/dtypes.pxd -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/groupby.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/groupby.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/groupby.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/groupby.pyx -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/hashing.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/hashing.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/hashing.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/hashing.pyx -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/index.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/index.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/index.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/index.pyx -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/join.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/join.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/join.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/join.pyx -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/json.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/json.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/khash.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/khash.pxd -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/lib.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/lib.pxd -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/lib.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/lib.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/lib.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/lib.pyx -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/missing.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/missing.pxd -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/missing.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/missing.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/missing.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/missing.pyx -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/ops.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/ops.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/ops.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/ops.pyx -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/parsers.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/parsers.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/parsers.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/parsers.pyx -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/reshape.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/reshape.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/reshape.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/reshape.pyx -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/sparse.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/sparse.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/sparse.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/sparse.pyx -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/testing.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/testing.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/testing.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/testing.pyx -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/tslib.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/tslib.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/tslib.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/tslib.pyx -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/util.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/util.pxd -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/window/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/writers.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/writers.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_libs/writers.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_libs/writers.pyx -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_testing/_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_testing/_io.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_typing.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/_version.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/api/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/compat/pyarrow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/compat/pyarrow.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/conftest.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/core/_numba/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/core/accessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/core/accessor.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/core/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/core/api.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/core/apply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/core/apply.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/core/arraylike.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/core/arraylike.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/core/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/core/base.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/core/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/core/common.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/core/computation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/core/describe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/core/describe.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/core/dtypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/core/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/core/flags.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/core/frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/core/frame.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/core/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/core/generic.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/core/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/core/index.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/core/indexes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/core/indexing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/core/indexing.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/core/interchange/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/core/missing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/core/missing.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/core/nanops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/core/nanops.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/core/resample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/core/resample.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/core/reshape/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/core/roperator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/core/roperator.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/core/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/core/sample.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/core/series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/core/series.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/core/sorting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/core/sorting.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/core/sparse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/core/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/core/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/io/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/io/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/io/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/io/api.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/io/clipboards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/io/clipboards.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/io/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/io/common.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/io/excel/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/io/excel/_base.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/io/excel/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/io/excel/_util.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/io/excel/_xlrd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/io/excel/_xlrd.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/io/excel/_xlwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/io/excel/_xlwt.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/io/formats/css.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/io/formats/css.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/io/formats/xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/io/formats/xml.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/io/gbq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/io/gbq.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/io/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/io/html.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/io/json/_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/io/json/_json.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/io/orc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/io/orc.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/io/parquet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/io/parquet.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/io/pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/io/pickle.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/io/pytables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/io/pytables.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/io/sas/_sas.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/io/sas/_sas.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/io/sas/sas.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/io/sas/sas.pyx -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/io/spss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/io/spss.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/io/sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/io/sql.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/io/stata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/io/stata.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/io/xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/io/xml.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/plotting/_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/plotting/_core.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/plotting/_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/plotting/_misc.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/testing.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/apply/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/arithmetic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/arrays/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/arrays/boolean/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/arrays/categorical/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/arrays/datetimes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/arrays/floating/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/arrays/integer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/arrays/interval/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/arrays/masked/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/arrays/numpy_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/arrays/period/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/arrays/sparse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/arrays/string_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/arrays/timedeltas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/computation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/construction/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/copy_view/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/dtypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/dtypes/cast/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/extension/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/extension/arrow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/frame/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/frame/constructors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/frame/indexing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/generic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/groupby/aggregate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/groupby/transform/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/indexes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/indexes/base_class/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/indexes/categorical/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/indexes/datetimelike_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/indexes/datetimes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/indexes/datetimes/methods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/indexes/interval/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/indexes/multi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/indexes/numeric/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/indexes/object/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/indexes/period/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/indexes/period/methods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/indexes/ranges/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/indexes/timedeltas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/indexes/timedeltas/methods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/indexing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/indexing/interval/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/indexing/multiindex/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/interchange/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/internals/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/io/formats/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/io/formats/style/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/io/json/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/io/parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/io/parser/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/io/parser/dtypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/io/parser/usecols/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/io/sas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/io/xml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/plotting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/plotting/frame/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/resample/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/reshape/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/reshape/concat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/reshape/merge/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/scalar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/scalar/interval/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/scalar/period/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/scalar/timedelta/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/scalar/timestamp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/series/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/series/accessors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/series/indexing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/strings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/tseries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/tseries/frequencies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/tseries/holiday/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/tseries/offsets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/tslibs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tests/window/moments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/tseries/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/tseries/api.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/util/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/util/_doctools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/util/_doctools.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/util/_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/util/_tester.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas/util/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pandas/util/testing.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pandas_stubs-1.5.2.230105.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip-21.1.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip-21.1.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip-21.1.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pip/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pip/__main__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_internal/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pip/_internal/cache.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_internal/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pip/_internal/main.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_internal/vcs/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pip/_internal/vcs/git.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pip/_vendor/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_vendor/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pip/_vendor/appdirs.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2020.12.05" 4 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_vendor/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pip/_vendor/distro.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_vendor/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pip/_vendor/idna/core.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.1' 2 | 3 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (1, 0, 2) 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pip/_vendor/pyparsing.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pip/_vendor/six.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_vendor/toml/tz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pip/_vendor/toml/tz.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_vendor/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.4" 3 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/_vendor/vendor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pip/_vendor/vendor.txt -------------------------------------------------------------------------------- /virt/Lib/site-packages/pip/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pip/py.typed -------------------------------------------------------------------------------- /virt/Lib/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/python_dateutil-2.8.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/python_dateutil-2.8.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | dateutil 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/python_dateutil-2.8.2.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz-2022.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz-2022.7.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pytz 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz-2022.7.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz-stubs/METADATA.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz-stubs/METADATA.toml -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz-stubs/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz-stubs/__init__.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz-stubs/lazy.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz-stubs/lazy.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz-stubs/reference.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz-stubs/reference.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz-stubs/tzfile.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz-stubs/tzfile.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz-stubs/tzinfo.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz-stubs/tzinfo.pyi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/exceptions.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/lazy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/lazy.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/reference.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/tzfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/tzfile.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/tzinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/tzinfo.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Asia/Aden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Asia/Aden -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Asia/Amman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Asia/Amman -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Asia/Aqtau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Asia/Aqtau -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Asia/Baku: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Asia/Baku -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Asia/Chita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Asia/Chita -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Asia/Dacca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Asia/Dacca -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Asia/Dhaka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Asia/Dhaka -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Asia/Dili: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Asia/Dili -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Asia/Dubai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Asia/Dubai -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Asia/Gaza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Asia/Gaza -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Asia/Hovd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Asia/Hovd -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Asia/Kabul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Asia/Kabul -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Asia/Macao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Asia/Macao -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Asia/Macau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Asia/Macau -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Asia/Omsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Asia/Omsk -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Asia/Oral: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Asia/Oral -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Asia/Qatar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Asia/Qatar -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Asia/Seoul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Asia/Seoul -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Asia/Tokyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Asia/Tokyo -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Asia/Tomsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Asia/Tomsk -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/CET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/CET -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/CST6CDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/CST6CDT -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Cuba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Cuba -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/EET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/EET -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/EST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/EST -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/EST5EDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/EST5EDT -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Egypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Egypt -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Eire -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT+0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT+0 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT+1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT+1 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT+10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT+10 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT+11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT+11 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT+12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT+12 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT+2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT+2 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT+3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT+3 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT+4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT+4 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT+5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT+5 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT+6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT+6 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT+7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT+7 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT+8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT+8 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT+9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT+9 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT-0 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT-1 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT-10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT-10 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT-11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT-11 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT-12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT-12 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT-13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT-13 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT-14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT-14 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT-2 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT-3 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT-4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT-4 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT-5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT-5 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT-6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT-6 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT-7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT-7 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT-8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT-8 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT-9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT-9 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/GMT0 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/UCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/UCT -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/UTC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/UTC -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Etc/Zulu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Etc/Zulu -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Factory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Factory -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/GB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/GB -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/GB-Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/GB-Eire -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/GMT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/GMT -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/GMT+0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/GMT+0 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/GMT-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/GMT-0 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/GMT0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/GMT0 -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Greenwich: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Greenwich -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/HST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/HST -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Hongkong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Hongkong -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Iceland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Iceland -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Iran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Iran -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Israel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Israel -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Jamaica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Jamaica -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Japan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Japan -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Kwajalein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Kwajalein -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Libya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Libya -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/MET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/MET -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/MST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/MST -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/MST7MDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/MST7MDT -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/NZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/NZ -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/NZ-CHAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/NZ-CHAT -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Navajo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Navajo -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/PRC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/PRC -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/PST8PDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/PST8PDT -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Poland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Poland -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Portugal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Portugal -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/ROC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/ROC -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/ROK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/ROK -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Singapore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Singapore -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Turkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Turkey -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/UCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/UCT -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/US/Alaska: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/US/Alaska -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/US/Arizona: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/US/Arizona -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/US/Central: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/US/Central -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/US/Eastern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/US/Eastern -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/US/Hawaii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/US/Hawaii -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/US/Pacific: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/US/Pacific -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/US/Samoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/US/Samoa -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/UTC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/UTC -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Universal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Universal -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/W-SU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/W-SU -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/WET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/WET -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/Zulu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/Zulu -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/tzdata.zi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/tzdata.zi -------------------------------------------------------------------------------- /virt/Lib/site-packages/pytz/zoneinfo/zone.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/pytz/zoneinfo/zone.tab -------------------------------------------------------------------------------- /virt/Lib/site-packages/requests-2.28.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/requests-2.28.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/requests/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/requests/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/requests/__version__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/requests/adapters.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/requests/api.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/requests/auth.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/requests/certs.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/requests/compat.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/requests/cookies.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/requests/exceptions.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/requests/help.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/requests/hooks.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/requests/models.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/requests/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/requests/packages.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/requests/sessions.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/requests/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/requests/status_codes.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/requests/structures.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/requests/utils.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools-56.0.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools-56.0.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools-56.0.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | _distutils_hack 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/setuptools/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools/_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/setuptools/_imp.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools/build_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/setuptools/build_meta.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/setuptools/config.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools/dep_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/setuptools/dep_util.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools/depends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/setuptools/depends.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/setuptools/dist.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/setuptools/errors.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/setuptools/extension.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/setuptools/glob.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools/installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/setuptools/installer.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/setuptools/launch.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools/lib2to3_ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/setuptools/lib2to3_ex.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools/monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/setuptools/monkey.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools/msvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/setuptools/msvc.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/setuptools/namespaces.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools/py34compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/setuptools/py34compat.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/setuptools/sandbox.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/setuptools/script.tmpl -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/setuptools/version.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/setuptools/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/setuptools/wheel.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/six-1.16.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/six-1.16.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | six 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/six.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm-4.64.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm-4.64.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | tqdm 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/tqdm/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/tqdm/__main__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/_dist_ver.py: -------------------------------------------------------------------------------- 1 | __version__ = '4.64.1' 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/tqdm/_main.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/tqdm/_monitor.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/_tqdm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/tqdm/_tqdm.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/_tqdm_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/tqdm/_tqdm_gui.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/_tqdm_notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/tqdm/_tqdm_notebook.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/_tqdm_pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/tqdm/_tqdm_pandas.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/tqdm/_utils.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/tqdm/asyncio.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/tqdm/auto.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/autonotebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/tqdm/autonotebook.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/tqdm/cli.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/completion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/tqdm/completion.sh -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/tqdm/contrib/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/contrib/bells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/tqdm/contrib/bells.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/contrib/discord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/tqdm/contrib/discord.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/contrib/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/tqdm/contrib/logging.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/contrib/slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/tqdm/contrib/slack.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/contrib/telegram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/tqdm/contrib/telegram.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/dask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/tqdm/dask.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/tqdm/gui.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/keras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/tqdm/keras.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/tqdm/notebook.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/rich.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/tqdm/rich.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/std.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/tqdm/std.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/tk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/tqdm/tk.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/tqdm.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/tqdm/tqdm.1 -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/tqdm/utils.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/tqdm/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/tqdm/version.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/types_pytz-2022.7.0.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/types_pytz-2022.7.0.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pytz-stubs 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/typing_extensions-4.4.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/typing_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/typing_extensions.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/urllib3-1.26.13.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/urllib3-1.26.13.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | urllib3 2 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/urllib3/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/urllib3/_collections.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.13" 3 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/urllib3/connection.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/urllib3/contrib/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/urllib3/contrib/socks.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/urllib3/exceptions.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/urllib3/fields.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/urllib3/filepost.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virt/Lib/site-packages/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/urllib3/packages/six.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/urllib3/poolmanager.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/urllib3/request.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/urllib3/response.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/urllib3/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/urllib3/util/__init__.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/urllib3/util/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/urllib3/util/proxy.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/urllib3/util/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/urllib3/util/queue.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/urllib3/util/request.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/urllib3/util/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/urllib3/util/response.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/urllib3/util/retry.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/urllib3/util/timeout.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/urllib3/util/url.py -------------------------------------------------------------------------------- /virt/Lib/site-packages/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Lib/site-packages/urllib3/util/wait.py -------------------------------------------------------------------------------- /virt/Scripts/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Scripts/Activate.ps1 -------------------------------------------------------------------------------- /virt/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Scripts/activate -------------------------------------------------------------------------------- /virt/Scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Scripts/activate.bat -------------------------------------------------------------------------------- /virt/Scripts/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Scripts/deactivate.bat -------------------------------------------------------------------------------- /virt/Scripts/f2py.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Scripts/f2py.exe -------------------------------------------------------------------------------- /virt/Scripts/normalizer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Scripts/normalizer.exe -------------------------------------------------------------------------------- /virt/Scripts/openai.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Scripts/openai.exe -------------------------------------------------------------------------------- /virt/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Scripts/pip.exe -------------------------------------------------------------------------------- /virt/Scripts/pip3.9.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Scripts/pip3.9.exe -------------------------------------------------------------------------------- /virt/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Scripts/pip3.exe -------------------------------------------------------------------------------- /virt/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Scripts/python.exe -------------------------------------------------------------------------------- /virt/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Scripts/pythonw.exe -------------------------------------------------------------------------------- /virt/Scripts/tqdm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/Scripts/tqdm.exe -------------------------------------------------------------------------------- /virt/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatplanet/ChatGPT-Bot/HEAD/virt/pyvenv.cfg --------------------------------------------------------------------------------