Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
awesome-python-typing
Collection of awesome Python types, stubs, plugins, and tools to work with them.
https://github.com/typeddjango/awesome-python-typing
Last synced: 5 days ago
JSON representation
-
Articles
-
PEPs
- PEP-482 - Literature Overview for Type Hints.
- PEP-483 - The Theory of Type Hints.
- PEP-484 - Type Hints.
- PEP-526 - Syntax for Variable Annotations.
- PEP-3107 - Function Annotations.
- PEP-544 - Protocols: Structural subtyping (static duck typing).
- PEP-557 - Data Classes.
- PEP-560 - Core support for typing module and generic types.
- PEP-561 - Distributing and Packaging Type Information.
- PEP-563 - Postponed Evaluation of Annotations.
- PEP-585 - Type Hinting Generics In Standard Collections.
- PEP-586 - Literal Types.
- PEP-589 - TypedDict: Type Hints for Dictionaries with a Fixed Set of Keys.
- PEP-591 - Adding a final qualifier to typing.
- PEP-593 - Flexible function and variable annotations.
- PEP-604 - Complementary syntax for Union[].
- PEP-612 - Parameter Specification Variables.
- PEP-613 - Explicit Type Aliases.
- PEP-3107 - Function Annotations.
- PEP-482 - Literature Overview for Type Hints.
- PEP-483 - The Theory of Type Hints.
- PEP-484 - Type Hints.
- PEP-526 - Syntax for Variable Annotations.
- PEP-544 - Protocols: Structural subtyping (static duck typing).
- PEP-557 - Data Classes.
- PEP-560 - Core support for typing module and generic types.
- PEP-561 - Distributing and Packaging Type Information.
- PEP-563 - Postponed Evaluation of Annotations.
- PEP-585 - Type Hinting Generics In Standard Collections.
- PEP-586 - Literal Types.
- PEP-589 - TypedDict: Type Hints for Dictionaries with a Fixed Set of Keys.
- PEP-591 - Adding a final qualifier to typing.
- PEP-593 - Flexible function and variable annotations.
- PEP-604 - Complementary syntax for Union[].
- PEP-612 - Parameter Specification Variables.
- PEP-613 - Explicit Type Aliases.
-
Third-party articles
- 1-minute guide to real constants in Python - Full tutorial about `Final` constants and inheritance.
- Simple dependent types in Python - Full tutorial about `Literal` types.
- Testing mypy stubs, plugins, and types - Full tutorial about testing mypy types.
- Our journey to type checking 4 million lines of Python - Dropbox has been one of the first companies to adopt Python static type checking at this scale.
- PyTest MonkeyType Introduction - Type Annotate an existing Python Django Codebase with MonkeyType.
- The state of type hints in Python - As of May 2018.
- Type hints cheat sheet - Cheat sheet on writing type annotations by MyPy team.
- Typechecking Django and DRF - Full tutorial about type-checking django.
- Type Check Your Django Application - An article based on two recent talks on adding type checks to Django.
- typing - Official Python documentation for `typing` module.
- Python Type Checking (Guide) - In this guide, you will get a look into Python type checking.
- Adding type hints to urllib3 - Tests are not enough: Case study adding type hints to urllib3.
- Adam Johnsons Blog - Adam Johnson blogs about typing practices.
- ParamSpec Guide - Newly released feature in `PEP612` allows you do a lot of advanced typing things with functions and their signatures.
- Static Typing Python Decorators - Accurately static typing decorators in Python is an icky business. The wrapper function obfuscates type information required to statically determine the types of the parameters and the return values of the wrapped function.
- Adding type hints to urllib3 - Tests are not enough: Case study adding type hints to urllib3.
- Python-typing-koans - A set of examples to learn optional static typing in Python.
-
-
Static type checkers
- pycharm - IDE for Professional Developers.
- pyre - Performant type-checker.
- basedmypy - Based static typing with baseline functionality.
- basedpyright - Pyright fork with improvements to VSCode support and various other fixes.
- mypy - Optional static typing (PEP 484).
- pyanalyze - Extensible static analyzer and type checker.
- pylyzer - A fast static code analyzer & language server for Python, written in Rust.
- pyright - Fast type checker meant for large Python source bases. It can run in a “watch” mode and performs fast incremental updates when files are modified.
- pytype - Tool to check and infer types - without requiring type annotations.
-
Stub packages
- sqlalchemy2-stubs - Official stubs and mypy plugin for [SQLAlchemy](https://www.sqlalchemy.org).
- PyQt5-stubs - Stubs for [PyQt5](https://www.riverbankcomputing.com/software/pyqt/intro).
- boto3-stubs - Stubs for [boto3](https://github.com/boto/boto3).
- types-aiobotocore - Stubs for [aiobotocore](https://github.com/aio-libs/aiobotocore).
- asgiref - ASGI specification, provides [asgiref.typing](https://github.com/django/asgiref/blob/main/asgiref/typing.py) module with type annotations for ASGI servers.
- botostubs - Gives you code assistance for any boto3 API in any IDE.
- celery-types - Type stubs for [Celery](https://github.com/celery/celery) and its related packages [django-celery-results](https://github.com/celery/django-celery-results), [ampq](https://github.com/celery/py-amqp), [kombu](https://github.com/celery/kombu), [billiard](https://github.com/celery/billiard), [vine](https://github.com/celery/vine) and [ephem](https://github.com/brandon-rhodes/pyephem).
- django-stubs - Stubs for [Django](https://github.com/django/django).
- djangorestframework-stubs - Stubs for [DRF](https://github.com/encode/django-rest-framework).
- grpc-stubs - Stubs for [grpc](https://github.com/grpc/grpc).
- lxml-stubs - Stubs for [lxml](https://lxml.de).
- PyQt5-stubs - Stubs for [PyQt5](https://www.riverbankcomputing.com/software/pyqt/intro).
- python-phonenumbers-stubs - Stubs for [phonenumbers](https://github.com/daviddrysdale/python-phonenumbers).
- pythonista-stubs - Stubs for [Pythonista](http://omz-software.com/pythonista/docs/ios/).
- sqlalchemy-stubs - Stubs for [SQLAlchemy](https://github.com/sqlalchemy/sqlalchemy).
- torchtyping - Enhanced type annotations for [pytorch](https://pytorch.org/).
- typeshed - Collection of library stubs, with static types.
- types-aiobotocore - Stubs for [aiobotocore](https://github.com/aio-libs/aiobotocore).
- scipy-stubs - Stubs for [SciPy](https://github.com/scipy/scipy).
-
Backports and improvements
- typing-extensions - Backported and experimental type hints.
- future-typing - Backport for type hinting generics in standard collections and union types as `X | Y`.
- typing-utils - Backport 3.8+ runtime typing utils(for eg: get_origin) & add issubtype & more.
- typing-extensions - Backported and experimental type hints.
-
Tools
-
Linters
- flake8-typing-only-imports - flake8 plugin that helps identify which imports to put into type-checking blocks, and how to adjust your type annotations once imports are moved.
- flake8-pyi - Plugin for Flake8 that provides specializations for type hinting stub files.
- flake8-typing-only-imports - flake8 plugin that helps identify which imports to put into type-checking blocks, and how to adjust your type annotations once imports are moved.
- flake8-annotations-complexity - Plugin for flake8 to validate annotations complexity.
- flake8-annotations - Plugin for flake8 to check for presence of type annotations in function definitions.
- flake8-type-checking - Plugin to help you guard any type-annotation-only import correctly.
- flake8-typing-imports - Plugin which checks that typing imports are properly guarded.
- flake8-typing-only-imports - flake8 plugin that helps identify which imports to put into type-checking blocks, and how to adjust your type annotations once imports are moved.
- wemake-python-styleguide - The strictest and most opinionated Python linter ever.
- Ruff - Extremely fast linter which supports lint rules from many other lint tools, such as flake8.
- flake8-type-ignore - flake8 plugin to disallow type: ignore comments in your typed Python code.
-
Working with types
- merge-pyi - Part of pytype toolchain, applies stub files onto source code.
- mypyc - Compiles mypy-annotated, statically typed Python modules into CPython C extensions.
- typing-json - Lib for working with typed objects and JSON.
- merge-pyi - Part of pytype toolchain, applies stub files onto source code.
- mypy-protobuf - Tool to generate mypy stubs from protobufs.
- typesplainer - A Python type explainer.
- com2ann - Tool for translation of type comments to type annotations.
- merge-pyi - Part of pytype toolchain, applies stub files onto source code.
- mypy-baseline - Integrate mypy with existing codebase. A CLI tool that filters out existing type errors and reports only new ones.
- mypy-silent - Silence mypy by adding or removing code comments.
- retype - Another tool to apply stubs to code.
- typeforce - CLI tool that enriches your Python environment with type annotations, empowering mypy.
- typing-inspect - The typing_inspect module defines experimental API for runtime inspection of types defined in the `typing` module.
-
Helper tools to add annotations to existing code
- pytype annotate-ast - A work-in-progress tool to annotate the nodes of an AST with their Python types.
- jsonschema-gentypes - Generate Python types based on TypedDict from a JSON Schema.
- pytype annotate-ast - A work-in-progress tool to annotate the nodes of an AST with their Python types.
- autotyping - Automatically add simple return type annotations for functions (bool, None, Optional).
- infer-types - CLI tool to automatically infer and add type annotations into Python code.
- jsonschema-gentypes - Generate Python types based on TypedDict from a JSON Schema.
- no_implicit_optional - A codemod to make your implicit optional type hints [PEP 484](https://peps.python.org/pep-0484/#union-types) compliant.
- pyannotate - Insert annotations into your source code based on call arguments and return types observed at runtime.
- PyTypes - Infer Types by Python Tracing.
- pyre infer - Pyre has a powerful feature for migrating codebases to a typed format. The [infer](https://pyre-check.org/docs/pysa-coverage/) command-line option ingests a file or directory, makes educated guesses about the types used, and applies the annotations to the files.
- pytest-annotate - Pyannotate plugin for pytest.
- pytest-monkeytype - MonkeyType plugin for pytest.
- type4py - Deep Similarity Learning-Based Type Inference.
- typilus - A deep learning algorithm for predicting types in Python. Also available as a [GitHub action](https://github.com/typilus/typilus-action)
- auto-optional - Makes typed arguments Optional when the default argument is `None`.
- monkeytype - Collects runtime types of function arguments and return values, and can automatically generate stub files or even add draft type annotations directly to your code based on the types collected at runtime.
-
Mypy plugins
- mypy/plugins - Plugins already integrated into mypy.
- numpy - Plugin for [NumPy](https://numpy.org) support.
- kubernetes-typed - Plugin for kubernetes [CRD](https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/) type checking.
- loguru-mypy - Plugin for [loguru](https://github.com/Delgan/loguru) support.
- mypy-zope - Plugin for [zope.interface](https://zopeinterface.readthedocs.io/en/latest/) support.
- pynamodb-mypy - Plugin for [PynamoDB](https://github.com/pynamodb/PynamoDB) support.
-
Testing
- pytest-mypy - Mypy static type checker plugin for Pytest.
- mypy-test - Test mypy plugins, stubs, custom types.
- pytest-mypy-plugins - Pytest plugin for testing mypy types, stubs, and plugins.
- pytest-mypy-testing - Pytest plugin to test mypy static type analysis.
- pytest-mypy - Mypy static type checker plugin for Pytest.
-
-
Integrations
-
Mypy plugins
- linter-mypy - Mypy integration for Atom.
- linter-mypy - Mypy integration for Atom.
- emacs-flycheck-mypy - Mypy integration for Emacs.
- mypy-playground - Online playground for mypy.
- mypy-pycharm-plugin - Mypy integration for PyCharm.
- pylance - PyRight integration for VSCode.
- vim-mypy - Mypy integration for Vim.
- nbQA - Run type checkers (e.g. Mypy) on Jupyter Notebooks.
-
-
Communities
-
Third-party articles
- python/typing - Official typing gitter chat.
- TypedDjango - Official organisation gitter chat.
- PythonRu#typing - Russian slack chat (invites are [here](https://slack.python.ru/)) about types.
- python/typing - Official typing gitter chat.
- TypedDjango - Official organisation gitter chat.
- PythonRu#typing - Russian slack chat (invites are [here](https://slack.python.ru/)) about types.
-
-
Related
-
Third-party articles
- awesome-python - Curated list of awesome Python frameworks, libraries, software and resources.
- python-typecheckers - List of Python type checkers: static and runtime.
-
-
Dynamic type checkers
- pydantic - Data parsing using Python type hinting. Supports dataclasses.
- beartype - Unbearably fast `O(1)` runtime type-checking in pure Python.
- pytypes - Provides a rich set of utilities for runtime typechecking.
- strongtyping - Decorator which checks whether the function is called with the correct type of parameters.
- typedpy - Type-safe, strict Python. Works well with standard Python.
- typeguard - Another one runtime type checker.
- typical - Data parsing and automatic type-coercion using type hinting. Supports dataclasses, standard classes, function signatures, and more.
- trycast - Parse JSON-like values whose shape is defined by typed dictionaries (TypedDicts) and other standard Python type hints.
- pydantic - Data parsing using Python type hinting. Supports dataclasses.
-
Additional types
- meiga - Simple, typed and monad-based Result type.
- option - Rust like Option and Result types.
- optype - Opinionated `collections.abc` and `operators` alternative: Flexible single-method protocols and typed operators with predictable names.
- phantom-types - Phantom types.
- returns - Make your functions return something meaningful, typed, and safe.
- safetywrap - Fully typesafe, Rust-like Result and Option types.
- typet - Length-bounded types, dynamic object validation.
- useful-types - Collection of useful protocols and type aliases.
Programming Languages
Categories
Sub Categories
Keywords
python
43
mypy
27
typing
27
python3
16
pep484
10
types
8
flake8
7
static-analysis
6
mypy-stubs
5
flake8-plugin
5
typechecker
5
stubs
4
type-annotations
4
validation
4
type-checking
4
type-hints
4
code-quality
4
linter
4
mypy-plugins
3
plugin
3
runtime-typechecking
3
pytest-plugin
3
result
3
result-type
3
typechecking
3
static-typing
3
django
2
pre-commit
2
type-safety
2
python-types
2
python-typing
2
based
2
parsing
2
baseline
2
cli
2
annotations
2
imports
2
flake8-extensions
2
testing
2
pyright
2
refinement-types
1
refined-types
1
refined
1
dry-python
1
fp
1
phantom-types
1
option-type
1
optional
1
functional-programming
1
railway-oriented-programming
1