├── .editorconfig ├── .flake8 ├── .gitattributes ├── .github └── workflows │ ├── formatting.yml │ ├── mypy_check.yml │ ├── release.yml │ └── test_correctness.yml ├── .gitignore ├── .pylintrc ├── LICENSE ├── MANIFEST.in ├── README.md ├── check_all.sh ├── gen_pyi.py ├── make_release.py ├── matplotlib-stubs ├── __init__.pyi ├── artist.pyi ├── axes.pyi ├── backend_bases.pyi ├── cm.pyi ├── collections.pyi ├── color.pyi ├── font_manager.pyi ├── image.pyi ├── legend.pyi ├── patheffects.pyi ├── pyplot.pyi.in ├── shared.json ├── style.pyi ├── text.pyi └── transforms.pyi ├── mypy.ini ├── numpy-stubs ├── __init__.pyi ├── linalg.pyi ├── ma.pyi ├── random.pyi └── testing.pyi ├── pandas-stubs ├── __init__.pyi ├── core │ ├── __init__.pyi │ ├── api.pyi │ ├── arrays │ │ ├── __init__.pyi │ │ ├── base.pyi │ │ ├── integer.pyi │ │ └── masked.pyi │ ├── dtypes │ │ ├── __init__.pyi │ │ └── base.pyi │ ├── frame.pyi │ ├── groupby │ │ ├── __init__.pyi │ │ └── generic.pyi │ ├── indexes │ │ ├── __init__.pyi │ │ ├── base.pyi │ │ ├── frozen.pyi │ │ └── multi.pyi │ ├── indexing.pyi │ ├── series.pyi │ └── strings.pyi └── testing.pyi ├── pyproject.toml ├── setup.py ├── tests ├── matplotlib_test.py ├── numpy_test.py └── pandas_test.py └── tools ├── __init__.py └── code_template.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pyi.in linguist-language=Python 2 | -------------------------------------------------------------------------------- /.github/workflows/formatting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/.github/workflows/formatting.yml -------------------------------------------------------------------------------- /.github/workflows/mypy_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/.github/workflows/mypy_check.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test_correctness.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/.github/workflows/test_correctness.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/.pylintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/README.md -------------------------------------------------------------------------------- /check_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/check_all.sh -------------------------------------------------------------------------------- /gen_pyi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/gen_pyi.py -------------------------------------------------------------------------------- /make_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/make_release.py -------------------------------------------------------------------------------- /matplotlib-stubs/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/matplotlib-stubs/__init__.pyi -------------------------------------------------------------------------------- /matplotlib-stubs/artist.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/matplotlib-stubs/artist.pyi -------------------------------------------------------------------------------- /matplotlib-stubs/axes.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/matplotlib-stubs/axes.pyi -------------------------------------------------------------------------------- /matplotlib-stubs/backend_bases.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/matplotlib-stubs/backend_bases.pyi -------------------------------------------------------------------------------- /matplotlib-stubs/cm.pyi: -------------------------------------------------------------------------------- 1 | class ScalarMappable: ... 2 | -------------------------------------------------------------------------------- /matplotlib-stubs/collections.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/matplotlib-stubs/collections.pyi -------------------------------------------------------------------------------- /matplotlib-stubs/color.pyi: -------------------------------------------------------------------------------- 1 | class Normalize: ... 2 | -------------------------------------------------------------------------------- /matplotlib-stubs/font_manager.pyi: -------------------------------------------------------------------------------- 1 | class FontProperties: ... 2 | -------------------------------------------------------------------------------- /matplotlib-stubs/image.pyi: -------------------------------------------------------------------------------- 1 | class AxesImage: ... 2 | -------------------------------------------------------------------------------- /matplotlib-stubs/legend.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/matplotlib-stubs/legend.pyi -------------------------------------------------------------------------------- /matplotlib-stubs/patheffects.pyi: -------------------------------------------------------------------------------- 1 | class AbstractPathEffect: ... 2 | -------------------------------------------------------------------------------- /matplotlib-stubs/pyplot.pyi.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/matplotlib-stubs/pyplot.pyi.in -------------------------------------------------------------------------------- /matplotlib-stubs/shared.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/matplotlib-stubs/shared.json -------------------------------------------------------------------------------- /matplotlib-stubs/style.pyi: -------------------------------------------------------------------------------- 1 | def use(style: str) -> None: ... 2 | -------------------------------------------------------------------------------- /matplotlib-stubs/text.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/matplotlib-stubs/text.pyi -------------------------------------------------------------------------------- /matplotlib-stubs/transforms.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/matplotlib-stubs/transforms.pyi -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/mypy.ini -------------------------------------------------------------------------------- /numpy-stubs/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/numpy-stubs/__init__.pyi -------------------------------------------------------------------------------- /numpy-stubs/linalg.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/numpy-stubs/linalg.pyi -------------------------------------------------------------------------------- /numpy-stubs/ma.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/numpy-stubs/ma.pyi -------------------------------------------------------------------------------- /numpy-stubs/random.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/numpy-stubs/random.pyi -------------------------------------------------------------------------------- /numpy-stubs/testing.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/numpy-stubs/testing.pyi -------------------------------------------------------------------------------- /pandas-stubs/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/pandas-stubs/__init__.pyi -------------------------------------------------------------------------------- /pandas-stubs/core/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pandas-stubs/core/api.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/pandas-stubs/core/api.pyi -------------------------------------------------------------------------------- /pandas-stubs/core/arrays/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/pandas-stubs/core/arrays/__init__.pyi -------------------------------------------------------------------------------- /pandas-stubs/core/arrays/base.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/pandas-stubs/core/arrays/base.pyi -------------------------------------------------------------------------------- /pandas-stubs/core/arrays/integer.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/pandas-stubs/core/arrays/integer.pyi -------------------------------------------------------------------------------- /pandas-stubs/core/arrays/masked.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/pandas-stubs/core/arrays/masked.pyi -------------------------------------------------------------------------------- /pandas-stubs/core/dtypes/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pandas-stubs/core/dtypes/base.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/pandas-stubs/core/dtypes/base.pyi -------------------------------------------------------------------------------- /pandas-stubs/core/frame.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/pandas-stubs/core/frame.pyi -------------------------------------------------------------------------------- /pandas-stubs/core/groupby/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pandas-stubs/core/groupby/generic.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/pandas-stubs/core/groupby/generic.pyi -------------------------------------------------------------------------------- /pandas-stubs/core/indexes/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/pandas-stubs/core/indexes/__init__.pyi -------------------------------------------------------------------------------- /pandas-stubs/core/indexes/base.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/pandas-stubs/core/indexes/base.pyi -------------------------------------------------------------------------------- /pandas-stubs/core/indexes/frozen.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/pandas-stubs/core/indexes/frozen.pyi -------------------------------------------------------------------------------- /pandas-stubs/core/indexes/multi.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/pandas-stubs/core/indexes/multi.pyi -------------------------------------------------------------------------------- /pandas-stubs/core/indexing.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/pandas-stubs/core/indexing.pyi -------------------------------------------------------------------------------- /pandas-stubs/core/series.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/pandas-stubs/core/series.pyi -------------------------------------------------------------------------------- /pandas-stubs/core/strings.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/pandas-stubs/core/strings.pyi -------------------------------------------------------------------------------- /pandas-stubs/testing.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/pandas-stubs/testing.pyi -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [tool.black] 2 | line-length = 100 3 | target-version = ['py36'] 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/setup.py -------------------------------------------------------------------------------- /tests/matplotlib_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/tests/matplotlib_test.py -------------------------------------------------------------------------------- /tests/numpy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/tests/numpy_test.py -------------------------------------------------------------------------------- /tests/pandas_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/tests/pandas_test.py -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/code_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearepal/data-science-types/HEAD/tools/code_template.py --------------------------------------------------------------------------------