pytype


Namepytype JSON
Version 2024.3.11 PyPI version JSON
download
home_pagehttps://google.github.io/pytype
SummaryPython type inferencer
upload_time2024-03-12 01:59:00
maintainerGoogle
docs_urlNone
author
requires_python>=3.8
licenseApache 2.0
keywords
VCS
bugtrack_url
requirements attrs importlab immutabledict jinja2 libcst msgspec networkx ninja pybind11 pycnite pydot pylint tabulate toml typing-extensions
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
[![CI](https://github.com/google/pytype/workflows/CI/badge.svg?branch=main)](https://github.com/google/pytype/actions)
[![PyPI - Wheel](https://img.shields.io/pypi/wheel/pytype)](https://pypi.org/project/pytype/#files)

# pytype - 🦆✔

<!--* freshness: { owner: 'rechen' reviewed: '2023-05-19' } *-->

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][error-classes], even across
file boundaries.
* Enforce user-provided [type annotations][pep-484]. While annotations are
optional for pytype, it will check and apply them where present.
* Generate type annotations in standalone files ("[pyi files][pyi-stub-files]"),
which can be merged back into the Python source with a provided
[merge-pyi][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][user-guide], [FAQ][faq], or
[supported features][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:

    ```python
    def f():
        return "PyCon"
    def g():
        return f() + 2019

    # pytype: line 4, in g: unsupported operand type(s) for +: 'str'
    # and 'int' [unsupported-operands]
    ```

1. 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:

    ```python
    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][faq-diff].

## Quickstart

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

```shell
pip install pytype
pytype file_or_directory
```

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

```toml
[tool.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][importlab-github-actions] of a GitHub project that runs pytype on GitHub Actions.

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:

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

## Requirements

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

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][wsl].

<sub>\*
On Alpine Linux, installation may fail due to issues with upstream
dependencies.  See the details of [this issue][scikit-build-issue] for a
possible fix.
<br />
\*\*
If the ninja dependency fails to install, make sure cmake is installed. See
[this issue][ninja-build-issue] for details.
</sub>

## 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.)

```shell
pip install pytype
```

Or from the source code [on GitHub][github].

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

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

```shell
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:

```shell
pip install -e .
```

### Installing on WSL

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

```shell
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][error-classes]. 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 can be a TOML-style file with a `[tool.pytype]` section (preferred) or 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 `pyproject.toml` or
`setup.cfg` file found by walking upwards from the current working directory.

Start off by generating a sample config file:

```shell
$ pytype --generate-config pytype.toml
```

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.9 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.

```toml
$ cat ~/repo1/pytype.toml

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

[tool.pytype]

# Space-separated list of files or directories to process.
inputs = [
    'foo',
]

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

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

# 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.toml ~/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`][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.

## 2023 Roadmap

* Typegraph rewrite for improved correctness and performance.
* Basic Python 3.11 support.

## License
[Apache 2.0][license]

## Disclaimer
This is not an official Google product.

[error-classes]: https://github.com/google/pytype/blob/main/docs/errors.md
[faq]: https://github.com/google/pytype/blob/main/docs/faq.md
[faq-diff]: https://github.com/google/pytype/blob/main/docs/faq.md#how-is-pytype-different-from-other-type-checkers
[github]: https://github.com/google/pytype/
[importlab-github-actions]: https://github.com/google/importlab/blob/main/.github/workflows/ci.yml
[license]: https://github.com/google/pytype/blob/main/LICENSE
[merge-pyi]: https://github.com/google/pytype/tree/main/pytype/tools/merge_pyi
[ninja-build-issue]: https://github.com/google/pytype/issues/957
[pep-484]: https://www.python.org/dev/peps/pep-0484
[pyi-stub-files]: https://github.com/google/pytype/blob/main/docs/user_guide.md#pyi-stub-files
[scikit-build-issue]: https://github.com/scikit-build/ninja-python-distributions/issues/27
[supported-features]: https://github.com/google/pytype/blob/main/docs/support.md
[user-guide]: https://github.com/google/pytype/blob/main/docs/user_guide.md
[wsl]: https://docs.microsoft.com/en-us/windows/wsl/faq

            

Raw data

            {
    "_id": null,
    "home_page": "https://google.github.io/pytype",
    "name": "pytype",
    "maintainer": "Google",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "pytype@googlegroups.com",
    "keywords": "",
    "author": "",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/04/57/e19c01424a04609c6e528bd17eec88614d50f240005549b46e9b9d33e209/pytype-2024.3.11.tar.gz",
    "platform": null,
    "description": "\n[![CI](https://github.com/google/pytype/workflows/CI/badge.svg?branch=main)](https://github.com/google/pytype/actions)\n[![PyPI - Wheel](https://img.shields.io/pypi/wheel/pytype)](https://pypi.org/project/pytype/#files)\n\n# pytype - \ud83e\udd86\u2714\n\n<!--* freshness: { owner: 'rechen' reviewed: '2023-05-19' } *-->\n\nPytype checks and infers types for your Python code - without requiring type\nannotations. Pytype can:\n\n* Lint plain Python code, flagging common mistakes such as misspelled attribute\nnames, incorrect function calls, and [much more][error-classes], even across\nfile boundaries.\n* Enforce user-provided [type annotations][pep-484]. While annotations are\noptional for pytype, it will check and apply them where present.\n* Generate type annotations in standalone files (\"[pyi files][pyi-stub-files]\"),\nwhich can be merged back into the Python source with a provided\n[merge-pyi][merge-pyi] tool.\n\nPytype is a static analyzer; it does not execute the code it runs on.\n\nThousands of projects at Google rely on pytype to keep their Python code\nwell-typed and error-free.\n\nFor more information, check out the [user guide][user-guide], [FAQ][faq], or\n[supported features][supported-features].\n\n## How is pytype different from other type checkers?\n\n1. Pytype uses **inference** instead of gradual typing. This means it will\ninfer types on code even when the code has no type hints on it. So it can\ndetect issues with code like this, which other type checkers would miss:\n\n    ```python\n    def f():\n        return \"PyCon\"\n    def g():\n        return f() + 2019\n\n    # pytype: line 4, in g: unsupported operand type(s) for +: 'str'\n    # and 'int' [unsupported-operands]\n    ```\n\n1. Pytype is **lenient** instead of strict. That means it allows all\noperations that succeed at runtime and don't contradict annotations. For\ninstance, this code will pass as safe in pytype, but fail in other type\ncheckers, which assign types to variables as soon as they are initialized:\n\n    ```python\n    from typing import List\n    def get_list() -> List[str]:\n        lst = [\"PyCon\"]\n        lst.append(2019)\n        return [str(x) for x in lst]\n\n    # mypy: line 4: error: Argument 1 to \"append\" of \"list\" has\n    # incompatible type \"int\"; expected \"str\"\n    ```\n\nAlso see the corresponding [FAQ entry][faq-diff].\n\n## Quickstart\n\nTo quickly get started with type-checking a file or directory, run the\nfollowing, replacing `file_or_directory` with your input:\n\n```shell\npip install pytype\npytype file_or_directory\n```\n\nTo set up pytype on an entire package, add the following to a `pyproject.toml`\nfile in the directory immediately above the package, replacing `package_name`\nwith the package name:\n\n```toml\n[tool.pytype]\ninputs = ['package_name']\n```\n\nNow you can run the no-argument command `pytype` to type-check the package. It's\nalso easy to add pytype to your automated testing; see this\n[example][importlab-github-actions] of a GitHub project that runs pytype on GitHub Actions.\n\nFinally, pytype generates files of inferred type information, located by default\nin `.pytype/pyi`. You can use this information to type-annotate the\ncorresponding source file:\n\n```shell\nmerge-pyi -i <filepath>.py .pytype/pyi/<filename>.pyi\n```\n\n## Requirements\n\nYou need a Python 3.8-3.11 interpreter to run pytype, as well as an\ninterpreter in `$PATH` for the Python version of the code you're analyzing\n(supported: 3.8-3.11).\n\nPlatform support:\n\n* Pytype is currently developed and tested on Linux\\*, which is the main supported\n  platform.\n* Installation on MacOSX requires OSX 10.7 or higher and Xcode v8 or higher**.\n* Windows is currently not supported unless you use [WSL][wsl].\n\n<sub>\\*\nOn Alpine Linux, installation may fail due to issues with upstream\ndependencies.  See the details of [this issue][scikit-build-issue] for a\npossible fix.\n<br />\n\\*\\*\nIf the ninja dependency fails to install, make sure cmake is installed. See\n[this issue][ninja-build-issue] for details.\n</sub>\n\n## Installing\n\nPytype can be installed via pip. Note that the installation requires `wheel`\nand `setuptools`. (If you're working in a virtualenv, these two packages should\nalready be present.)\n\n```shell\npip install pytype\n```\n\nOr from the source code [on GitHub][github].\n\n```shell\ngit clone --recurse-submodules https://github.com/google/pytype.git\ncd pytype\npip install .\n```\n\nInstead of using `--recurse-submodules`, you could also have run\n\n```shell\ngit submodule init\ngit submodule update\n```\n\nin the `pytype` directory. To edit the code and have your edits tracked live,\nreplace the pip install command with:\n\n```shell\npip install -e .\n```\n\n### Installing on WSL\n\nFollow the steps above, but make sure you have the correct libraries first:\n\n```shell\nsudo apt install build-essential python3-dev libpython3-dev\n```\n\n## Usage\n\n```\nusage: pytype [options] input [input ...]\n\npositional arguments:\n  input                 file or directory to process\n```\n\nCommon options:\n\n* `-V, --python-version`: Python version (major.minor) of the target code.\n  Defaults to the version that pytype is running under.\n* `-o, --output`: The directory into which all pytype output goes, including\n  generated .pyi files. Defaults to `.pytype`.\n* `-d, --disable`. Comma or space-separated list of error names to ignore.\n  Detailed explanations of pytype's error names are in\n  [this doc][error-classes]. Defaults to empty.\n\nFor a full list of options, run `pytype --help`.\n\nIn addition to the above, you can direct pytype to use a custom typeshed\ninstallation instead of its own bundled copy by setting `$TYPESHED_HOME`.\n\n### Config File\n\nFor convenience, you can save your pytype configuration in a file. The config\nfile can be a TOML-style file with a `[tool.pytype]` section (preferred) or an\nINI-style file with a `[pytype]` section. If an explicit config file is not\nsupplied, pytype will look for a pytype section in the first `pyproject.toml` or\n`setup.cfg` file found by walking upwards from the current working directory.\n\nStart off by generating a sample config file:\n\n```shell\n$ pytype --generate-config pytype.toml\n```\n\nNow customize the file based on your local setup, keeping only the sections you\nneed. Directories may be relative to the location of the config file, which is\nuseful if you want to check in the config file as part of your project.\n\nFor example, suppose you have the following directory structure and want to\nanalyze package `~/repo1/foo`, which depends on package `~/repo2/bar`:\n\n```\n~/\n\u251c\u2500\u2500 repo1\n\u2502   \u2514\u2500\u2500 foo\n\u2502       \u251c\u2500\u2500 __init__.py\n\u2502       \u2514\u2500\u2500 file_to_check.py\n\u2514\u2500\u2500 repo2\n    \u2514\u2500\u2500 bar\n        \u251c\u2500\u2500 __init__.py\n        \u2514\u2500\u2500 dependency.py\n```\n\nHere is the filled-in config file, which instructs pytype to type-check\n`~/repo1/foo` as Python 3.9 code, look for packages in `~/repo1` and `~/repo2`,\nand ignore attribute errors. Notice that the path to a package does not include\nthe package itself.\n\n```toml\n$ cat ~/repo1/pytype.toml\n\n# NOTE: All relative paths are relative to the location of this file.\n\n[tool.pytype]\n\n# Space-separated list of files or directories to process.\ninputs = [\n    'foo',\n]\n\n# Python version (major.minor) of the target code.\npython_version = '3.9'\n\n# Paths to source code directories, separated by ':'.\npythonpath = .:~/repo2\n\n# Space-separated list of error names to ignore.\ndisable = [\n    'attribute-error',\n]\n```\n\nWe could've discovered that `~/repo2` needed to be added to the pythonpath by\nrunning pytype's broken dependency checker:\n\n```\n$ pytype --config=~/repo1/pytype.toml ~/repo1/foo/*.py --unresolved\n\nUnresolved dependencies:\n  bar.dependency\n```\n\n### Subtools\n\nPytype ships with a few scripts in addition to `pytype` itself:\n\n* `annotate-ast`, an in-progress type annotator for ASTs.\n* [`merge-pyi`][merge-pyi], for merging type information from a .pyi file into a\nPython file.\n* `pytd-tool`, a parser for .pyi files.\n* `pytype-single`, a debugging tool for pytype developers, which analyzes a\nsingle Python file assuming that .pyi files have already been generated for all\nof its dependencies.\n* `pyxref`, a cross-references generator.\n\n## 2023 Roadmap\n\n* Typegraph rewrite for improved correctness and performance.\n* Basic Python 3.11 support.\n\n## License\n[Apache 2.0][license]\n\n## Disclaimer\nThis is not an official Google product.\n\n[error-classes]: https://github.com/google/pytype/blob/main/docs/errors.md\n[faq]: https://github.com/google/pytype/blob/main/docs/faq.md\n[faq-diff]: https://github.com/google/pytype/blob/main/docs/faq.md#how-is-pytype-different-from-other-type-checkers\n[github]: https://github.com/google/pytype/\n[importlab-github-actions]: https://github.com/google/importlab/blob/main/.github/workflows/ci.yml\n[license]: https://github.com/google/pytype/blob/main/LICENSE\n[merge-pyi]: https://github.com/google/pytype/tree/main/pytype/tools/merge_pyi\n[ninja-build-issue]: https://github.com/google/pytype/issues/957\n[pep-484]: https://www.python.org/dev/peps/pep-0484\n[pyi-stub-files]: https://github.com/google/pytype/blob/main/docs/user_guide.md#pyi-stub-files\n[scikit-build-issue]: https://github.com/scikit-build/ninja-python-distributions/issues/27\n[supported-features]: https://github.com/google/pytype/blob/main/docs/support.md\n[user-guide]: https://github.com/google/pytype/blob/main/docs/user_guide.md\n[wsl]: https://docs.microsoft.com/en-us/windows/wsl/faq\n",
    "bugtrack_url": null,
    "license": "Apache 2.0",
    "summary": "Python type inferencer",
    "version": "2024.3.11",
    "project_urls": {
        "Code": "https://github.com/google/pytype",
        "Documentation": "https://google.github.io/pytype",
        "Homepage": "https://google.github.io/pytype",
        "Issue Tracker": "https://github.com/google/pytype/issues"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75e0572e9ae0c93b99917258c6c62cf66d36b6c37fdeb11ae32638248e302869",
                "md5": "54315124746b7fd7932a1e1a1e2c86b5",
                "sha256": "badcf1774e65b2654a44add37c2c85c4079f28eb05d6eb6b7b76fd5672c1d123"
            },
            "downloads": -1,
            "filename": "pytype-2024.3.11-cp310-cp310-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "54315124746b7fd7932a1e1a1e2c86b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 4476567,
            "upload_time": "2024-03-12T02:04:41",
            "upload_time_iso_8601": "2024-03-12T02:04:41.413529Z",
            "url": "https://files.pythonhosted.org/packages/75/e0/572e9ae0c93b99917258c6c62cf66d36b6c37fdeb11ae32638248e302869/pytype-2024.3.11-cp310-cp310-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a626c9fc9efbe0b55c08710bba9aedbd8b74dc1323f86304b931eded2bb485de",
                "md5": "0861ea1afed21eb1c6791d25dc39f3c6",
                "sha256": "a3e04d81939f1b954779c490ec765aea1b5b2420d97565d9145b61bcd440792c"
            },
            "downloads": -1,
            "filename": "pytype-2024.3.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0861ea1afed21eb1c6791d25dc39f3c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 4619676,
            "upload_time": "2024-03-12T02:04:46",
            "upload_time_iso_8601": "2024-03-12T02:04:46.111988Z",
            "url": "https://files.pythonhosted.org/packages/a6/26/c9fc9efbe0b55c08710bba9aedbd8b74dc1323f86304b931eded2bb485de/pytype-2024.3.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a62b6913f699adcbca7c6746755603717e006261f70fcbd3b93317478205376",
                "md5": "aab7cbf48383796ca104c2c77f1304c2",
                "sha256": "a73d337ac2b9db10111d1eb69f58efd9f77542f36296d21fd73f2624b1b84714"
            },
            "downloads": -1,
            "filename": "pytype-2024.3.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aab7cbf48383796ca104c2c77f1304c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 4629261,
            "upload_time": "2024-03-12T02:04:49",
            "upload_time_iso_8601": "2024-03-12T02:04:49.466939Z",
            "url": "https://files.pythonhosted.org/packages/9a/62/b6913f699adcbca7c6746755603717e006261f70fcbd3b93317478205376/pytype-2024.3.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c61282fc9d979268ac0e4b446b75bc7df7f66dfb52b83ab4446ebf4c6d091428",
                "md5": "1fa9e35c8346134144c296e036fd6e70",
                "sha256": "67dcc2606dbecf26ceaa2cf1b434a49f6a4df92e6fcb8f9ce493e6dc579577ac"
            },
            "downloads": -1,
            "filename": "pytype-2024.3.11-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "1fa9e35c8346134144c296e036fd6e70",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 4623412,
            "upload_time": "2024-03-12T02:04:52",
            "upload_time_iso_8601": "2024-03-12T02:04:52.328602Z",
            "url": "https://files.pythonhosted.org/packages/c6/12/82fc9d979268ac0e4b446b75bc7df7f66dfb52b83ab4446ebf4c6d091428/pytype-2024.3.11-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cff0a40558297a4a45654810cff60df43bdcbe12043c23ada0493ce0491a44b6",
                "md5": "ed3462bc96161cdb1bd0f4294357b30d",
                "sha256": "5a5070f2f661f043301faf79a6cd79a5f097fbd98559d6ebbefdd60469844123"
            },
            "downloads": -1,
            "filename": "pytype-2024.3.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ed3462bc96161cdb1bd0f4294357b30d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 4620838,
            "upload_time": "2024-03-12T02:04:55",
            "upload_time_iso_8601": "2024-03-12T02:04:55.168521Z",
            "url": "https://files.pythonhosted.org/packages/cf/f0/a40558297a4a45654810cff60df43bdcbe12043c23ada0493ce0491a44b6/pytype-2024.3.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae4a83370df2a18d493805d28d04a3c897654d9757bdeae68c328e1b11d8a22c",
                "md5": "55f48fd3398e01ea2ce4f8dad956c5ae",
                "sha256": "13c43363a9e953de2c3ab7a31890d153e11fe494a92c268c688616b2f0c42e99"
            },
            "downloads": -1,
            "filename": "pytype-2024.3.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "55f48fd3398e01ea2ce4f8dad956c5ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 4630722,
            "upload_time": "2024-03-12T02:04:58",
            "upload_time_iso_8601": "2024-03-12T02:04:58.491462Z",
            "url": "https://files.pythonhosted.org/packages/ae/4a/83370df2a18d493805d28d04a3c897654d9757bdeae68c328e1b11d8a22c/pytype-2024.3.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3906edb81e4a3a1f883ac1b3c10791b07cc5ca621c301e01b7a55f983ef03082",
                "md5": "17e9fb3e13b5dd0580809b85899a7e1c",
                "sha256": "a028e42df99cb0e94fa8c18220e11b53018a584bbca4ae9fca93f814cb8b8608"
            },
            "downloads": -1,
            "filename": "pytype-2024.3.11-cp38-cp38-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "17e9fb3e13b5dd0580809b85899a7e1c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 4476420,
            "upload_time": "2024-03-12T02:05:01",
            "upload_time_iso_8601": "2024-03-12T02:05:01.864031Z",
            "url": "https://files.pythonhosted.org/packages/39/06/edb81e4a3a1f883ac1b3c10791b07cc5ca621c301e01b7a55f983ef03082/pytype-2024.3.11-cp38-cp38-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b8c15b07e863889d18737d833eaea4ecde819f16cad2aca4388475576fdfbaf",
                "md5": "7cd0d945bfd4175741dfb885baa347b0",
                "sha256": "c34011340b10bcde2a7d219d7b8f8310a41f890b8110b3935864bedd9e4ad299"
            },
            "downloads": -1,
            "filename": "pytype-2024.3.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7cd0d945bfd4175741dfb885baa347b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 4619419,
            "upload_time": "2024-03-12T02:05:05",
            "upload_time_iso_8601": "2024-03-12T02:05:05.414140Z",
            "url": "https://files.pythonhosted.org/packages/7b/8c/15b07e863889d18737d833eaea4ecde819f16cad2aca4388475576fdfbaf/pytype-2024.3.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21f3d7a333434d63d803d83f4b96d6c3e612b34b189421d002108f13a880ec74",
                "md5": "e9e0dfa7ec370b16f9c87029e5ec7140",
                "sha256": "0bc7f3447c9a3a0602fa14bfd502ccfe17499bf598d6306588b413a6cb2d031e"
            },
            "downloads": -1,
            "filename": "pytype-2024.3.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e9e0dfa7ec370b16f9c87029e5ec7140",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 4629272,
            "upload_time": "2024-03-12T02:05:08",
            "upload_time_iso_8601": "2024-03-12T02:05:08.828537Z",
            "url": "https://files.pythonhosted.org/packages/21/f3/d7a333434d63d803d83f4b96d6c3e612b34b189421d002108f13a880ec74/pytype-2024.3.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "60e4e35ee9c98ccd783bd6b43e0f174e8bb56c1d37443b4c067835cf76cc56a6",
                "md5": "5a8c31135706d703fdcbc38b3645973c",
                "sha256": "7cdeb7706e7d121ef59795696d0b70921e5c460568d4e7444660689f55670a1e"
            },
            "downloads": -1,
            "filename": "pytype-2024.3.11-cp39-cp39-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5a8c31135706d703fdcbc38b3645973c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 4476785,
            "upload_time": "2024-03-12T02:05:12",
            "upload_time_iso_8601": "2024-03-12T02:05:12.643391Z",
            "url": "https://files.pythonhosted.org/packages/60/e4/e35ee9c98ccd783bd6b43e0f174e8bb56c1d37443b4c067835cf76cc56a6/pytype-2024.3.11-cp39-cp39-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d875306bce6ccc807ce28a106a8402c535cd7ba526284744a2b3ffa047d5c67e",
                "md5": "c680ae40ef2824bf061650b0882a1c6e",
                "sha256": "3338849e0e2dc8d784169b125b55ee84c51b1cf4433f4f3646fbad579958b1a1"
            },
            "downloads": -1,
            "filename": "pytype-2024.3.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c680ae40ef2824bf061650b0882a1c6e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 4619635,
            "upload_time": "2024-03-12T02:05:15",
            "upload_time_iso_8601": "2024-03-12T02:05:15.789813Z",
            "url": "https://files.pythonhosted.org/packages/d8/75/306bce6ccc807ce28a106a8402c535cd7ba526284744a2b3ffa047d5c67e/pytype-2024.3.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "df3b09d04947a462539e62e3876c0c6b400b3ffca1a49507ba0f225b9de4a2a6",
                "md5": "6a6292cef6ff6b56a954ae394556433d",
                "sha256": "100f223b692032b17026b15911a6da7b6bb7b48494a3fb5e566a0ce733355b07"
            },
            "downloads": -1,
            "filename": "pytype-2024.3.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6a6292cef6ff6b56a954ae394556433d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 4629581,
            "upload_time": "2024-03-12T02:05:18",
            "upload_time_iso_8601": "2024-03-12T02:05:18.997519Z",
            "url": "https://files.pythonhosted.org/packages/df/3b/09d04947a462539e62e3876c0c6b400b3ffca1a49507ba0f225b9de4a2a6/pytype-2024.3.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0457e19c01424a04609c6e528bd17eec88614d50f240005549b46e9b9d33e209",
                "md5": "b85d1e54d914db7c61166469937ae240",
                "sha256": "ee3ad1dcbbdf7233583163ddb70b1166e2e70189e2f5c7ec46127a4f275d5d72"
            },
            "downloads": -1,
            "filename": "pytype-2024.3.11.tar.gz",
            "has_sig": false,
            "md5_digest": "b85d1e54d914db7c61166469937ae240",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 2918465,
            "upload_time": "2024-03-12T01:59:00",
            "upload_time_iso_8601": "2024-03-12T01:59:00.951450Z",
            "url": "https://files.pythonhosted.org/packages/04/57/e19c01424a04609c6e528bd17eec88614d50f240005549b46e9b9d33e209/pytype-2024.3.11.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-12 01:59:00",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "google",
    "github_project": "pytype",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "attrs",
            "specs": [
                [
                    ">=",
                    "21.4.0"
                ]
            ]
        },
        {
            "name": "importlab",
            "specs": [
                [
                    ">=",
                    "0.8"
                ]
            ]
        },
        {
            "name": "immutabledict",
            "specs": [
                [
                    ">=",
                    "4.1.0"
                ]
            ]
        },
        {
            "name": "jinja2",
            "specs": [
                [
                    ">=",
                    "3.1.2"
                ]
            ]
        },
        {
            "name": "libcst",
            "specs": [
                [
                    ">=",
                    "1.0.1"
                ]
            ]
        },
        {
            "name": "msgspec",
            "specs": [
                [
                    ">=",
                    "0.18.6"
                ]
            ]
        },
        {
            "name": "networkx",
            "specs": [
                [
                    "<",
                    "3.2"
                ]
            ]
        },
        {
            "name": "ninja",
            "specs": [
                [
                    ">=",
                    "1.10.0.post2"
                ]
            ]
        },
        {
            "name": "pybind11",
            "specs": [
                [
                    ">=",
                    "2.10.1"
                ]
            ]
        },
        {
            "name": "pycnite",
            "specs": [
                [
                    ">=",
                    "2023.10.11"
                ]
            ]
        },
        {
            "name": "pydot",
            "specs": [
                [
                    ">=",
                    "1.4.2"
                ]
            ]
        },
        {
            "name": "pylint",
            "specs": [
                [
                    ">=",
                    "2.14.4"
                ]
            ]
        },
        {
            "name": "tabulate",
            "specs": [
                [
                    ">=",
                    "0.8.10"
                ]
            ]
        },
        {
            "name": "toml",
            "specs": [
                [
                    ">=",
                    "0.10.2"
                ]
            ]
        },
        {
            "name": "typing-extensions",
            "specs": [
                [
                    ">=",
                    "4.3.0"
                ]
            ]
        }
    ],
    "lcname": "pytype"
}
        
Elapsed time: 0.21514s