{ "info": { "author": "Jendrik Seipp", "author_email": "jendrikseipp@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Quality Assurance" ], "description": "Vulture - Find dead code\n========================\n\n.. image:: https://travis-ci.org/jendrikseipp/vulture.svg?branch=master\n :target: https://travis-ci.org/jendrikseipp/vulture\n :alt: Travis CI build status (Linux)\n\n.. image:: https://ci.appveyor.com/api/projects/status/github/jendrikseipp/vulture?svg=true\n :target: https://ci.appveyor.com/project/jendrikseipp96693/vulture\n :alt: AppVeyor CI build status (Windows)\n\n.. image:: https://coveralls.io/repos/github/jendrikseipp/vulture/badge.svg?branch=master\n :target: https://coveralls.io/github/jendrikseipp/vulture?branch=master\n\nVulture finds unused code in Python programs. This is useful for\ncleaning up and finding errors in large code bases. If you run Vulture\non both your library and test suite you can find untested code.\n\nDue to Python's dynamic nature, static code analyzers like Vulture are\nlikely to miss some dead code. Also, code that is only called implicitly\nmay be reported as unused. Nonetheless, Vulture can be a very helpful\ntool for higher code quality.\n\n\nFeatures\n--------\n\n* fast: uses static code analysis\n* tested: tests itself and has complete test coverage\n* complements pyflakes and has the same output syntax\n* sorts unused classes and functions by size with ``--sort-by-size``\n* supports Python 2.7 and Python >= 3.5\n\n\nInstallation\n------------\n\n::\n\n $ pip install vulture # from PyPI\n $ pip install . # from cloned repo\n\n\nUsage\n-----\n\n::\n\n $ vulture myscript.py # or\n $ python3 -m vulture myscript.py\n $ vulture myscript.py mypackage/\n $ vulture myscript.py --min-confidence 100 # Only report 100% dead code.\n\nThe provided arguments may be Python files or directories. For each\ndirectory Vulture analyzes all contained `*.py` files.\n\nVulture assigns each chunk of dead code a confidence value. A confidence\nvalue of 100% means that the code will never be executed. Values below\n100% are only estimates for how likely it is that the code is unused.\n\nAfter you have found and deleted dead code, run Vulture again, because\nit may discover more dead code.\n\n**Handling false positives**\n\nYou can add used code that is reported as unused to a Python module and\nadd it to the list of scanned paths. To obtain such a whitelist\nautomatically, pass ``--make-whitelist`` to Vulture. ::\n\n $ vulture mydir --make-whitelist > whitelist.py\n $ vulture mydir whitelist.py\n\nWe collect whitelists for common Python modules and packages in\n``vulture/whitelists/`` (pull requests are welcome). If you want to\nignore a whole file or directory, use the ``--exclude`` parameter (e.g.,\n``--exclude *settings.py,docs/``).\n\n**Ignoring names**\n\nYou can use ``--ignore-names foo*,ba[rz]`` to let Vulture ignore all names\nstarting with ``foo`` and the names ``bar`` and ``baz``. Additionally, the\n``--ignore-decorators`` option can be used to ignore functions decorated\nwith the given decorator. This is helpful for example in Flask projects,\nwhere you can use ``--ignore-decorators \"@app.route\"`` to ignore all functions\nwith the ``@app.route`` decorator.\n\nWe recommend using whitelists instead of ``--ignore-names`` or\n``--ignore-decorators`` whenever possible, since whitelists are automatically\nchecked for syntactic correctness when passed to Vulture and often you can\neven pass them to your Python interpreter and let it check that all\nwhitelisted code actually still exists in your project.\n\n**Marking unused variables**\n\nThere are situations where you can't just remove unused variables, e.g.,\nin tuple assignments or function signatures. Vulture will ignore these\nvariables if they start with an underscore (e.g., ``_x, y = get_pos()``).\n\n**Minimum confidence**\n\nYou can use the ``--min-confidence`` flag to set the minimum confidence\nfor code to be reported as unused. Use ``--min-confidence 100`` to only\nreport code that is guaranteed to be unused within the analyzed files.\n\n\nHow does it work?\n-----------------\n\nVulture uses the ``ast`` module to build abstract syntax trees for all\ngiven files. While traversing all syntax trees it records the names of\ndefined and used objects. Afterwards, it reports the objects which have\nbeen defined, but not used. This analysis ignores scopes and only takes\nobject names into account.\n\nVulture also detects unreachable code by looking for code after\n``return``, ``break``, ``continue`` and ``raise`` statements, and by\nsearching for unsatisfiable ``if``- and ``while``-conditions.\n\n\nSort by size\n------------\n\nWhen using the ``--sort-by-size`` option, Vulture sorts unused code by\nits number of lines. This helps developers prioritize where to look for\ndead code first.\n\n\n\nExamples\n--------\n\nConsider the following Python script (``dead_code.py``):\n\n.. code:: python\n\n import os\n\n class Greeter:\n def greet(self):\n print(\"Hi\")\n\n def hello_world():\n message = \"Hello, world!\"\n greeter = Greeter()\n greet_func = getattr(greeter, \"greet\")\n greet_func()\n\n if __name__ == \"__main__\":\n hello_world()\n\nCalling ::\n\n vulture dead_code.py\n\nresults in the following output::\n\n dead_code.py:1: unused import 'os' (90% confidence)\n dead_code.py:4: unused function 'greet' (60% confidence)\n dead_code.py:8: unused variable 'message' (60% confidence)\n\nVulture correctly reports \"os\" and \"message\" as unused, but it fails to\ndetect that \"greet\" is actually used. The recommended method to deal with\nfalse positives like this is to create a whitelist Python file.\n\n**Preparing whitelists**\n\nIn a whitelist we simulate the usage of variables, attributes, etc. For\nthe program above, a whitelist could look as follows:\n\n.. code:: python\n\n # whitelist_dead_code.py\n from dead_code import Greeter\n Greeter.greet\n\nAlternatively, you can pass ``--make-whitelist`` to Vulture and obtain\nan automatically generated whitelist.\n\nPassing both the original program and the whitelist to Vulture ::\n\n vulture dead_code.py whitelist_dead_code.py\n\nmakes Vulture ignore the \"greet\" method::\n\n dead_code.py:1: unused import 'os' (90% confidence)\n dead_code.py:8: unused variable 'message' (60% confidence)\n\n\nExit codes\n----------\n\n+-----------+---------------------------------------------------------------+\n| Exit code | Description |\n+===========+===============================================================+\n| 0 | No dead code found |\n+-----------+---------------------------------------------------------------+\n| 1 | Dead code found |\n+-----------+---------------------------------------------------------------+\n| 1 | Invalid input (file missing, syntax error, wrong encoding) |\n+-----------+---------------------------------------------------------------+\n| 2 | Invalid command line arguments |\n+-----------+---------------------------------------------------------------+\n\n\nSimilar programs\n----------------\n\n* Vulture can be used together with *pyflakes*\n* The *coverage* module can find unused code more reliably, but requires\n all branches of the code to actually be run.\n\n\nParticipate\n-----------\n\nPlease visit https://github.com/jendrikseipp/vulture to report any\nissues or to make pull requests.\n\n* Contributing guide: `CONTRIBUTING.rst `_\n* Changelog: `NEWS.rst `_\n* Roadmap: `TODO.rst `_\n\n\nNews\n====\n\n1.1 (2019-09-23)\n----------------\n* Add ``sys.excepthook`` to ``sys`` whitelist.\n* Add whitelist for ``ctypes`` module.\n* Check that Python 3.6 type-annotations are parsed and type comments are ignored (thanks @kx-chen).\n* Support checking files with BOM under Python 2.7 (#170).\n\n\n1.0 (2018-10-23)\n----------------\n* Add ``--ignore-decorators`` flag (thanks @RJ722).\n* Add whitelist for ``threading`` module (thanks @andrewhalle).\n\n\n0.29 (2018-07-31)\n-----------------\n* Add ``--ignore-names`` flag for ignoring names matching the given glob patterns (thanks @RJ722).\n\n\n0.28 (2018-07-05)\n-----------------\n* Add ``--make-whitelist`` flag for reporting output in whitelist format (thanks @RJ722).\n* Ignore case of ``--exclude`` arguments on Windows.\n* Add ``*-test.py`` to recognized test file patterns.\n* Add ``failureException``, ``longMessage`` and ``maxDiff`` to ``unittest`` whitelist.\n* Refer to actual objects rather than their mocks in default whitelists (thanks @RJ722).\n* Don't import any Vulture modules in setup.py (thanks @RJ722).\n\n\n0.27 (2018-06-05)\n-----------------\n* Report ``while (True): ... else: ...`` as unreachable (thanks @RJ722).\n* Use ``argparse`` instead of ``optparse``.\n* Whitelist Mock.return_value and Mock.side_effect in unittest.mock module.\n* Drop support for Python 2.6 and 3.3.\n* Improve documentation and test coverage (thanks @RJ722).\n\n\n0.26 (2017-08-28)\n-----------------\n* Detect ``async`` function definitions (thanks @RJ722).\n* Add ``Item.get_report()`` method (thanks @RJ722).\n* Move method for finding Python modules out of Vulture class.\n\n\n0.25 (2017-08-15)\n-----------------\n* Detect unsatisfiable statements containing ``and``, ``or`` and ``not``.\n* Use filenames and line numbers as tie-breakers when sorting by size.\n* Store first and last line numbers in Item objects.\n* Pass relevant options directly to ``scavenge()`` and ``report()``.\n\n\n0.24 (2017-08-14)\n-----------------\n* Detect unsatisfiable ``while``-conditions (thanks @RJ722).\n* Detect unsatisfiable ``if``- and ``else``-conditions (thanks @RJ722).\n* Handle null bytes in source code.\n\n\n0.23 (2017-08-10)\n-----------------\n* Add ``--min-confidence`` flag (thanks @RJ722).\n\n\n0.22 (2017-08-04)\n-----------------\n* Detect unreachable code after ``return``, ``break``, ``continue`` and\n ``raise`` (thanks @RJ722).\n* Parse all variable and attribute names in new format strings.\n* Extend ast whitelist.\n\n\n0.21 (2017-07-26)\n-----------------\n* If an unused item is defined multiple times, report it multiple times.\n* Make size estimates for function calls more accurate.\n* Create wheel files for Vulture (thanks @RJ722).\n\n\n0.20 (2017-07-26)\n-----------------\n* Report unused tuple assignments as dead code.\n* Report attribute names that have the same names as variables as dead code.\n* Let Item class inherit from ``object`` (thanks @RJ722).\n* Handle names imported as aliases like all other used variable names.\n* Rename Vulture.used_vars to Vulture.used_names.\n* Use function for determining which imports to ignore.\n* Only try to import each whitelist file once.\n* Store used names and used attributes in sets instead of lists.\n* Fix estimating the size of code containing ellipses (...).\n* Refactor and simplify code.\n\n\n0.19 (2017-07-20)\n-----------------\n* Don't ignore `__foo` variable names.\n* Use separate methods for determining whether to ignore classes and functions.\n* Only try to find a whitelist for each defined import once (thanks @roivanov).\n* Fix finding the last child for many types of AST nodes.\n\n\n0.18 (2017-07-17)\n-----------------\n* Make `--sort-by-size` faster and more accurate (thanks @RJ722).\n\n\n0.17 (2017-07-17)\n-----------------\n* Add `get_unused_code()` method.\n* Return with exit code 1 when syntax errors are found or files can't be read.\n\n\n0.16 (2017-07-12)\n-----------------\n* Differentiate between unused classes and functions (thanks @RJ722).\n* Add --sort-by-size option (thanks @jackric and @RJ722).\n* Count imports as used if they are accessed as module attributes.\n\n\n0.15 (2017-07-04)\n-----------------\n* Automatically include whitelists based on imported modules (thanks @RJ722).\n* Add --version parameter (thanks @RJ722).\n* Add appveyor tests for testing on Windows (thanks @RJ722).\n\n\n0.14 (2017-04-06)\n-----------------\n* Add stub whitelist file for Python standard library (thanks @RJ722)\n* Ignore class names starting with \"Test\" in \"test\\_\" files (thanks @thisch).\n* Ignore \"test\\_\" functions only in \"test\\_\" files.\n\n\n0.13 (2017-03-06)\n-----------------\n* Ignore star-imported names since we cannot detect whether they are used.\n* Move repository to GitHub.\n\n\n0.12 (2017-01-05)\n-----------------\n* Detect unused imports.\n* Use tokenize.open() on Python >= 3.2 for reading input files, assume\n UTF-8 encoding on older Python versions.\n\n\n0.11 (2016-11-27)\n-----------------\n* Use the system's default encoding when reading files.\n* Report syntax errors instead of aborting.\n\n\n0.10 (2016-07-14)\n-----------------\n* Detect unused function and method arguments (issue #15).\n* Detect unused \\*args and \\*\\*kwargs parameters.\n* Change license from GPL to MIT.\n\n\n0.9 (2016-06-29)\n----------------\n* Don't flag attributes as unused if they are used as global variables\n in another module (thanks Florian Bruhin).\n* Don't consider \"True\" and \"False\" variable names.\n* Abort with error message when invoked on .pyc files.\n\n\n0.8.1 (2015-09-28)\n------------------\n* Fix code for Python 3.\n\n\n0.8 (2015-09-28)\n----------------\n* Do not flag names imported with \"import as\" as dead code (thanks Tom Terrace).\n\n\n0.7 (2015-09-26)\n----------------\n* Exit with exitcode 1 if path on commandline can't be found.\n* Test vulture with vulture using a whitelist module for false positives.\n* Add tests that run vulture as a script.\n* Add \"python setup.py test\" command for running tests.\n* Add support for tox.\n* Raise test coverage to 100%.\n* Remove ez_setup.py.\n\n\n0.6 (2014-09-06)\n----------------\n* Ignore function names starting with \"test\\_\".\n* Parse variable names in new format strings (e.g. \"This is {x}\".format(x=\"nice\")).\n* Only parse alphanumeric variable names in format strings and ignore types.\n* Abort with exit code 1 on syntax errors.\n* Support installation under Windows by using setuptools (thanks Reuben Fletcher-Costin).\n\n\n0.5 (2014-05-09)\n----------------\n* If dead code is found, exit with 1.\n\n\n0.4.1 (2013-09-17)\n------------------\n* Only warn if a path given on the command line cannot be found.\n\n\n0.4 (2013-06-23)\n----------------\n* Ignore unused variables starting with an underscore.\n* Show warning for syntax errors instead of aborting directly.\n* Print warning if a file cannot be found.\n\n\n0.3 (2012-03-19)\n----------------\n* Add support for python3\n* Report unused attributes\n* Find tuple assignments in comprehensions\n* Scan files given on the command line even if they don't end with .py\n\n\n0.2 (2012-03-18)\n----------------\n* Only format nodes in verbose mode (gives 4x speedup).\n\n\n0.1 (2012-03-17)\n----------------\n* First release.\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/jendrikseipp/vulture", "keywords": "dead-code-removal", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "vulture", "package_url": "https://pypi.org/project/vulture/", "platform": "", "project_url": "https://pypi.org/project/vulture/", "project_urls": { "Homepage": "https://github.com/jendrikseipp/vulture" }, "release_url": "https://pypi.org/project/vulture/1.1/", "requires_dist": null, "requires_python": "", "summary": "Find dead code", "version": "1.1" }, "last_serial": 5875032, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "3346389a3ba68af53afab38a5840efaf", "sha256": "d47976f368be4b1bfde9b626487ad76f860e51c43575c67abbdce05d765ab1a7" }, "downloads": -1, "filename": "vulture-0.1.tar.gz", "has_sig": false, "md5_digest": "3346389a3ba68af53afab38a5840efaf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16959, "upload_time": "2012-03-17T21:04:56", "url": "https://files.pythonhosted.org/packages/de/3d/4b8f053a92cb7c6ca33bfe64379dccfb72ef041a25b56192008434a10828/vulture-0.1.tar.gz" } ], "0.10": [ { "comment_text": "", "digests": { "md5": "b8b804333372d7fc6dc367154bd8c298", "sha256": "9c2dc36b84f3729361990b4488b7fde1cbe5afb9e3b59456aafc6928684fcd4b" }, "downloads": -1, "filename": "vulture-0.10.tar.gz", "has_sig": false, "md5_digest": "b8b804333372d7fc6dc367154bd8c298", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10205, "upload_time": "2016-07-14T14:32:31", "url": "https://files.pythonhosted.org/packages/0d/75/1477843a4ef29b1380f72052560434dce4f47ea13a0968c9f4c8cc3bf14e/vulture-0.10.tar.gz" } ], "0.11": [ { "comment_text": "", "digests": { "md5": "121a8a51003d48d1e83e38a71c8c0b2f", "sha256": "7636e270e73c937c4ad427d79838a4d092df0069777289e758b3f279ef402e0e" }, "downloads": -1, "filename": "vulture-0.11.tar.gz", "has_sig": false, "md5_digest": "121a8a51003d48d1e83e38a71c8c0b2f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10609, "upload_time": "2016-11-27T11:03:34", "url": "https://files.pythonhosted.org/packages/03/bb/9dc6c0f4e02282afbf1fcdb9d13c795953ddcb8aeb032e9a4eb35b6c7a1c/vulture-0.11.tar.gz" } ], "0.12": [ { "comment_text": "", "digests": { "md5": "805dc94471272fd8745c9fc700268312", "sha256": "d394bfafdfb0cee41d69b88c4482d7d8f4862758a81a657f4dd648fea5895997" }, "downloads": -1, "filename": "vulture-0.12.tar.gz", "has_sig": false, "md5_digest": "805dc94471272fd8745c9fc700268312", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11884, "upload_time": "2017-01-05T11:20:42", "url": "https://files.pythonhosted.org/packages/82/25/b301a9cdbbe5bae1701c71174b06989ffb41bbdcaccaea4b7be8a8c21773/vulture-0.12.tar.gz" } ], "0.13": [ { "comment_text": "", "digests": { "md5": "b5e33ad28dba0eab238b64f74f8b25c5", "sha256": "287d084a9b6cdce0670e7438b739a80c96ab2f30482fbcaead79c0dcab523656" }, "downloads": -1, "filename": "vulture-0.13.tar.gz", "has_sig": false, "md5_digest": "b5e33ad28dba0eab238b64f74f8b25c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11951, "upload_time": "2017-03-06T12:17:40", "url": "https://files.pythonhosted.org/packages/d1/46/6c8188a382392d4ed9ef3e77c6e73558127885e7a61c3bbd313dc979bd82/vulture-0.13.tar.gz" } ], "0.14": [ { "comment_text": "", "digests": { "md5": "a258adc0addfbd5ea31707f2ba612c1a", "sha256": "0e71fb39f4629ef8f84182176f0a43fd84346dd051795488e91af053aa2ee77c" }, "downloads": -1, "filename": "vulture-0.14.tar.gz", "has_sig": false, "md5_digest": "a258adc0addfbd5ea31707f2ba612c1a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13297, "upload_time": "2017-04-06T09:00:47", "url": "https://files.pythonhosted.org/packages/a7/02/94696b6baf5ff7018f6c57196a593108b855ce6fe31c769087de3201f461/vulture-0.14.tar.gz" } ], "0.15": [ { "comment_text": "", "digests": { "md5": "f05a007776bf44e4928e93efcfa9293d", "sha256": "3286ef9814bc0a3fe44a0e354f090dd68067fe3a65dde7469aa949572b914688" }, "downloads": -1, "filename": "vulture-0.15.tar.gz", "has_sig": false, "md5_digest": "f05a007776bf44e4928e93efcfa9293d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13784, "upload_time": "2017-07-03T22:18:42", "url": "https://files.pythonhosted.org/packages/79/8c/f10551089374abf1134011bd195975c2c2205bd185918cc0eefc97868453/vulture-0.15.tar.gz" } ], "0.16": [ { "comment_text": "", "digests": { "md5": "b5108bd455a9b4e66752a3d4a0c53091", "sha256": "684a4d160807f476622c746c20e0cb12e3506b43bcd85a47b06f1e9e2ad2af13" }, "downloads": -1, "filename": "vulture-0.16.tar.gz", "has_sig": false, "md5_digest": "b5108bd455a9b4e66752a3d4a0c53091", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15574, "upload_time": "2017-07-12T19:24:58", "url": "https://files.pythonhosted.org/packages/53/99/371c37da20a761e2986a6612e0b2e8134ec924b8124ee732688ccdf9544d/vulture-0.16.tar.gz" } ], "0.17": [ { "comment_text": "", "digests": { "md5": "26b05326bb0dac27aba6b1f9b6eeb246", "sha256": "41e27067791f2ea7f4a6855652caa62cb66e68eb05a3ce3b8ca2bc9ccb04a715" }, "downloads": -1, "filename": "vulture-0.17.tar.gz", "has_sig": false, "md5_digest": "26b05326bb0dac27aba6b1f9b6eeb246", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15731, "upload_time": "2017-07-17T21:40:50", "url": "https://files.pythonhosted.org/packages/22/fa/59a5f173ed70e63d4c23777fff64f05e5e73488956be3b0c3b1af2eea7b3/vulture-0.17.tar.gz" } ], "0.18": [ { "comment_text": "", "digests": { "md5": "6c9a9a04fb164f7b4b9718509a6366de", "sha256": "96f2d7e5c4e02968f7bd34e697eb7a97c691e98f9cefaf35c360ee196ed90899" }, "downloads": -1, "filename": "vulture-0.18.tar.gz", "has_sig": false, "md5_digest": "6c9a9a04fb164f7b4b9718509a6366de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15986, "upload_time": "2017-07-17T21:48:00", "url": "https://files.pythonhosted.org/packages/01/de/1e69a324734a70c3794c29279156fd9ea217d525046e2c02b02999d552b9/vulture-0.18.tar.gz" } ], "0.19": [ { "comment_text": "", "digests": { "md5": "eb5b4f17bc92f89937c84acba1cc9721", "sha256": "a2237c6545a2971ee65b93ce85776e5e94d22fc140b76cae8aeb20c41d972866" }, "downloads": -1, "filename": "vulture-0.19.tar.gz", "has_sig": false, "md5_digest": "eb5b4f17bc92f89937c84acba1cc9721", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47760, "upload_time": "2017-07-20T14:56:34", "url": "https://files.pythonhosted.org/packages/c2/79/1f2ec227bf73a624749065c67589c1bcbbc1e3236aab933411ab4130e68d/vulture-0.19.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "a15d531f33a040809c13bceae75737f7", "sha256": "d2ea852ba1e367b7800a7fe40c1bd212f1d1377451655d2d315240f0b4bedbdf" }, "downloads": -1, "filename": "vulture-0.2.tar.gz", "has_sig": false, "md5_digest": "a15d531f33a040809c13bceae75737f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17106, "upload_time": "2012-03-18T18:33:16", "url": "https://files.pythonhosted.org/packages/a5/5d/e397c1baf9d363cf661e066f72ef0915ea468ae016cc3b3354bdddf64c6a/vulture-0.2.tar.gz" } ], "0.20": [ { "comment_text": "", "digests": { "md5": "d32c7859d998985399be5026169888e7", "sha256": "26cecf2799cc163d5716dd2adbfec08c5fcdc3947da4c92ae172ae74b6a00ee4" }, "downloads": -1, "filename": "vulture-0.20.tar.gz", "has_sig": false, "md5_digest": "d32c7859d998985399be5026169888e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48966, "upload_time": "2017-07-26T08:45:51", "url": "https://files.pythonhosted.org/packages/84/fd/8d8f3a9d7761f53544eda96dbbcb62fd1c27bce3c0a5d3318217435aca0b/vulture-0.20.tar.gz" } ], "0.21": [ { "comment_text": "", "digests": { "md5": "da63b460b9b475dc381e5bf6d44d9280", "sha256": "55cd1c2d1f742903b5973749cfe58ce951ffad93db9dd6843aa7c8b76653741f" }, "downloads": -1, "filename": "vulture-0.21-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "da63b460b9b475dc381e5bf6d44d9280", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 17936, "upload_time": "2017-07-26T14:00:38", "url": "https://files.pythonhosted.org/packages/e9/09/f928b769a50d6845a8575f13d7f45fb464cd8a566ff19767ae4bbe7ecbd7/vulture-0.21-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8b46e360b18549960f7cd6191a4fe7cb", "sha256": "07e5acd1cd2fbf554acec5257cfc234a0a09c3fa1b42ff269e1dd8482659d62c" }, "downloads": -1, "filename": "vulture-0.21.tar.gz", "has_sig": false, "md5_digest": "8b46e360b18549960f7cd6191a4fe7cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49461, "upload_time": "2017-07-26T14:00:33", "url": "https://files.pythonhosted.org/packages/f7/da/d2f0fad90f44e840fbebcff3168a5f83e99cd54c088a8af5ee2dcc6e9f12/vulture-0.21.tar.gz" } ], "0.22": [ { "comment_text": "", "digests": { "md5": "24a787f8250fdc310e91d1132c3cbeda", "sha256": "77c765a2c7ab1c8662f2225dd91592f31e08282505ae72b502e7f814dc5576c5" }, "downloads": -1, "filename": "vulture-0.22-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "24a787f8250fdc310e91d1132c3cbeda", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 19098, "upload_time": "2017-08-04T14:46:02", "url": "https://files.pythonhosted.org/packages/96/c6/dcb949b025e895cde0edc23f5d2681294af668ef5cc69302057bc4eba69d/vulture-0.22-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0739864f0ac7497f7d755d62aacc1839", "sha256": "455426da22ccca02182435b84b3d522f000408fb435717c4054e928fdf8612d2" }, "downloads": -1, "filename": "vulture-0.22.tar.gz", "has_sig": false, "md5_digest": "0739864f0ac7497f7d755d62aacc1839", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20331, "upload_time": "2017-08-04T14:45:56", "url": "https://files.pythonhosted.org/packages/df/01/349b3b8cf396a2c480af79f316ae71406458f2cfcda8ec6e198c02550726/vulture-0.22.tar.gz" } ], "0.23": [ { "comment_text": "", "digests": { "md5": "27589ed0de1881785b28f302f237e3df", "sha256": "1b46937d37081195138a9600bbaf3d11575b4b5d1475ed4e67f11cc3e52445d5" }, "downloads": -1, "filename": "vulture-0.23-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "27589ed0de1881785b28f302f237e3df", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 19650, "upload_time": "2017-08-10T08:08:31", "url": "https://files.pythonhosted.org/packages/42/82/a320d1bdc9b07aa42c923939f32c5c6c77cbee81330ad039314ddb98cd8e/vulture-0.23-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2f262343b367defd8de6a2b1387ca99f", "sha256": "f90ec2e159e2df7aa83e78fbc75d57df63ae160402781bba09c6fd79c00a7003" }, "downloads": -1, "filename": "vulture-0.23.tar.gz", "has_sig": false, "md5_digest": "2f262343b367defd8de6a2b1387ca99f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21130, "upload_time": "2017-08-10T08:08:28", "url": "https://files.pythonhosted.org/packages/90/ae/365c3f23604e6e88a10fbbc520b894dfa809e13eb809009f4f2c1afc22bc/vulture-0.23.tar.gz" } ], "0.24": [ { "comment_text": "", "digests": { "md5": "f3b428b98926f8f0503450cc1fae7acb", "sha256": "17be5f6a7c88ea43f2619f80338af7407275ee46a24000abe2570e59ca44b3d0" }, "downloads": -1, "filename": "vulture-0.24-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f3b428b98926f8f0503450cc1fae7acb", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 20571, "upload_time": "2017-08-14T09:20:41", "url": "https://files.pythonhosted.org/packages/90/19/d429b27e1ea235d838291f17d80b1d37db1029ef199f3b9549fd1e46f45d/vulture-0.24-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5a0ba5251f7d73427d00fb7429874525", "sha256": "23d837cf619c3bb75f87bc498c79cd4f27f0c54031ca88a9e05606c9dd627fef" }, "downloads": -1, "filename": "vulture-0.24.tar.gz", "has_sig": false, "md5_digest": "5a0ba5251f7d73427d00fb7429874525", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23943, "upload_time": "2017-08-14T09:20:39", "url": "https://files.pythonhosted.org/packages/41/88/9ca64ab364de0ca8a813478a37fedf5c6444e5260b34f6eff24181a5f8d0/vulture-0.24.tar.gz" } ], "0.25": [ { "comment_text": "", "digests": { "md5": "dde5a4943f41870eec4e5f1a6b273013", "sha256": "a9c1c299f0a29d15ea4bb9bc636873a0f24fa5d8022ba90b1b3ffed68738dad0" }, "downloads": -1, "filename": "vulture-0.25-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "dde5a4943f41870eec4e5f1a6b273013", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 20579, "upload_time": "2017-08-15T15:25:28", "url": "https://files.pythonhosted.org/packages/98/d7/3cc454c33422f1c43255928e7b4bac77a0bcabb113a946997edc60a2a176/vulture-0.25-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5cd4241bd6511990ac324b48aee3cf4e", "sha256": "d8758d5b17b162a991be854d4b3bceac5812f73d0e35a8838ca9dcb9ece2d1ca" }, "downloads": -1, "filename": "vulture-0.25.tar.gz", "has_sig": false, "md5_digest": "5cd4241bd6511990ac324b48aee3cf4e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23832, "upload_time": "2017-08-15T15:25:26", "url": "https://files.pythonhosted.org/packages/96/dd/21dbcab446b5f61a9bfec0eb5c1eee15073330d57e9863d0c1ff4768ee9a/vulture-0.25.tar.gz" } ], "0.26": [ { "comment_text": "", "digests": { "md5": "30e2fbf63a214eafb602bc9dcb45a850", "sha256": "1e420658911805435de267f71a78c9f5467021afd7d10609bf10c3b114223a84" }, "downloads": -1, "filename": "vulture-0.26-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "30e2fbf63a214eafb602bc9dcb45a850", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 20748, "upload_time": "2017-08-28T07:30:18", "url": "https://files.pythonhosted.org/packages/7b/9b/58a43f683e18b8fe71c7056d7268e1518ddd78e9a9baddd0c35667fdca18/vulture-0.26-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4fd063f874e7f5f25459395558ae9bca", "sha256": "89b0fae71c4b1f536c72f36e4f84d5e4f063d9b0bd54a5ace0d7725aabdf04a1" }, "downloads": -1, "filename": "vulture-0.26.tar.gz", "has_sig": false, "md5_digest": "4fd063f874e7f5f25459395558ae9bca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24050, "upload_time": "2017-08-28T07:30:15", "url": "https://files.pythonhosted.org/packages/c8/5e/2c58aebeeddaf89a3d8d6c5a2656a8175cf42e15adebdc25aba9ad5dc4f6/vulture-0.26.tar.gz" } ], "0.27": [ { "comment_text": "", "digests": { "md5": "012b9bdd605f99e6b139fb2db4c0f495", "sha256": "b436c8fa332ef7b05de837c0daa8c2bf69be56d36103333339e269572918c473" }, "downloads": -1, "filename": "vulture-0.27-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "012b9bdd605f99e6b139fb2db4c0f495", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 22511, "upload_time": "2018-06-05T11:56:27", "url": "https://files.pythonhosted.org/packages/2f/16/d52db33f4edaef119221d1149f539d687cc4fe8d51cba9dd7b2bf0707b2e/vulture-0.27-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0b7a146e9d9bcdc3dd70e2af656a0b00", "sha256": "991b6701a9a6acb1af67f39a4ca1ab52f41dd129666cae9c6e13775d775cd38b" }, "downloads": -1, "filename": "vulture-0.27.tar.gz", "has_sig": false, "md5_digest": "0b7a146e9d9bcdc3dd70e2af656a0b00", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28172, "upload_time": "2018-06-05T11:56:25", "url": "https://files.pythonhosted.org/packages/87/88/020e69be0ff058d4d2aab3375f10980445bffa1527c28d2c88e93ed2b86e/vulture-0.27.tar.gz" } ], "0.28": [ { "comment_text": "", "digests": { "md5": "bb85205dc080913a71f210a20076b173", "sha256": "9e25a8592e2dda115a8e6dddc65892133cdde50267fc46c4818f2edac4772c7c" }, "downloads": -1, "filename": "vulture-0.28-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bb85205dc080913a71f210a20076b173", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 24984, "upload_time": "2018-07-05T11:44:21", "url": "https://files.pythonhosted.org/packages/7f/b1/30ff55d65dae78efaedb3eac3316d3ccbf0a7f1d5f4b2f10b5784a2db585/vulture-0.28-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bdb369c03250b5f0086a103546fa9dc8", "sha256": "28f82ac4749a72050910f70ea250a9ab8c4f1d015197d032c773e560b868d72c" }, "downloads": -1, "filename": "vulture-0.28.tar.gz", "has_sig": false, "md5_digest": "bdb369c03250b5f0086a103546fa9dc8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29756, "upload_time": "2018-07-05T11:44:18", "url": "https://files.pythonhosted.org/packages/ef/24/82711251cdd65efd321a375f64bf02f0a02721fa82b73c445f2ff13c3d1b/vulture-0.28.tar.gz" } ], "0.29": [ { "comment_text": "", "digests": { "md5": "5e02055c21059b3df07fb5287bc94850", "sha256": "79c89ef5e3f2365467bcf491f425f777ae8fd157584dcc550d4591920b00fe3f" }, "downloads": -1, "filename": "vulture-0.29-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5e02055c21059b3df07fb5287bc94850", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 25548, "upload_time": "2018-07-31T12:37:09", "url": "https://files.pythonhosted.org/packages/1b/40/92d0b666eaa19bd5aa81a5fc066841f43e7ff140b17eaababb27c5782b4d/vulture-0.29-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "eb586909ff4cb47402e7d74ebf69b846", "sha256": "e794345a19c76f93f48f4519653038df90ad468ddea7912e14b07a07f6412e32" }, "downloads": -1, "filename": "vulture-0.29.tar.gz", "has_sig": false, "md5_digest": "eb586909ff4cb47402e7d74ebf69b846", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30438, "upload_time": "2018-07-31T12:37:08", "url": "https://files.pythonhosted.org/packages/f1/b0/5e28119373c4703e7c9dc60f985c60c20b0c5f43ad59701921f60b3b9afb/vulture-0.29.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "9ef8693662f6d4841f5436d1c033f83c", "sha256": "1c279b35fa372a617489f719a3653ec4c68d1f7d22efd50748ec58ac915e3551" }, "downloads": -1, "filename": "vulture-0.3.tar.gz", "has_sig": false, "md5_digest": "9ef8693662f6d4841f5436d1c033f83c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17572, "upload_time": "2012-03-19T23:21:42", "url": "https://files.pythonhosted.org/packages/5f/77/0b63e60cd326bd3eb69a2f7564a130af8b526f66d0b37d856a4c243d400b/vulture-0.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "65a521fc7ffd82c67e911c7ba1b229ea", "sha256": "2a46cd9976fbb60d60ffbe0ee7f70d32665a83590ed0653dc1d6f02e0a2a8144" }, "downloads": -1, "filename": "vulture-0.4.tar.gz", "has_sig": false, "md5_digest": "65a521fc7ffd82c67e911c7ba1b229ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17222, "upload_time": "2013-06-23T18:52:47", "url": "https://files.pythonhosted.org/packages/f1/ae/18a4a1ff57ccc95e5a2d62b00ae087922c526573b9482fbeb57e544a4f26/vulture-0.4.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "a4a6a7321d4688d5882a1def3a834717", "sha256": "1fbf6efc99ffffc86e816281c21e2032c36eb873ffd4dd7168d124901798b847" }, "downloads": -1, "filename": "vulture-0.4.1.tar.gz", "has_sig": false, "md5_digest": "a4a6a7321d4688d5882a1def3a834717", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17241, "upload_time": "2013-09-17T14:20:15", "url": "https://files.pythonhosted.org/packages/5b/a1/687438181e79d9af416b0ea5675836f1265c30c3e11b789399c330b53497/vulture-0.4.1.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "e478010bae4eaf6b0894f80f05fa156c", "sha256": "ade6fd290c1621fd127e728a5c7032ff9afe5fa62bada5ef6856b62f1fd6e480" }, "downloads": -1, "filename": "vulture-0.5.tar.gz", "has_sig": false, "md5_digest": "e478010bae4eaf6b0894f80f05fa156c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17301, "upload_time": "2014-05-09T08:27:17", "url": "https://files.pythonhosted.org/packages/10/c8/4ae0e87b7e6af5b7ff0420351aeface733f638a5fa6779e250f2130af750/vulture-0.5.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "5f9ae7be157fae31e5fc762ee6eaf47a", "sha256": "1f3090254fd838a39a0f9216ce1528b959c6a73eff894245107c9c7862dca9b2" }, "downloads": -1, "filename": "vulture-0.6.tar.gz", "has_sig": false, "md5_digest": "5f9ae7be157fae31e5fc762ee6eaf47a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17815, "upload_time": "2014-09-06T14:27:18", "url": "https://files.pythonhosted.org/packages/83/92/ac8e488f22628da5c14239c8434984bf3551289342048f73dcd8ae4c4110/vulture-0.6.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "b62598bc7773df83c9c8006b3ceba8bd", "sha256": "beb4b57fba70f29d9bb24702051a95492c5775f93b4621261e15a7de74a838e3" }, "downloads": -1, "filename": "vulture-0.7.tar.gz", "has_sig": false, "md5_digest": "b62598bc7773df83c9c8006b3ceba8bd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18346, "upload_time": "2015-09-26T19:32:59", "url": "https://files.pythonhosted.org/packages/28/ad/9bf2c6eb4116ccc9883d8a7421d04d7423fbcdf94d84505c794a9577b99a/vulture-0.7.tar.gz" } ], "0.8": [ { "comment_text": "", "digests": { "md5": "5afd65ae4af990ff598f0287d7e3f57d", "sha256": "20db376d54ab41afe71dd186c0b9700046975d9d31d1e47480d11261f85fd9eb" }, "downloads": -1, "filename": "vulture-0.8.tar.gz", "has_sig": false, "md5_digest": "5afd65ae4af990ff598f0287d7e3f57d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18684, "upload_time": "2015-09-28T08:55:11", "url": "https://files.pythonhosted.org/packages/a1/08/11b6d01935252340070b9335c2184dab39eb8f6f80196ab5e19892dc1de5/vulture-0.8.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "fea53319ba12b14f7016831300183cc6", "sha256": "3d5567f7300707a7e340fffd0fd1ebfc8d717114944c03c842b8b6c26e2d365a" }, "downloads": -1, "filename": "vulture-0.8.1.tar.gz", "has_sig": false, "md5_digest": "fea53319ba12b14f7016831300183cc6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18708, "upload_time": "2015-09-28T09:11:16", "url": "https://files.pythonhosted.org/packages/3b/dc/dae75a2ce7fa53a23826d41d7e9b368cf72e46800b21d0fa84fdd7c5ada3/vulture-0.8.1.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "6ce1845d500dcdddcf0cb52c3b0c319c", "sha256": "556130808d9a781846e46aa5a79012517e27b095d6c8958dba4867d1752429b9" }, "downloads": -1, "filename": "vulture-0.9.tar.gz", "has_sig": false, "md5_digest": "6ce1845d500dcdddcf0cb52c3b0c319c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19127, "upload_time": "2016-06-29T21:21:35", "url": "https://files.pythonhosted.org/packages/99/76/e54d4bddb08aaf8e3642bdefeb663b422faefb21200cedd50837ddffc421/vulture-0.9.tar.gz" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "b7ec926dbc661f8f8f3ae6d82204db54", "sha256": "524b6b9642d0bbe74ea21478bf260937d1ba9b3b86676ca0b17cd10b4b51ba01" }, "downloads": -1, "filename": "vulture-1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b7ec926dbc661f8f8f3ae6d82204db54", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 26334, "upload_time": "2018-10-23T16:29:58", "url": "https://files.pythonhosted.org/packages/9a/a2/facb0a8b6d37901a58c1dbe76253378e83f9a943bf4768b5ec513b65921e/vulture-1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "230261f74a2c445ad05589f2e60f3f75", "sha256": "4b5a8980c338e9c068d43e7164555a1e4c9c7d84961ce2bc6f3ed975f6e5bc9d" }, "downloads": -1, "filename": "vulture-1.0.tar.gz", "has_sig": false, "md5_digest": "230261f74a2c445ad05589f2e60f3f75", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31690, "upload_time": "2018-10-23T16:29:47", "url": "https://files.pythonhosted.org/packages/37/1f/e1cbaa78643353e720317efa84b8addcb64c7762ddb630e69048e76f6902/vulture-1.0.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "c1c0ee0195acb07d154e0c522c393c81", "sha256": "20e73154efc9c6d2445663bc2f7fbf79b6c562f2b78cafc0ec0463b38610f42d" }, "downloads": -1, "filename": "vulture-1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c1c0ee0195acb07d154e0c522c393c81", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 27110, "upload_time": "2019-09-23T17:39:31", "url": "https://files.pythonhosted.org/packages/94/f7/4d728cfcee4151672a273bdea850d5275306d7c4180de2d9d783a0b7ada8/vulture-1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "185c256586882cb9bf2ce73af78e9f53", "sha256": "a72834a8c9cf254f6ba0a64e9053b800e05df8391b1724702a19b00d7d849a43" }, "downloads": -1, "filename": "vulture-1.1.tar.gz", "has_sig": false, "md5_digest": "185c256586882cb9bf2ce73af78e9f53", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34977, "upload_time": "2019-09-23T17:39:00", "url": "https://files.pythonhosted.org/packages/10/aa/388d0e66e1434af0e99e9e1297cfe151abd66d3e4016e26da9199448de17/vulture-1.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c1c0ee0195acb07d154e0c522c393c81", "sha256": "20e73154efc9c6d2445663bc2f7fbf79b6c562f2b78cafc0ec0463b38610f42d" }, "downloads": -1, "filename": "vulture-1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c1c0ee0195acb07d154e0c522c393c81", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 27110, "upload_time": "2019-09-23T17:39:31", "url": "https://files.pythonhosted.org/packages/94/f7/4d728cfcee4151672a273bdea850d5275306d7c4180de2d9d783a0b7ada8/vulture-1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "185c256586882cb9bf2ce73af78e9f53", "sha256": "a72834a8c9cf254f6ba0a64e9053b800e05df8391b1724702a19b00d7d849a43" }, "downloads": -1, "filename": "vulture-1.1.tar.gz", "has_sig": false, "md5_digest": "185c256586882cb9bf2ce73af78e9f53", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34977, "upload_time": "2019-09-23T17:39:00", "url": "https://files.pythonhosted.org/packages/10/aa/388d0e66e1434af0e99e9e1297cfe151abd66d3e4016e26da9199448de17/vulture-1.1.tar.gz" } ] }