{ "info": { "author": "", "author_email": "", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Software Development" ], "description": "[![Build Status](https://travis-ci.org/google/pytype.svg?branch=master)](https://travis-ci.org/google/pytype)\n\n# pytype - \ud83e\udd86\u2714\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] or [FAQ][faq].\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```\npip install pytype\npytype file_or_directory\n```\n\nTo set up pytype on an entire package, add the following to a `setup.cfg` file\nin the directory immediately above the package, replacing `package_name` with\nthe package name:\n\n```\n[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-travis] of a GitHub project that runs pytype on Travis.\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```\nmerge-pyi -i .py .pytype/pyi/.pyi\n```\n\n## Requirements\n\nYou need a Python 2.7 or 3.5+ interpreter to run pytype, as well as an\ninterpreter in `$PATH` for the Python version of the code you're analyzing.\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## 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```\npip install pytype\n```\n\nOr from the source code [on GitHub][github].\n\n```\ngit clone --recurse-submodules https://github.com/google/pytype.git\ncd pytype\npip install -U .\n```\n\nInstead of using `--recurse-submodules`, you could also have run\n\n```\ngit submodule init\ngit submodule update\n```\n\nin the `pytype` directory.\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 `3.6`.\n* `-o, --output`: The directory into which all pytype output goes, including\n generated .pyi files. Defaults to `.pytype`.\n* `-d, --disable`. Comma separated list of error names to ignore. Detailed\n explanations of pytype's error names are in [this doc][error-classes].\n 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 is an INI-style file with a `[pytype]` section; if an explicit config file\nis not supplied, pytype will look for a `[pytype]` section in the first\n`setup.cfg` file found by walking upwards from the current working directory.\n\nStart off by generating a sample config file:\n\n```\n$ pytype --generate-config pytype.cfg\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.6 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```\n$ cat ~/repo1/pytype.cfg\n\n# NOTE: All relative paths are relative to the location of this file.\n\n[pytype]\n\n# Space-separated list of files or directories to process.\ninputs =\n foo\n\n# Python version (major.minor) of the target code.\npython_version = 3.6\n\n# Paths to source code directories, separated by ':'.\npythonpath =\n .:\n ~/repo2\n\n# Comma separated list of error names to ignore.\ndisable =\n attribute-error\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.cfg ~/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`, 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## Roadmap\n\n* Windows support\n\n## License\n[Apache 2.0][license]\n\n## Disclaimer\nThis is not an official Google product.\n\n\n\n[error-classes]: docs/errors.md\n[faq]: docs/faq.md\n[faq-diff]: docs/faq.md#how-is-pytype-different-from-other-type-checkers\n[github]: https://github.com/google/pytype/\n[importlab-travis]: https://github.com/google/importlab/blob/master/.travis.yml\n[merge-pyi]: https://github.com/google/pytype/tree/master/pytype/tools/merge_pyi\n[pep-484]: https://www.python.org/dev/peps/pep-0484\n[pyi-stub-files]: docs/user_guide.md#pyi-stub-files\n[user-guide]: docs/user_guide.md\n[wsl]: https://docs.microsoft.com/en-us/windows/wsl/faq\n\n\n\n[license]: https://github.com/google/pytype/blob/master/LICENSE", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://google.github.io/pytype", "keywords": "", "license": "", "maintainer": "Google", "maintainer_email": "pytype@googlegroups.com", "name": "pytype", "package_url": "https://pypi.org/project/pytype/", "platform": "", "project_url": "https://pypi.org/project/pytype/", "project_urls": { "Homepage": "https://google.github.io/pytype" }, "release_url": "https://pypi.org/project/pytype/2019.10.17/", "requires_dist": null, "requires_python": "", "summary": "Python type inferencer", "version": "2019.10.17" }, "last_serial": 5992832, "releases": { "0.2": [], "2018.10.30": [ { "comment_text": "", "digests": { "md5": "44f249470cb44e0b01940f9dbd918e46", "sha256": "fdbbb2ae1c739b4bad67bfdfeedbe21d5b41c9689e6370e441101f3149157d43" }, "downloads": -1, "filename": "pytype-2018.10.30.tar.gz", "has_sig": false, "md5_digest": "44f249470cb44e0b01940f9dbd918e46", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 967622, "upload_time": "2018-10-31T01:59:05", "url": "https://files.pythonhosted.org/packages/e6/f1/1e950c8b3122178c63259c458329500f4d889f0c320c2af27a2b220cf318/pytype-2018.10.30.tar.gz" } ], "2018.11.6": [ { "comment_text": "", "digests": { "md5": "2597e3693be8f57e516eab5824a759fb", "sha256": "f8b46dc61ad0fca5ffff5dec1fffa9246dde10b57d2d3b0e5bc3834e3b04d622" }, "downloads": -1, "filename": "pytype-2018.11.6.tar.gz", "has_sig": false, "md5_digest": "2597e3693be8f57e516eab5824a759fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 974800, "upload_time": "2018-11-07T00:28:45", "url": "https://files.pythonhosted.org/packages/02/8b/0683ed72a421e9fde46f6e33c7bb1fddea83d7b8ca63a6ba666cc2f044e2/pytype-2018.11.6.tar.gz" } ], "2018.12.11": [ { "comment_text": "", "digests": { "md5": "c01b9762a2f0131e2a384d528871b2d6", "sha256": "605336e0408de8e1150e21bec9cb441202f1e931b3e6c97c1ec47832c315c81c" }, "downloads": -1, "filename": "pytype-2018.12.11.tar.gz", "has_sig": false, "md5_digest": "c01b9762a2f0131e2a384d528871b2d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 977449, "upload_time": "2018-12-12T22:42:21", "url": "https://files.pythonhosted.org/packages/27/ee/9d813f75dfdde769984572d4c5a400c95ccd66f2931eb67d7fb35c5726ba/pytype-2018.12.11.tar.gz" } ], "2018.12.21": [ { "comment_text": "", "digests": { "md5": "289c7b216307f102bcd13bdc519663c6", "sha256": "08e8826e704de61c61d1452dd0d98bbbad351997512a3a4c6a696a215cdbe805" }, "downloads": -1, "filename": "pytype-2018.12.21.tar.gz", "has_sig": false, "md5_digest": "289c7b216307f102bcd13bdc519663c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 977533, "upload_time": "2018-12-26T19:01:25", "url": "https://files.pythonhosted.org/packages/4b/f8/1e8e30493e0415961a5cb06023828e5b44fb854f13245ccca6daaf5f6e2b/pytype-2018.12.21.tar.gz" } ], "2018.5.14": [ { "comment_text": "", "digests": { "md5": "36cd7e98a78c18c03c352bf242453e84", "sha256": "904853b26c1092eb82fd6f2b320e4bdbb7d15a19a2433f2ce7fe01e60a94987c" }, "downloads": -1, "filename": "pytype-2018.5.14.tar.gz", "has_sig": false, "md5_digest": "36cd7e98a78c18c03c352bf242453e84", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1496178, "upload_time": "2018-05-15T19:59:31", "url": "https://files.pythonhosted.org/packages/57/12/291613516d4029184e026e0fc1162e8a512de4dc3fb1f8bb9bd4773a9461/pytype-2018.5.14.tar.gz" } ], "2018.5.15": [ { "comment_text": "", "digests": { "md5": "42d311fa05d6672125929f5d6443f443", "sha256": "267a688f66108b75d320befc504ab5a9e30499d0889354813bc24fdb922d9ec0" }, "downloads": -1, "filename": "pytype-2018.5.15.tar.gz", "has_sig": false, "md5_digest": "42d311fa05d6672125929f5d6443f443", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1095539, "upload_time": "2018-05-15T20:46:03", "url": "https://files.pythonhosted.org/packages/2e/41/fcafa491ab991a62dacf486c7aaee36e252e7c229d0e5fd8c38a66c7f4a3/pytype-2018.5.15.tar.gz" } ], "2018.5.22": [ { "comment_text": "", "digests": { "md5": "374fc27ee7953d6052f907ec6df516d2", "sha256": "505053ddfd60171bc431afd995d53f3df397777596451e84d82f5d70d2a138a5" }, "downloads": -1, "filename": "pytype-2018.5.22.tar.gz", "has_sig": false, "md5_digest": "374fc27ee7953d6052f907ec6df516d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1140062, "upload_time": "2018-05-22T21:27:26", "url": "https://files.pythonhosted.org/packages/80/5c/db4ceca77ef0323a5d94d2d64981936a58926953136a7cf7bbb0446cfd19/pytype-2018.5.22.tar.gz" } ], "2018.5.22.1": [ { "comment_text": "", "digests": { "md5": "d0099ca6579a00999cf09cf1b21c8e88", "sha256": "4821dca02ebd681acc65e1e7ce8f824f4e48bfb430d35cef92b78e5dd665734b" }, "downloads": -1, "filename": "pytype-2018.5.22.1.tar.gz", "has_sig": false, "md5_digest": "d0099ca6579a00999cf09cf1b21c8e88", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1140265, "upload_time": "2018-05-22T22:29:25", "url": "https://files.pythonhosted.org/packages/0b/b8/aa65032035956a64735e3319dc4cedfe6dd9b9a711b87c5c45ffc982ed7c/pytype-2018.5.22.1.tar.gz" } ], "2018.6.15": [ { "comment_text": "", "digests": { "md5": "41eb37f51a94eb5e3e05b41dc7eabf21", "sha256": "6f85efb43ed9c9d9b443d203cdb18677cc3d75589182892a220cd98ad736fc9f" }, "downloads": -1, "filename": "pytype-2018.6.15.tar.gz", "has_sig": false, "md5_digest": "41eb37f51a94eb5e3e05b41dc7eabf21", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 993792, "upload_time": "2018-06-15T22:42:11", "url": "https://files.pythonhosted.org/packages/54/57/4d539632801621ccdfd871aea25aad1b4e88479903ec4df7f88c53cd9c20/pytype-2018.6.15.tar.gz" } ], "2018.6.18": [ { "comment_text": "", "digests": { "md5": "f32b691a27da21f9aea3813db7acc377", "sha256": "be579e0d5d4942825c640bca585487d807618223059367306a2c71491e455163" }, "downloads": -1, "filename": "pytype-2018.6.18.tar.gz", "has_sig": false, "md5_digest": "f32b691a27da21f9aea3813db7acc377", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 993850, "upload_time": "2018-06-19T00:05:27", "url": "https://files.pythonhosted.org/packages/b4/47/bc81a1ff724317366a763591ac810c318e5db5a5be0fc8723ca5325658be/pytype-2018.6.18.tar.gz" } ], "2018.6.19": [ { "comment_text": "", "digests": { "md5": "1f608921a0dddd8096a925887b469718", "sha256": "0ddd5a636fdc8eebff641d2d20e22318b23f3fe93b64cad6da298115989ee6cc" }, "downloads": -1, "filename": "pytype-2018.6.19.tar.gz", "has_sig": false, "md5_digest": "1f608921a0dddd8096a925887b469718", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 984020, "upload_time": "2018-06-20T23:14:57", "url": "https://files.pythonhosted.org/packages/f7/8b/a48ecf2ea327dbe8e99a0501eea20ffe15f96d307a4679211ee36f876c9f/pytype-2018.6.19.tar.gz" } ], "2018.6.5": [ { "comment_text": "", "digests": { "md5": "d9be7cdea712ab7433f94b43be70850e", "sha256": "d971f4e13b8278e1c1d35c7254aa2968d3ea9f9a48313bad8faefc60c56108dd" }, "downloads": -1, "filename": "pytype-2018.6.5.tar.gz", "has_sig": false, "md5_digest": "d9be7cdea712ab7433f94b43be70850e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1044994, "upload_time": "2018-06-05T18:56:09", "url": "https://files.pythonhosted.org/packages/e2/32/403592de9bad1c6c125975ee948ba525c584b8ce63e55264e9cdba1dc4ed/pytype-2018.6.5.tar.gz" } ], "2018.7.13": [ { "comment_text": "", "digests": { "md5": "07d41b8846de411646a61b4d53560770", "sha256": "dcfaa9c008895715912239788b973a6c1a3540abef537e574ce3c7b2c29738ed" }, "downloads": -1, "filename": "pytype-2018.7.13.tar.gz", "has_sig": false, "md5_digest": "07d41b8846de411646a61b4d53560770", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 946885, "upload_time": "2018-08-09T22:58:13", "url": "https://files.pythonhosted.org/packages/ae/f4/5305967a9d9a0cae019b09ee50aa8f41357150de2ef0e90b62983192793a/pytype-2018.7.13.tar.gz" } ], "2018.8.10": [ { "comment_text": "", "digests": { "md5": "57eb636c06d548c8554d463f50b619e0", "sha256": "54c58ef15af27e892be4e98117430a07bdb8719d4d8e8ba0bd71ae4a0a5cf610" }, "downloads": -1, "filename": "pytype-2018.8.10.tar.gz", "has_sig": false, "md5_digest": "57eb636c06d548c8554d463f50b619e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 946998, "upload_time": "2018-08-10T08:59:24", "url": "https://files.pythonhosted.org/packages/24/56/dc40fed0d2b8ee62fdaa216b294619351475f6d3b4564af3e6e8862cbac5/pytype-2018.8.10.tar.gz" } ], "2018.9.18": [ { "comment_text": "", "digests": { "md5": "f369a9b1cfe7e351d50e8d280ee8a274", "sha256": "61adc9219c53fb1c3c7bf2b74ee1197acb8ff0d249af6c03d463c181cc9f303e" }, "downloads": -1, "filename": "pytype-2018.9.18.tar.gz", "has_sig": false, "md5_digest": "f369a9b1cfe7e351d50e8d280ee8a274", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 951874, "upload_time": "2018-09-18T23:03:59", "url": "https://files.pythonhosted.org/packages/89/11/f196e73a0ea7334bfcbcda2d69cba15fcdb9a04fa3f6bbf0c35d2d963ba1/pytype-2018.9.18.tar.gz" } ], "2018.9.19": [ { "comment_text": "", "digests": { "md5": "a3036636bb42bc25799a9cd1d41b13c3", "sha256": "3a828aeedc65b79e033e14a6dd0a29b33395dc9d73ec613503d8ea0591937fcf" }, "downloads": -1, "filename": "pytype-2018.9.19.tar.gz", "has_sig": false, "md5_digest": "a3036636bb42bc25799a9cd1d41b13c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 953685, "upload_time": "2018-09-20T21:22:14", "url": "https://files.pythonhosted.org/packages/2b/af/95a6f453824dbe9c321e65049b935c9819c3d9b83af3b60c3a168baf5fad/pytype-2018.9.19.tar.gz" } ], "2018.9.25": [ { "comment_text": "", "digests": { "md5": "96818021520a14d8453f488646637d50", "sha256": "7b25beb8f0cd792ea00d9cdc0b6b2d639c051d775584f94d4bfdb7036c1067b9" }, "downloads": -1, "filename": "pytype-2018.9.25.tar.gz", "has_sig": false, "md5_digest": "96818021520a14d8453f488646637d50", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 957612, "upload_time": "2018-09-25T21:39:22", "url": "https://files.pythonhosted.org/packages/ab/8a/a6b9f84c989a5b4c67499d61f281a8f2f455dffa89c8d475263068f01135/pytype-2018.9.25.tar.gz" } ], "2018.9.26": [ { "comment_text": "", "digests": { "md5": "29b48cec65ffc7e620440f8ff0964f0b", "sha256": "f6c65c64aa4fe6a16e84a5d31c8fff0ef12c319d443a87277f12168a8643f0db" }, "downloads": -1, "filename": "pytype-2018.9.26.tar.gz", "has_sig": false, "md5_digest": "29b48cec65ffc7e620440f8ff0964f0b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 958771, "upload_time": "2018-09-26T20:06:01", "url": "https://files.pythonhosted.org/packages/6c/07/dd3442f85af1995d0e9215fc16c97de0b38d4493f15e38364e359291661b/pytype-2018.9.26.tar.gz" } ], "2018.9.7": [ { "comment_text": "", "digests": { "md5": "3d01f879d85172d2c0009ae4ae8f0c31", "sha256": "38716749f219f113f99814e378dd5ae846303a7236560de9f82c6eea1acbe642" }, "downloads": -1, "filename": "pytype-2018.9.7.tar.gz", "has_sig": false, "md5_digest": "3d01f879d85172d2c0009ae4ae8f0c31", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 942650, "upload_time": "2018-09-07T23:15:22", "url": "https://files.pythonhosted.org/packages/c7/9b/b75557226910e821d613aa743f595e7b6fdab92d7f107f5cf181c283cc20/pytype-2018.9.7.tar.gz" } ], "2018.9.7.1": [ { "comment_text": "", "digests": { "md5": "559c8e7a213cd0fcfeb135f353e69249", "sha256": "f00907accd551f5c49a288e42cda6cb34ba3353066913073a8373be035f7a391" }, "downloads": -1, "filename": "pytype-2018.9.7.1.tar.gz", "has_sig": false, "md5_digest": "559c8e7a213cd0fcfeb135f353e69249", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 950184, "upload_time": "2018-09-08T00:02:48", "url": "https://files.pythonhosted.org/packages/b3/3e/5c56f90e6dde8dd18306c42bfb0401f11d6cb4fd25a3990681bf55b32f95/pytype-2018.9.7.1.tar.gz" } ], "2019.1.18": [ { "comment_text": "", "digests": { "md5": "4407d5f95830f916f703b5244da365c0", "sha256": "35d015c365a098e28f975f4e323d0fb5490285ffc85e3b98ddf902cc96a06ea9" }, "downloads": -1, "filename": "pytype-2019.1.18.tar.gz", "has_sig": false, "md5_digest": "4407d5f95830f916f703b5244da365c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 979841, "upload_time": "2019-01-19T00:51:47", "url": "https://files.pythonhosted.org/packages/f3/67/8eb7790047f44218215d877d599b209c9660b3c1f82a7fe95f0e13c531ae/pytype-2019.1.18.tar.gz" } ], "2019.1.30": [ { "comment_text": "", "digests": { "md5": "24f5b4fa1be875c23d88d26750146d80", "sha256": "a19c2f145420fab82f8af9027201d583004e9fc9cb1adce0913d22b189e9810e" }, "downloads": -1, "filename": "pytype-2019.1.30.tar.gz", "has_sig": false, "md5_digest": "24f5b4fa1be875c23d88d26750146d80", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 982276, "upload_time": "2019-01-30T21:29:29", "url": "https://files.pythonhosted.org/packages/39/ba/c86ec7209efb89ac0a0e1cd82773ea42c5e9be3eb7f839a86efdc9e3d658/pytype-2019.1.30.tar.gz" } ], "2019.10.17": [ { "comment_text": "", "digests": { "md5": "c17c84b7952835f5ad05ec198fe198f5", "sha256": "ff43dd0abc144ddf4d895ea52918b5d4bbd0f96b690af205e477cb1074b6ef4e" }, "downloads": -1, "filename": "pytype-2019.10.17.tar.gz", "has_sig": false, "md5_digest": "c17c84b7952835f5ad05ec198fe198f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1104024, "upload_time": "2019-10-17T23:32:52", "url": "https://files.pythonhosted.org/packages/c5/0d/1ad58ab73a190f4d7db16a1af1e19363afec81cf14fa76a22972e94fc7e6/pytype-2019.10.17.tar.gz" } ], "2019.2.13": [ { "comment_text": "", "digests": { "md5": "3b0658a2190f7e223907ccd6eea028cd", "sha256": "7213ed98a06c36cdf76bf22fd4db4806f6a76704bf9126521e43590ee1fc87e4" }, "downloads": -1, "filename": "pytype-2019.2.13.tar.gz", "has_sig": false, "md5_digest": "3b0658a2190f7e223907ccd6eea028cd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 983392, "upload_time": "2019-02-14T01:36:16", "url": "https://files.pythonhosted.org/packages/06/e3/91c5d28943547bfe7dd818281d162746e32fdab47017eff34a1026b88e5a/pytype-2019.2.13.tar.gz" } ], "2019.3.1": [ { "comment_text": "", "digests": { "md5": "eccb3d68c6e3a56bbe39d9e44d313c72", "sha256": "8c2bafee0b319c0cfeb66d5683f7fc966ef3522466a935f4d9d303c9a0f06b85" }, "downloads": -1, "filename": "pytype-2019.3.1.tar.gz", "has_sig": false, "md5_digest": "eccb3d68c6e3a56bbe39d9e44d313c72", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 998039, "upload_time": "2019-03-02T01:18:18", "url": "https://files.pythonhosted.org/packages/b9/d4/7878c99b7b3885906d64fe53d945ac668309cf3073a7ec813860996e0ee8/pytype-2019.3.1.tar.gz" } ], "2019.3.15": [ { "comment_text": "", "digests": { "md5": "62c666a8d73449b04cbe2712d74d4410", "sha256": "b4abd0f19fef6684a195814887543c53f18a33ff80a4d8cffa302588f6dfc4f1" }, "downloads": -1, "filename": "pytype-2019.3.15.tar.gz", "has_sig": false, "md5_digest": "62c666a8d73449b04cbe2712d74d4410", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 999799, "upload_time": "2019-03-16T04:07:24", "url": "https://files.pythonhosted.org/packages/af/45/15a777f3f47598dbc831acf400449c9f86a1645a3320ddcdc0df6ea158f9/pytype-2019.3.15.tar.gz" } ], "2019.3.21": [ { "comment_text": "", "digests": { "md5": "9a0c52b23bc05ba5dd1164191d27668e", "sha256": "c873b76ab3f9891204fbca708241142f43fe952244dc37656f3c53c74c02657e" }, "downloads": -1, "filename": "pytype-2019.3.21.tar.gz", "has_sig": false, "md5_digest": "9a0c52b23bc05ba5dd1164191d27668e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1016172, "upload_time": "2019-03-21T22:01:45", "url": "https://files.pythonhosted.org/packages/2a/c2/f2c631643a780b7246fb5a6fe3ccd383fccdaaf09934333478caf0594e86/pytype-2019.3.21.tar.gz" } ], "2019.3.27": [ { "comment_text": "", "digests": { "md5": "39d879be675ee01aeb364f0a3a187cb5", "sha256": "b2dafa9a1b53ec8756f16e28d01e827360d46d6ecbb1451965e35cd78d03d185" }, "downloads": -1, "filename": "pytype-2019.3.27.tar.gz", "has_sig": false, "md5_digest": "39d879be675ee01aeb364f0a3a187cb5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1014672, "upload_time": "2019-03-27T21:30:02", "url": "https://files.pythonhosted.org/packages/6e/a8/ef6704b34d3ba5405d8c6c349e52699070e4edebb70cd03e70866d64c472/pytype-2019.3.27.tar.gz" } ], "2019.3.8": [ { "comment_text": "", "digests": { "md5": "84ac9099d471a5fc22eb51667672878b", "sha256": "eda83673b6263f14c75912ecd05ad105037e74f6aa4b2ec01500daddf58a4db7" }, "downloads": -1, "filename": "pytype-2019.3.8.tar.gz", "has_sig": false, "md5_digest": "84ac9099d471a5fc22eb51667672878b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 998383, "upload_time": "2019-03-08T20:34:14", "url": "https://files.pythonhosted.org/packages/a0/b0/21382835513c3cee5186139ea9eba7be1fb6940c00e2e07c3fac783fe85a/pytype-2019.3.8.tar.gz" } ], "2019.4.12": [ { "comment_text": "", "digests": { "md5": "63cff0b515858f7b8a1c49f5dc823587", "sha256": "60fdab8a38914e65e12211497105570b294cb777bae127974ee7f413a09fe386" }, "downloads": -1, "filename": "pytype-2019.4.12.tar.gz", "has_sig": false, "md5_digest": "63cff0b515858f7b8a1c49f5dc823587", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1029464, "upload_time": "2019-04-12T23:16:09", "url": "https://files.pythonhosted.org/packages/ee/97/aa951f9bc15ef203931342142ebb0273459ca58ed15feec9aaa881d90e96/pytype-2019.4.12.tar.gz" } ], "2019.4.19": [ { "comment_text": "", "digests": { "md5": "f7e86d4f00dd4f28c9347e46fbb26ae7", "sha256": "629665f29781fefee7086f779cbceb6a0b19e8860384adc5c92876b28c0d3c1c" }, "downloads": -1, "filename": "pytype-2019.4.19.tar.gz", "has_sig": false, "md5_digest": "f7e86d4f00dd4f28c9347e46fbb26ae7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1031791, "upload_time": "2019-04-19T21:47:55", "url": "https://files.pythonhosted.org/packages/cf/b4/b4e4558f69a6552aba315c5b3e4a51464c4eb5a0d2ffc2c013910cc6e59d/pytype-2019.4.19.tar.gz" } ], "2019.4.2": [ { "comment_text": "", "digests": { "md5": "7c3b12778fe6482371450963ed6bbe91", "sha256": "6d8ddde78484ad2fd262b2717b0f2cc5fd96e5ecb6889b38e81cee7fe3cccd9f" }, "downloads": -1, "filename": "pytype-2019.4.2.tar.gz", "has_sig": false, "md5_digest": "7c3b12778fe6482371450963ed6bbe91", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1033223, "upload_time": "2019-04-02T22:56:08", "url": "https://files.pythonhosted.org/packages/36/d7/aae76dfdf74e750d9f9a94b579ef36a55973271ba121f7b57c099c4abe2c/pytype-2019.4.2.tar.gz" } ], "2019.4.2.1": [ { "comment_text": "", "digests": { "md5": "b00b8ada1262e1fdee4351a4393c76ec", "sha256": "658cd92ff67bd1a014df7d56b1ae3f8adeb08cca5bc2a13c4091af299e989dc0" }, "downloads": -1, "filename": "pytype-2019.4.2.1.tar.gz", "has_sig": false, "md5_digest": "b00b8ada1262e1fdee4351a4393c76ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1033402, "upload_time": "2019-04-03T03:00:12", "url": "https://files.pythonhosted.org/packages/19/28/8474ec1579919a87f120e9059c4d3a85abccbad3f100c9b69b53bf47c5f6/pytype-2019.4.2.1.tar.gz" } ], "2019.4.26": [ { "comment_text": "", "digests": { "md5": "6213337eb8f13b36475b5c1e3767d735", "sha256": "666d401facc4d771bd2ac894c0c69749f490991773e7de157b24013aea5c0e72" }, "downloads": -1, "filename": "pytype-2019.4.26.tar.gz", "has_sig": false, "md5_digest": "6213337eb8f13b36475b5c1e3767d735", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1032099, "upload_time": "2019-04-26T19:28:20", "url": "https://files.pythonhosted.org/packages/51/f9/0b9be14e4d88d34d46df68cc4541fb6520d85aaa59e7ca401f7a4ac1fb6e/pytype-2019.4.26.tar.gz" } ], "2019.4.5": [ { "comment_text": "", "digests": { "md5": "9005d6e1c120077eac842e0493194c11", "sha256": "2c28cbf03afc5950f232edbb53df248d6aec96db1d7b6fb055155af1bae323e8" }, "downloads": -1, "filename": "pytype-2019.4.5.tar.gz", "has_sig": false, "md5_digest": "9005d6e1c120077eac842e0493194c11", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1033396, "upload_time": "2019-04-05T19:21:55", "url": "https://files.pythonhosted.org/packages/ca/e0/129e3b45f3c28d1f2d2152d285484865c28baeee8c75006e21c8a7030161/pytype-2019.4.5.tar.gz" } ], "2019.5.15": [ { "comment_text": "", "digests": { "md5": "23072024ed33599c843e07e4600a49f0", "sha256": "f01764f0e5cb93c5e1b41acdb01450349e3e121c086c84cfd27f5c850cc076e6" }, "downloads": -1, "filename": "pytype-2019.5.15.tar.gz", "has_sig": false, "md5_digest": "23072024ed33599c843e07e4600a49f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1037981, "upload_time": "2019-05-15T21:28:43", "url": "https://files.pythonhosted.org/packages/e5/d5/3513abc34323289e7b344e007c120c8e8e117303c68df4177d9092e2bb99/pytype-2019.5.15.tar.gz" } ], "2019.5.24": [ { "comment_text": "", "digests": { "md5": "e8c98ccac36aa805d7ce040746bfbb74", "sha256": "ca9f387b818d5d397f0030d86aef9228a5c3f7e6319915f45bd34b9918be7b9a" }, "downloads": -1, "filename": "pytype-2019.5.24.tar.gz", "has_sig": false, "md5_digest": "e8c98ccac36aa805d7ce040746bfbb74", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1039901, "upload_time": "2019-05-24T20:10:24", "url": "https://files.pythonhosted.org/packages/51/07/c80aaec6acec5287ef09b690eb2d1ab6ffc8a6d5d911f911e60722163a86/pytype-2019.5.24.tar.gz" } ], "2019.5.31": [ { "comment_text": "", "digests": { "md5": "216fee876117985c038a41987968c704", "sha256": "673f797ef799359d951a43c9f10c77ebaa81bf899b506e5d1d17528d77c50fec" }, "downloads": -1, "filename": "pytype-2019.5.31.tar.gz", "has_sig": false, "md5_digest": "216fee876117985c038a41987968c704", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1040491, "upload_time": "2019-05-31T22:46:49", "url": "https://files.pythonhosted.org/packages/ad/f6/af149a0c0065d985199a80839f1e906f985eec549a5853cc872e795b6fce/pytype-2019.5.31.tar.gz" } ], "2019.5.6": [ { "comment_text": "", "digests": { "md5": "f92f5690fe37a617c41746133c498748", "sha256": "3596fd06c403f76ab21a75b9a2f6486708a45df2e466bfd95e78845e3595df54" }, "downloads": -1, "filename": "pytype-2019.5.6.tar.gz", "has_sig": false, "md5_digest": "f92f5690fe37a617c41746133c498748", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1032618, "upload_time": "2019-05-06T22:47:47", "url": "https://files.pythonhosted.org/packages/84/4f/6d5762593e9ad14bdd86806f0ca1c82a3f0bed2b22357bdeaddc6b68df76/pytype-2019.5.6.tar.gz" } ], "2019.5.8": [ { "comment_text": "", "digests": { "md5": "d51d6ac94b6649f5fdc6c6ca63a632f9", "sha256": "d81eb26b3ab9f74c5327baae430289dbc04b531879860eee998513b10e6bcdbf" }, "downloads": -1, "filename": "pytype-2019.5.8.tar.gz", "has_sig": false, "md5_digest": "d51d6ac94b6649f5fdc6c6ca63a632f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1033147, "upload_time": "2019-05-09T02:29:32", "url": "https://files.pythonhosted.org/packages/a4/c2/10d14244db9fb57e5d220240485fc4956b547cc40e3c4de0485cb3d57495/pytype-2019.5.8.tar.gz" } ], "2019.6.21": [ { "comment_text": "", "digests": { "md5": "0143e69a7f0f202e75b5e365726abcfc", "sha256": "2d34e92f13131655725db71c16f8cc321f7c96676d28823c4439ae450377c4ee" }, "downloads": -1, "filename": "pytype-2019.6.21.tar.gz", "has_sig": false, "md5_digest": "0143e69a7f0f202e75b5e365726abcfc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1067733, "upload_time": "2019-06-22T00:07:03", "url": "https://files.pythonhosted.org/packages/7b/cd/a7f2aae80bcbda65543e0e712e0dd4e837df03d67847386c0d9240335e42/pytype-2019.6.21.tar.gz" } ], "2019.6.28": [ { "comment_text": "", "digests": { "md5": "61bb141619354462f409f08f90aa6bfe", "sha256": "b8037a46079428ab10827fff1218b8d1eb87d09d0d7669411250ad2b2e737668" }, "downloads": -1, "filename": "pytype-2019.6.28.tar.gz", "has_sig": false, "md5_digest": "61bb141619354462f409f08f90aa6bfe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1068705, "upload_time": "2019-06-28T18:58:47", "url": "https://files.pythonhosted.org/packages/79/09/54b39a2c0ab95d171a867f13bb2a55c46f584fbbc0b9cb972d2eb9e1e17b/pytype-2019.6.28.tar.gz" } ], "2019.7.11": [ { "comment_text": "", "digests": { "md5": "2f1029e58241f278b8dab4930d2da1ab", "sha256": "a5a2592a163af4b277db704a87f7c5898166a0b72c4eb0bb62e9d44674c44aa9" }, "downloads": -1, "filename": "pytype-2019.7.11.tar.gz", "has_sig": false, "md5_digest": "2f1029e58241f278b8dab4930d2da1ab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1071341, "upload_time": "2019-07-11T18:52:51", "url": "https://files.pythonhosted.org/packages/0e/be/48c9854271ec9cf16f51a7b0a3820a07bea7ab8f49813b1178e94471e1ba/pytype-2019.7.11.tar.gz" } ], "2019.7.26": [ { "comment_text": "", "digests": { "md5": "8247f303e2218f9f8d02fc88420f7c1f", "sha256": "3aa66fc40e4e2f74ffc2092acf5409517d124a58d8aff976dee699f5cfe56d6a" }, "downloads": -1, "filename": "pytype-2019.7.26.tar.gz", "has_sig": false, "md5_digest": "8247f303e2218f9f8d02fc88420f7c1f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1076171, "upload_time": "2019-07-26T18:33:34", "url": "https://files.pythonhosted.org/packages/10/7a/e74cbe45c9a96c19b68c68a87d3de3b281a7e5aadd38bd7ce7a23bbacdae/pytype-2019.7.26.tar.gz" } ], "2019.7.30": [ { "comment_text": "", "digests": { "md5": "df6df64bb31b9c3b3944acbe8eb5c72b", "sha256": "304d03032db100f9bc16bcbc63c46b2f5ead00ad30fab859383d339e1fd53c53" }, "downloads": -1, "filename": "pytype-2019.7.30.tar.gz", "has_sig": false, "md5_digest": "df6df64bb31b9c3b3944acbe8eb5c72b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1075424, "upload_time": "2019-07-30T19:52:14", "url": "https://files.pythonhosted.org/packages/71/ca/04c8767fcf2a6f622da37b8a3233ed74ad9e87c9c14072a1832a348ba01b/pytype-2019.7.30.tar.gz" } ], "2019.8.29": [ { "comment_text": "", "digests": { "md5": "79d39328c16bfc7be8fae6800d170e63", "sha256": "b36e0c9019fd757d9ba966aea43d3a716d0ace510e581c259c7eb4d78512ad56" }, "downloads": -1, "filename": "pytype-2019.8.29.tar.gz", "has_sig": false, "md5_digest": "79d39328c16bfc7be8fae6800d170e63", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1094183, "upload_time": "2019-08-29T22:54:30", "url": "https://files.pythonhosted.org/packages/61/e8/c8b64bd8459d5ee2b5dd2ad800c2b7d3f8471dd341abd407928f0182d9ba/pytype-2019.8.29.tar.gz" } ], "2019.8.9": [ { "comment_text": "", "digests": { "md5": "ca493727f97db738131f31d53943db81", "sha256": "e7a63081c7237cc7143ab3ef69699e8c69f79a51e4737b958117f538a9b32b5c" }, "downloads": -1, "filename": "pytype-2019.8.9.tar.gz", "has_sig": false, "md5_digest": "ca493727f97db738131f31d53943db81", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1087019, "upload_time": "2019-08-10T01:02:48", "url": "https://files.pythonhosted.org/packages/b1/8d/a052d31e7e1e61e3138cf3baedd5fab871e9ee544445ba3bd2db3f4e3e59/pytype-2019.8.9.tar.gz" } ], "2019.9.17": [ { "comment_text": "", "digests": { "md5": "c8093e531e5169f4d8cceaec150b48ec", "sha256": "bd50026874659b4e3bc611673efef4aeb604694d285ea177932bda7ab4f2b9de" }, "downloads": -1, "filename": "pytype-2019.9.17.tar.gz", "has_sig": false, "md5_digest": "c8093e531e5169f4d8cceaec150b48ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1095295, "upload_time": "2019-09-17T22:17:44", "url": "https://files.pythonhosted.org/packages/5a/dd/3519e6c837ca869dc4052d683ed706916b6ad94b01e4343b9882e11c427c/pytype-2019.9.17.tar.gz" } ], "2019.9.6": [ { "comment_text": "", "digests": { "md5": "11e0a5c0947ed5b83de1ca82ce5362de", "sha256": "1fcada9cf165228ac9481d564237a38c15ce9a55db7ae14ec0b4bfce0c90dbf4" }, "downloads": -1, "filename": "pytype-2019.9.6.tar.gz", "has_sig": false, "md5_digest": "11e0a5c0947ed5b83de1ca82ce5362de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1094552, "upload_time": "2019-09-06T21:32:14", "url": "https://files.pythonhosted.org/packages/4a/86/b24b8361fe498a898863389135bf28cadcc8c8b36ec207af0995c91dd32a/pytype-2019.9.6.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c17c84b7952835f5ad05ec198fe198f5", "sha256": "ff43dd0abc144ddf4d895ea52918b5d4bbd0f96b690af205e477cb1074b6ef4e" }, "downloads": -1, "filename": "pytype-2019.10.17.tar.gz", "has_sig": false, "md5_digest": "c17c84b7952835f5ad05ec198fe198f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1104024, "upload_time": "2019-10-17T23:32:52", "url": "https://files.pythonhosted.org/packages/c5/0d/1ad58ab73a190f4d7db16a1af1e19363afec81cf14fa76a22972e94fc7e6/pytype-2019.10.17.tar.gz" } ] }