Skip to main content

Python type inferencer

Project description

CI PyPI - Wheel

pytype - 🦆✔

Pytype checks and infers types for your Python code - without requiring type annotations. Pytype can:

  • Lint plain Python code, flagging common mistakes such as misspelled attribute names, incorrect function calls, and much more, even across file boundaries.
  • Enforce user-provided type annotations. While annotations are optional for pytype, it will check and apply them where present.
  • Generate type annotations in standalone files ("pyi files"), which can be merged back into the Python source with a provided merge-pyi tool.

Pytype is a static analyzer; it does not execute the code it runs on.

Thousands of projects at Google rely on pytype to keep their Python code well-typed and error-free.

For more information, check out the user guide, FAQ, or supported features.

How is pytype different from other type checkers?

  1. Pytype uses inference instead of gradual typing. This means it will infer types on code even when the code has no type hints on it. So it can detect issues with code like this, which other type checkers would miss:

    def f():
        return "PyCon"
    def g():
        return f() + 2019
    
    # pytype: line 4, in g: unsupported operand type(s) for +: 'str'
    # and 'int' [unsupported-operands]
    
  2. Pytype is lenient instead of strict. That means it allows all operations that succeed at runtime and don't contradict annotations. For instance, this code will pass as safe in pytype, but fail in other type checkers, which assign types to variables as soon as they are initialized:

    from typing import List
    def get_list() -> List[str]:
        lst = ["PyCon"]
        lst.append(2019)
        return [str(x) for x in lst]
    
    # mypy: line 4: error: Argument 1 to "append" of "list" has
    # incompatible type "int"; expected "str"
    

Also see the corresponding FAQ entry.

Quickstart

To quickly get started with type-checking a file or directory, run the following, replacing file_or_directory with your input:

pip install pytype
pytype file_or_directory

To set up pytype on an entire package, add the following to a setup.cfg file in the directory immediately above the package, replacing package_name with the package name:

[pytype]
inputs = package_name

Now you can run the no-argument command pytype to type-check the package. It's also easy to add pytype to your automated testing; see this example of a GitHub project that runs pytype on Travis.

Finally, pytype generates files of inferred type information, located by default in .pytype/pyi. You can use this information to type-annotate the corresponding source file:

merge-pyi -i <filepath>.py .pytype/pyi/<filename>.pyi

Requirements

You need a Python 3.6-3.8 interpreter to run pytype, as well as an interpreter in $PATH for the Python version of the code you're analyzing (supported: 2.7, 3.5-3.8).

Platform support:

  • Pytype is currently developed and tested on Linux*, which is the main supported platform.
  • Installation on MacOSX requires OSX 10.7 or higher and Xcode v8 or higher.
  • Windows is currently not supported unless you use WSL.

* Note: On Alpine Linux, installing may fail due to issues with upstream dependencies. See the details of this issue for a possible fix.

Installing

Pytype can be installed via pip. Note that the installation requires wheel and setuptools. (If you're working in a virtualenv, these two packages should already be present.)

pip install pytype

Or from the source code on GitHub.

git clone --recurse-submodules https://github.com/google/pytype.git
cd pytype
pip install .

Instead of using --recurse-submodules, you could also have run

git submodule init
git submodule update

in the pytype directory. To edit the code and have your edits tracked live, replace the pip install command with:

pip install -e .

Installing on WSL

Follow the steps above, but make sure you have the correct libraries first:

sudo apt install build-essential python3-dev libpython3-dev

Usage

usage: pytype [options] input [input ...]

positional arguments:
  input                 file or directory to process

Common options:

  • -V, --python-version: Python version (major.minor) of the target code. Defaults to the version that pytype is running under.
  • -o, --output: The directory into which all pytype output goes, including generated .pyi files. Defaults to .pytype.
  • -d, --disable. Comma or space separated list of error names to ignore. Detailed explanations of pytype's error names are in this doc. Defaults to empty.

For a full list of options, run pytype --help.

In addition to the above, you can direct pytype to use a custom typeshed installation instead of its own bundled copy by setting $TYPESHED_HOME.

Config File

For convenience, you can save your pytype configuration in a file. The config file is an INI-style file with a [pytype] section; if an explicit config file is not supplied, pytype will look for a [pytype] section in the first setup.cfg file found by walking upwards from the current working directory.

Start off by generating a sample config file:

$ pytype --generate-config pytype.cfg

Now customize the file based on your local setup, keeping only the sections you need. Directories may be relative to the location of the config file, which is useful if you want to check in the config file as part of your project.

For example, suppose you have the following directory structure and want to analyze package ~/repo1/foo, which depends on package ~/repo2/bar:

~/
├── repo1
│   └── foo
│       ├── __init__.py
│       └── file_to_check.py
└── repo2
    └── bar
        ├── __init__.py
        └── dependency.py

Here is the filled-in config file, which instructs pytype to type-check ~/repo1/foo as Python 3.6 code, look for packages in ~/repo1 and ~/repo2, and ignore attribute errors. Notice that the path to a package does not include the package itself.

$ cat ~/repo1/pytype.cfg

# NOTE: All relative paths are relative to the location of this file.

[pytype]

# Space-separated list of files or directories to process.
inputs =
    foo

# Python version (major.minor) of the target code.
python_version = 3.6

# Paths to source code directories, separated by ':'.
pythonpath =
    .:
    ~/repo2

# Comma or space separated list of error names to ignore.
disable =
    attribute-error

We could've discovered that ~/repo2 needed to be added to the pythonpath by running pytype's broken dependency checker:

$ pytype --config=~/repo1/pytype.cfg ~/repo1/foo/*.py --unresolved

Unresolved dependencies:
  bar.dependency

Subtools

Pytype ships with a few scripts in addition to pytype itself:

  • annotate-ast, an in-progress type annotator for ASTs.
  • merge-pyi, for merging type information from a .pyi file into a Python file.
  • pytd-tool, a parser for .pyi files.
  • pytype-single, a debugging tool for pytype developers, which analyzes a single Python file assuming that .pyi files have already been generated for all of its dependencies.
  • pyxref, a cross references generator.

2021 Roadmap

  • Python 3.9 support
  • Better performance on large files
  • Support for numerical libraries

License

Apache 2.0

Disclaimer

This is not an official Google product.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pytype-2021.4.15.tar.gz (1.9 MB view details)

Uploaded Source

Built Distributions

pytype-2021.4.15-cp39-cp39-manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9

pytype-2021.4.15-cp39-cp39-macosx_10_14_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

pytype-2021.4.15-cp38-cp38-manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8

pytype-2021.4.15-cp38-cp38-macosx_10_14_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

pytype-2021.4.15-cp37-cp37m-manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.7m

pytype-2021.4.15-cp37-cp37m-macosx_10_14_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

pytype-2021.4.15-cp36-cp36m-manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.6m

pytype-2021.4.15-cp36-cp36m-macosx_10_14_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

File details

Details for the file pytype-2021.4.15.tar.gz.

File metadata

  • Download URL: pytype-2021.4.15.tar.gz
  • Upload date:
  • Size: 1.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.7

File hashes

Hashes for pytype-2021.4.15.tar.gz
Algorithm Hash digest
SHA256 c34487dbf9cfb840e311a3022e29f519de9ea4473dcc318101d2a8a81a17331a
MD5 2e216d09b4c60d6c63df4fc0f81bd93a
BLAKE2b-256 6653c1ab91f78e9c4b53aa618a9e02ce64b81497c7386a5e364c9e87294afe67

See more details on using hashes here.

Provenance

File details

Details for the file pytype-2021.4.15-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: pytype-2021.4.15-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.7

File hashes

Hashes for pytype-2021.4.15-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0bceb788f90bd260c794a9b1977f7f3f64887003110b91e311a5f7beefe849b
MD5 a2375995e0ba00820acd87e052d410e4
BLAKE2b-256 6768f359ffce79a11e0b0e507f8b2c4ee136b163114ed8249eea66171f339ab0

See more details on using hashes here.

Provenance

File details

Details for the file pytype-2021.4.15-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: pytype-2021.4.15-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.7

File hashes

Hashes for pytype-2021.4.15-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f1d0b491c5a6b1dd2005da1e5ee0e53a2e359196fa177e5fdae5f773f0326b30
MD5 d68ddf9f1c4ff9b8af1837f357dddf82
BLAKE2b-256 47dbd578eb223475c4538551fb42c0b98113e94ce54a2f1e63d860951b646281

See more details on using hashes here.

Provenance

File details

Details for the file pytype-2021.4.15-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: pytype-2021.4.15-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.7

File hashes

Hashes for pytype-2021.4.15-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1823862e1dc8bad5b9c144f8cd6320957615cb50cdaed22a86a9ac700a5ca57
MD5 fbd4f1bb59ba031ee235f6906f3f6872
BLAKE2b-256 9c118c405d0e807db9c687b4492dcd978f8550c8e1b6331dbde6d14de9d8d8af

See more details on using hashes here.

Provenance

File details

Details for the file pytype-2021.4.15-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: pytype-2021.4.15-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.7

File hashes

Hashes for pytype-2021.4.15-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 98c1faf5400bdeb62dca69e2690722d0b06b9a9a4d5e5f6ea16405566a2b8fc6
MD5 19497cc3a32fc1068b99397e1fb611c6
BLAKE2b-256 3cb7890f23337b71a2e43e8199d25ce3fa08024b6cff00e92b0ff234ff59bdd8

See more details on using hashes here.

Provenance

File details

Details for the file pytype-2021.4.15-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: pytype-2021.4.15-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.7

File hashes

Hashes for pytype-2021.4.15-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0bcf41b152ee399bc853b2eecc092107730d4ce9fe04327e97beb5e498f251fb
MD5 38842e2316fe28d43ddfcad6acc00c32
BLAKE2b-256 83f9b5e52094a373629b17dac9b42a97609affc28efcfe391e4d25e128f95335

See more details on using hashes here.

Provenance

File details

Details for the file pytype-2021.4.15-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: pytype-2021.4.15-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.7

File hashes

Hashes for pytype-2021.4.15-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 486f6d191c64c55be2d6250da5ea4eb51360cc750cef0cce41a61dcf6fecb8cd
MD5 68bfb5497256efcb9381bc8e81b07224
BLAKE2b-256 3b43c1c805afdac43c64027cde3f9d904e0997303f833d6d41d8fe70cf32b49e

See more details on using hashes here.

Provenance

File details

Details for the file pytype-2021.4.15-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: pytype-2021.4.15-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.7

File hashes

Hashes for pytype-2021.4.15-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 286f16b5d41c10261bda5a7ec62832609ba1d56cadb5ed6c1997b6318f372f65
MD5 cb90e783a056d1848b9f544ca8c4a33e
BLAKE2b-256 0e17bf298fe57f3b0a35f0d04f4afa86df37649f7e409ac9bdfc741bc26d939b

See more details on using hashes here.

Provenance

File details

Details for the file pytype-2021.4.15-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: pytype-2021.4.15-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.7

File hashes

Hashes for pytype-2021.4.15-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 e98a5260a27128fbb7c58d6a4893ec5c47a0153a760af0ee46b281d55352fe77
MD5 c04d541a7ad87f17158fa0479636e0b8
BLAKE2b-256 27a9602044b65e7514aefa2e188547677344ae25f787a7d30ce9280f0477b488

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page