{ "info": { "author": "Nicolas Despres", "author_email": "nicolas.despres@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Utilities" ], "description": "================\nWelcome to pyloc\n================\n\n|ci-status| |cov| |version| |versions| |download| |stability| |license|\n\n*pyloc* prints the location of the definition of any python object in\nyour file-system.\n\nIntroduction\n============\n\n*pyloc* is very similar to what ``python3 -m inspect -d ``\noffers. However, it is only focused to retrieve the file name (and\neventually the line number) where a given Python object is defined.\nThe object can be a package, module, class, method or function.\n\n*pyloc* makes some further efforts to figure out the line and column\nnumber and its output is formatted so that it can easily be passed\nto ``emacsclient`` or ``vi``.\n\nExamples\n========\n\nYou can see the location of ``Popen.wait`` method in the sub-process package:\n\n.. code:: bash\n\n $ python -m pyloc -f human subprocess:Popen.wait\n Filename: /Users/polrop/.pyenv/versions/2.7.9/lib/python2.7/subprocess.py\n Line: 1379\n\n $ python -m pyloc -f human email.utils:formataddr\n Filename: /Users/polrop/.pyenv/versions/2.7.9/lib/python2.7/email/utils.py\n Line: 85\n\n(Output may be different on your system if you have different\ninstallation path and version)\n\nNote that the object naming syntax is as follow: ``module[:qualname]``\nSince version 0.2.0, syntax ``module[.qualname]`` a la pydoc is also\nsupported.\n\nTo open it in Emacs you can do:\n\n.. code:: bash\n\n $ emacsclient `python -m pyloc -f emacs subprocess:Popen.wait`\n\nor in vim:\n\n.. code:: bash\n\n $ vim `python -m pyloc -f vi subprocess:Popen.wait`\n\nIf you are lazy typing ``-f `` all the time and you often use\nthe same format, you can set the default output format this way (you\ncan add this line in your ``.zshenv`` or ``.bashrc``):\n\n.. code:: bash\n\n $ export PYLOC_DEFAULT_FORMAT=emacs\n\n*pyloc* will always locate object based on the ``python`` interpreter\nyour are using:\n\n.. code:: bash\n\n $ python3 -m pyloc -f human subprocess:Popen.wait\n Filename: /Users/polrop/.pyenv/versions/3.4.3/lib/python3.4/subprocess.py\n Line: 1526\n\n $ /usr/local/bin/python -m pyloc -f human email.utils:formataddr\n Filename: /usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/email/utils.py\n Line: 85\n\n $ /usr/bin/python -m pyloc -f human email.utils:formataddr\n Filename: /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/email/utils.py\n Line: 85\n\nInstallation\n============\n\nUsing pip\n---------\n\nYou can install *pyloc* using ``pip`` like this:\n\n.. code:: bash\n\n $ pip install pyloc\n\nor\n\n.. code:: bash\n\n $ pip3 install pyloc\n\nDirectly from the source\n------------------------\n\n.. code:: bash\n\n $ git clone https://github.com/nicolasdespres/pyloc.git\n $ cd pyloc\n $ python setup.py develop\n # If you also want it for Python 3\n $ python3 setup.py develop\n\nNote that if you also install the Python 3 version, the ``pyloc2``\ncommand line driver will not work but the ``pyloc`` driver will point\nto the Python 2 installation.\n\nTo uninstall it, you ca do:\n\n.. code:: bash\n\n $ python setup.py develop --uninstall\n # And if you installed the Python 3 version\n $ python3 setup.py develop --uninstall\n\nHowever, this won't remove the entry scripts generated by easy\ninstall.\n\nKnown bugs\n==========\n\n* Classes or built-in types like int or str do not contain location\n information. In this case *pyloc* tries to look for the name in the\n AST. This procedure may not be accurate since Python is a dynamic\n language.\n\nHacking\n=======\n\nSee `HACKING `_ for details.\n\nRelease notes\n=============\n\nSee the corresponding tag annotation. After cloning you can do for instance:\n\n.. code:: bash\n\n $ git show v0.1.10\n\nLicense\n=======\n\n*pyloc* is released under the term of the\n`Simplified BSD License `_.\nCopyright (c) 2015-2106, Nicolas Despr\u00e8s\nAll rights reserved.\n\nAs noted in the source code, some part has been inspired by code from\nthe ``inspect`` module written by Ka-Ping Yee and\nYury Selivanov form the Python 3.4.3\ndistribution (see the LICENSE file in the python distribution)\n\n\n\n\n\n.. |ci-status| image:: https://api.travis-ci.org/nicolasdespres/pyloc.svg?branch=master\n :target: https://travis-ci.org/nicolasdespres/pyloc\n :alt: Build Status\n\n.. |cov| image:: https://coveralls.io/repos/github/nicolasdespres/pyloc/badge.svg?branch=master\n :target: https://coveralls.io/github/nicolasdespres/pyloc?branch=master\n :alt: Coverage Status\n\n.. |version| image:: https://img.shields.io/pypi/v/pyloc.svg\n :target: https://pypi.python.org/pypi/pyloc\n :alt: Last released version\n\n.. |versions| image:: https://img.shields.io/pypi/pyversions/pyloc.svg\n :target: https://pypi.python.org/pypi/pyloc/\n :alt: Supported python versions\n\n.. |download| image:: https://img.shields.io/pypi/dd/pyloc.svg\n :target: https://pypi.python.org/pypi/pyloc/\n :alt: Download rate\n\n.. |stability| image:: https://img.shields.io/pypi/status/pyloc.svg\n :target: https://pypi.python.org/pypi/pyloc\n :alt: Package stability\n\n.. |license| image:: https://img.shields.io/pypi/l/pyloc.svg\n :target: https://pypi.python.org/pypi/pyloc\n :alt: License", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/nicolasdespres/pyloc", "keywords": "utility", "license": "Simplified BSD", "maintainer": "", "maintainer_email": "", "name": "pyloc", "package_url": "https://pypi.org/project/pyloc/", "platform": "any", "project_url": "https://pypi.org/project/pyloc/", "project_urls": { "Homepage": "https://github.com/nicolasdespres/pyloc" }, "release_url": "https://pypi.org/project/pyloc/0.2.0/", "requires_dist": null, "requires_python": "", "summary": "Locate python object definition in your file-system", "version": "0.2.0" }, "last_serial": 2065390, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "2e538ba7f809bd7fcefbb8cbb287189e", "sha256": "3c5e26fe22e70cc637204f1cdfff2b77ac4759eb03fb0ee096dd3b07f9e89e12" }, "downloads": -1, "filename": "pyloc-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2e538ba7f809bd7fcefbb8cbb287189e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12010, "upload_time": "2015-06-21T18:43:10", "url": "https://files.pythonhosted.org/packages/6f/30/2bf52d18c63e7b49ef8281616f08ffb3c66054cc5442139a2ca77dbb70c4/pyloc-0.1.0-py2.py3-none-any.whl" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "4cae32c7b0cc8cca2480ce5a6b12d52b", "sha256": "eab4ae1b4ce9d2a1489a0e3fb9394b2bfce41ca6c214a9f90d78c92674fb5c44" }, "downloads": -1, "filename": "pyloc-0.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4cae32c7b0cc8cca2480ce5a6b12d52b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12057, "upload_time": "2015-06-21T18:49:31", "url": "https://files.pythonhosted.org/packages/1e/55/0e6ea5372667b73205a5d57e487dd0bd9fb6f72d7aa433f85b4907860b37/pyloc-0.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ff097cbdbaf5376effc54b0158b3310c", "sha256": "af8a92da3614a920994b9b7473907f8fba3824c0809a13683fdbc63b7a5e8d14" }, "downloads": -1, "filename": "pyloc-0.1.1.tar.gz", "has_sig": false, "md5_digest": "ff097cbdbaf5376effc54b0158b3310c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10528, "upload_time": "2015-06-21T18:49:34", "url": "https://files.pythonhosted.org/packages/ae/e3/e34c6b9bf9fe60c88657e0bf7f633bdbc84510f7e1225f9eb3d11a37100f/pyloc-0.1.1.tar.gz" } ], "0.1.10": [ { "comment_text": "", "digests": { "md5": "4468a79be1cdb206d3a0c98f5980616a", "sha256": "32026348cc9b04e5bdc59f6d9c2b7ddd530d5a8fec2fc4d412079db226464a71" }, "downloads": -1, "filename": "pyloc-0.1.10-py2-none-any.whl", "has_sig": false, "md5_digest": "4468a79be1cdb206d3a0c98f5980616a", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 13101, "upload_time": "2016-01-06T01:23:50", "url": "https://files.pythonhosted.org/packages/5e/e6/cd40d4f7d7b9e46bd79c0abef26347f6d73e4c460309602dfa24761a8bf7/pyloc-0.1.10-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d31c06f9a94c74b6f825662e4de20e20", "sha256": "ccb1ad17e2356fa0f21e0d5cccbc1ef67804bd8dfa3b0e44ead446918c9f7363" }, "downloads": -1, "filename": "pyloc-0.1.10-py3-none-any.whl", "has_sig": false, "md5_digest": "d31c06f9a94c74b6f825662e4de20e20", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 13101, "upload_time": "2016-01-06T01:24:08", "url": "https://files.pythonhosted.org/packages/bb/e7/3650c4c0a9377019bf55dc558aea28a38fc444f210c2b7cf6f6e951450dc/pyloc-0.1.10-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "88b5bd2f72af7a944518b24e3342945c", "sha256": "e5bdb0efa149d6ab98ea0f4cdacac3d6ea4de7664ecd41f58555a317591e34da" }, "downloads": -1, "filename": "pyloc-0.1.10.tar.gz", "has_sig": false, "md5_digest": "88b5bd2f72af7a944518b24e3342945c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11489, "upload_time": "2016-01-06T01:24:24", "url": "https://files.pythonhosted.org/packages/12/c7/cff0fc2a32dbe85fd12c8e32a426584d6d46948357ebf142b88400b5f853/pyloc-0.1.10.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "d70b4d884168e590cdbe946bdfebfd46", "sha256": "9260c1a9d0fa6fcddcc1a9efdd4f4dd8a315c655bd7b2e45f31c6431158b6474" }, "downloads": -1, "filename": "pyloc-0.1.2.tar.gz", "has_sig": false, "md5_digest": "d70b4d884168e590cdbe946bdfebfd46", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10546, "upload_time": "2015-06-21T18:58:10", "url": "https://files.pythonhosted.org/packages/90/6f/ec8377e7b0f07e70c4be4fe5983e4bb489a20c5345ed2efa36f6effb3a20/pyloc-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "afab8ddddbdca7b999083f66ccae474e", "sha256": "65951a8ead1c6220747fadb520ed38103b657a889f43b217c3d139396c5895cc" }, "downloads": -1, "filename": "pyloc-0.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "afab8ddddbdca7b999083f66ccae474e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12055, "upload_time": "2015-06-21T20:10:55", "url": "https://files.pythonhosted.org/packages/f4/66/3f945e1a346e6ffa088de97ce8f1080f2503b53357b30675d5b865dcccb6/pyloc-0.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "93e4e1080e827a7078da54edb395e956", "sha256": "1181e6935bb1740a521bba5fcad29a0bc54e35406fad1360b9bc3488bbc3d9f8" }, "downloads": -1, "filename": "pyloc-0.1.3.tar.gz", "has_sig": false, "md5_digest": "93e4e1080e827a7078da54edb395e956", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10527, "upload_time": "2015-06-21T20:10:59", "url": "https://files.pythonhosted.org/packages/58/de/7ee385ad27d2e66af45311230465388bda37c9db1988e9e1ba4638c42d0c/pyloc-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "f48d330e5231f319f9f60ffb0877db0f", "sha256": "f74af2039fefcd52971193c81c7f3989568d0e81ca8acba89c247f3dd6ae37ae" }, "downloads": -1, "filename": "pyloc-0.1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f48d330e5231f319f9f60ffb0877db0f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12054, "upload_time": "2015-06-21T20:13:49", "url": "https://files.pythonhosted.org/packages/8b/2f/04be776738a0e967e642972250bc4d85b2d529bf6210501508b64ae9b5e0/pyloc-0.1.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b113f270ecf229d733951f140996d847", "sha256": "cba16db8e76ff98c8fc586ccf7e7ccf305cf5a5b55e23eca70616e2a7c26ffaa" }, "downloads": -1, "filename": "pyloc-0.1.4.tar.gz", "has_sig": false, "md5_digest": "b113f270ecf229d733951f140996d847", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10536, "upload_time": "2015-06-21T20:13:53", "url": "https://files.pythonhosted.org/packages/7a/4c/3c59c2af777db3751923aa6a7f93ab4eb8c9131da1e6f678515737dea5a1/pyloc-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "b29029f7ac3958c245218177b4c76804", "sha256": "be32265fdb1895e0bcac16c6720d3818399d67f1d34e0e8457e82137212fa4b4" }, "downloads": -1, "filename": "pyloc-0.1.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b29029f7ac3958c245218177b4c76804", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12047, "upload_time": "2015-06-22T21:12:45", "url": "https://files.pythonhosted.org/packages/7a/da/cef7ffc2a32593297cadd7317df7165fa1e4a1881ece20d123ce11b3e159/pyloc-0.1.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e2ac0790356b9e8a85bf5a64bf3cd526", "sha256": "d2651b0ae203dc0048291579daa19b825a53024a2112845dc7dabab0419123d8" }, "downloads": -1, "filename": "pyloc-0.1.5.tar.gz", "has_sig": false, "md5_digest": "e2ac0790356b9e8a85bf5a64bf3cd526", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10530, "upload_time": "2015-06-22T21:12:49", "url": "https://files.pythonhosted.org/packages/0a/14/fe47e2a85bc77ef5e71bc525b4046f10b5f298b795f51e4701790413e380/pyloc-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "e63cbbc450e2c06cd8473be7940f8611", "sha256": "e358cd05f6fb12ea7f057ed34037a2aed523fa1cd21e8a0addeb51fd7d3c81cb" }, "downloads": -1, "filename": "pyloc-0.1.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e63cbbc450e2c06cd8473be7940f8611", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12055, "upload_time": "2015-06-22T21:36:12", "url": "https://files.pythonhosted.org/packages/c1/0c/7a21fb194d447eba76773c4c5579dc0707334822820b160d38d60614e2a5/pyloc-0.1.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f05977afda6fb8a85d24039cfd98fbb1", "sha256": "002927a639bbfb8ec627533a10b8f228db2c25e24491dd99226db2c9991c9ce4" }, "downloads": -1, "filename": "pyloc-0.1.6.tar.gz", "has_sig": false, "md5_digest": "f05977afda6fb8a85d24039cfd98fbb1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10536, "upload_time": "2015-06-22T21:36:16", "url": "https://files.pythonhosted.org/packages/d7/17/2259fec7451af9899884408e9fc12918bea6c629b4fd78ec27578f595f2a/pyloc-0.1.6.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "71616ad64c6bf4d24fc73a614f87f3b2", "sha256": "db75c088782dc96a0ee5eeca5ee4feedce51b49893c4c559335bb2d11e1c891d" }, "downloads": -1, "filename": "pyloc-0.1.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "71616ad64c6bf4d24fc73a614f87f3b2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12073, "upload_time": "2015-06-22T22:34:28", "url": "https://files.pythonhosted.org/packages/0c/d7/0ddfcc98a72dd805eecc35942afdcedb27e9822e3371b8e5304147b521c1/pyloc-0.1.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ebd34774499462c0f74f3804d4aae78d", "sha256": "c28bffc5b01d9baeed85c3475781897d59eddd62116d701250c428eefd3090c8" }, "downloads": -1, "filename": "pyloc-0.1.8.tar.gz", "has_sig": false, "md5_digest": "ebd34774499462c0f74f3804d4aae78d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10555, "upload_time": "2015-06-22T22:34:31", "url": "https://files.pythonhosted.org/packages/2e/ec/051104a90a7a05122c5f129c3f5acb0792248ce383c6f8a143cf555751b5/pyloc-0.1.8.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "a0a14e37fbf719f1d6d1c429d27e7147", "sha256": "a8ad4c9c6359d37678927c32a3e8ea53c83cebc9682f4298a9ba861e19064cb8" }, "downloads": -1, "filename": "pyloc-0.1.9-py2-none-any.whl", "has_sig": false, "md5_digest": "a0a14e37fbf719f1d6d1c429d27e7147", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 12119, "upload_time": "2015-07-14T09:30:39", "url": "https://files.pythonhosted.org/packages/c2/ad/1b8ab4ea355e7bfbbb03a6cae95c2bd03228296a2d4f24824a3250ad130e/pyloc-0.1.9-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9f4c41e455b4de63cb1253370f1d6092", "sha256": "c6110c44221ec153f41d334cd5b4d860a68c275ce3003f8d4fb465753aee2110" }, "downloads": -1, "filename": "pyloc-0.1.9-py3-none-any.whl", "has_sig": false, "md5_digest": "9f4c41e455b4de63cb1253370f1d6092", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 12117, "upload_time": "2015-07-14T09:30:42", "url": "https://files.pythonhosted.org/packages/c0/41/6763ab945af80ce62fc03727721c1cef61ac58fb3762a4b63310fd6f45a5/pyloc-0.1.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "abbdb7ff6d9594b970a1b5d30a6b4bdc", "sha256": "b4c2d19dba0072e2154f589966de6ab84d50440171b29aea2fa9e9b52a5f6134" }, "downloads": -1, "filename": "pyloc-0.1.9.tar.gz", "has_sig": false, "md5_digest": "abbdb7ff6d9594b970a1b5d30a6b4bdc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10674, "upload_time": "2015-07-14T09:30:46", "url": "https://files.pythonhosted.org/packages/62/bc/09c3ad48b72dd947ad1429539d33a0fd3637955d3e14aa38d412acf79c26/pyloc-0.1.9.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "d02f377e126e4d962e090e33fc7b4a1e", "sha256": "3d1c54f347977e9722e6a249267353d193f98608e7a93995222619d0aaffa470" }, "downloads": -1, "filename": "pyloc-0.2.0-py2-none-any.whl", "has_sig": false, "md5_digest": "d02f377e126e4d962e090e33fc7b4a1e", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 16273, "upload_time": "2016-04-15T12:46:47", "url": "https://files.pythonhosted.org/packages/bd/15/42408c2b7d0005cfa7bc0e69790913ac4f8bb24f3d32a77d660553281377/pyloc-0.2.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dcdfada0243d6511c4e510f34ab0e399", "sha256": "fd59c29d7fc302feefcda2065fe69aa6010a2726f9f80f34b88c54d82f468b5c" }, "downloads": -1, "filename": "pyloc-0.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "dcdfada0243d6511c4e510f34ab0e399", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16273, "upload_time": "2016-04-15T12:46:54", "url": "https://files.pythonhosted.org/packages/88/01/76d7019002945da0ae33361f2de45e38e2697e971a5ee12bfc43ade490ed/pyloc-0.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ad0c10b50c2166663cb54a98a465f739", "sha256": "30186816cea04587363aec8c097e1f9b5b269b50c139469ad0f833940eab2b3d" }, "downloads": -1, "filename": "pyloc-0.2.0.tar.gz", "has_sig": false, "md5_digest": "ad0c10b50c2166663cb54a98a465f739", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16289, "upload_time": "2016-04-15T12:47:01", "url": "https://files.pythonhosted.org/packages/28/23/651d4a290774714015922bac4ebf78c6b5f1f9bc7c85a912f1eece9180d8/pyloc-0.2.0.tar.gz" }, { "comment_text": "", "digests": { "md5": "b451e9cd4e2a57e4969217f3e190d13e", "sha256": "d186218bdb3e05145907adca1cf44a1d00637f2dac2415bb7c165cf7c58954bc" }, "downloads": -1, "filename": "pyloc-0.2.0.zip", "has_sig": false, "md5_digest": "b451e9cd4e2a57e4969217f3e190d13e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23094, "upload_time": "2016-04-15T12:47:11", "url": "https://files.pythonhosted.org/packages/6f/74/2c7c773805ccd97e002c7e0d5deb74dec26623850348cd23369abbe2da87/pyloc-0.2.0.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d02f377e126e4d962e090e33fc7b4a1e", "sha256": "3d1c54f347977e9722e6a249267353d193f98608e7a93995222619d0aaffa470" }, "downloads": -1, "filename": "pyloc-0.2.0-py2-none-any.whl", "has_sig": false, "md5_digest": "d02f377e126e4d962e090e33fc7b4a1e", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 16273, "upload_time": "2016-04-15T12:46:47", "url": "https://files.pythonhosted.org/packages/bd/15/42408c2b7d0005cfa7bc0e69790913ac4f8bb24f3d32a77d660553281377/pyloc-0.2.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dcdfada0243d6511c4e510f34ab0e399", "sha256": "fd59c29d7fc302feefcda2065fe69aa6010a2726f9f80f34b88c54d82f468b5c" }, "downloads": -1, "filename": "pyloc-0.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "dcdfada0243d6511c4e510f34ab0e399", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16273, "upload_time": "2016-04-15T12:46:54", "url": "https://files.pythonhosted.org/packages/88/01/76d7019002945da0ae33361f2de45e38e2697e971a5ee12bfc43ade490ed/pyloc-0.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ad0c10b50c2166663cb54a98a465f739", "sha256": "30186816cea04587363aec8c097e1f9b5b269b50c139469ad0f833940eab2b3d" }, "downloads": -1, "filename": "pyloc-0.2.0.tar.gz", "has_sig": false, "md5_digest": "ad0c10b50c2166663cb54a98a465f739", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16289, "upload_time": "2016-04-15T12:47:01", "url": "https://files.pythonhosted.org/packages/28/23/651d4a290774714015922bac4ebf78c6b5f1f9bc7c85a912f1eece9180d8/pyloc-0.2.0.tar.gz" }, { "comment_text": "", "digests": { "md5": "b451e9cd4e2a57e4969217f3e190d13e", "sha256": "d186218bdb3e05145907adca1cf44a1d00637f2dac2415bb7c165cf7c58954bc" }, "downloads": -1, "filename": "pyloc-0.2.0.zip", "has_sig": false, "md5_digest": "b451e9cd4e2a57e4969217f3e190d13e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23094, "upload_time": "2016-04-15T12:47:11", "url": "https://files.pythonhosted.org/packages/6f/74/2c7c773805ccd97e002c7e0d5deb74dec26623850348cd23369abbe2da87/pyloc-0.2.0.zip" } ] }