{ "info": { "author": "Franz Inc.", "author_email": "support@franz.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Topic :: Database", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "AllegroGraph Python API\n=======================\n\n|build-status| |rtd-status| |pypi-status| |conda-status|\n\nThe AllegroGraph Python API offers convenient and efficient access to\nan AllegroGraph server from a Python-based application. This API\nprovides methods for creating, querying and maintaining RDF data, and\nfor managing the stored triples. The AllegroGraph Python API\ndeliberately emulates the Eclipse RDF4J (formerly Aduna Sesame) API to\nmake it easier to migrate from RDF4J to AllegroGraph. The AllegroGraph\nPython API has also been extended in ways that make it easier and more\nintuitive than the RDF4J API.\n\n.. When including this in Sphinx omit the header section: SPHINX-START-HERE\n\nRequirements\n------------\nPython versions 2.6+ and 3.3+ are supported. The installation method\ndescribed here uses the pip package manager. On some systems this\nmight require installing an additional package (e.g. ``python-pip`` on\nRHEL/CentOS systems). All third-party libraries used by the Python\nclient will be downloaded automatically during installation.\n\nSee also the `Optional requirements`_ section below. \n\nInstallation\n------------\n.. important:: It is highly recommended to perform the install in a\n `virtualenv`_ environment.\n\nThe client can be installed from PyPI_ using the ``pip`` package\nmanager::\n\n pip install agraph-python\n\nAlternatively, a distribution archive can be obtained from\nftp://ftp.franz.com/pub/agraph/python-client/ and installed using `pip`::\n\n pip install agraph-python-.tar.gz\n\n.. warning::\n\n Python 2.6 users should consider installing the simplejson package::\n\n pip install simplejson\n\n since the built-in JSON module in that version of Python offers\n unsatisfactory performance. The AllegroGraph Python client will\n detect and use simplejson automatically if it is installed.\n\nOffline installation\n~~~~~~~~~~~~~~~~~~~~\nIf it is not possible to access PyPI_ from the target machine, the\nfollowing steps should be taken:\n\n * In a compatible environment with unrestricted network\n access run::\n\n pip wheel agraph-python\n\n * If desired do the same for optional dependencies::\n\n pip wheel pycurl simplejson\n\n * This will generate a number of ``.whl`` files in the current\n directory. These files must be transferred to the target machine.\n\n * On the target machine use this command to install::\n\n pip install --no-index --find-links= agraph-python\n\n where ```` is the directory containing the ``.whl`` files\n generated in the previous step.\n\nTesting\n-------\nTo validate the installation make sure that you have access to an\nAllegroGraph server and run the following Python script::\n\n from franz.openrdf.connect import ag_connect\n with ag_connect('repo', host='HOST', port='PORT',\n user='USER', password='PASS') as conn:\n print (conn.size())\n\nSubstitute appropriate values for the HOST/PORT/USER/PASS\nplaceholders. If the script runs successfully a new repository named\n`repo` will be created.\n\nProxy setup\n----------- \nIt is possible to configure the AllegroGraph Python client to use a\nproxy for all its connection to the server. This can be achieved by\nsetting the ``AGRAPH_PROXY`` environment variable, as in the following\nexample::\n\n # Create a SOCKS proxy for tunneling to an internal network\n ssh -fN -D 1080 user@gateway.example.com\n # Configure agraph-python to use this proxy\n export AGRAPH_PROXY=socks://localhost:1080\n\nThe format of the ``AGRAPH_PROXY`` value is ``TYPE://HOST:PORT``,\nwhere ``TYPE`` can be either ``http``, ``socks4``, ``socks5`` or\n``socks`` (a synonym for ``socks5``). Note that if a SOCKS proxy is\nused, DNS lookups will be performed by the proxy server.\n\nUnit tests\n~~~~~~~~~~\nThe Python client includes a suite of unit tests that can be run after\ninstallation. The tests are executed using the ``pytest`` framework\nand also use a few utilities from ``nose``, so these two packages have\nto be installed. We also need the ``pytest-mock`` plugin::\n\n pip install pytest pytest-mock nose\n\nThe tests require a running AllegroGraph server instance. The\nconfiguration of this server is passed to the tests through\nenvironment variables::\n\n # Host and port where the server can be reached. These values are the\n # default, it is only necessary to define the variables below if your\n # setup is different\n export AGRAPH_HOST=localhost\n export AGRAPH_PORT=10035\n\n # Tests will create repositories in this catalog.\n # It must exist on the server. Use \"/\" for the root catalog.\n export AGRAPH_CATALOG=tests\n\n # Login credentials for the AG server.\n # The user must have superuser privileges.\n export AGRAPH_USER=test\n\n # Use a prompt to read the password\n read -s -r -p \"Password for user ${AGRAPH_USER}: \" AGRAPH_PASSWORD\n export AGRAPH_PASSWORD\n\n\nTo run the tests, type::\n\n pytest --pyargs franz.openrdf.tests.tests --pyargs franz.openrdf.tests.newtests\n\nOptional requirements\n---------------------\nThe Python client can utilize a few additional third-party libraries\nif these are available on the host system:\n\n * pycurl: can be used as the HTTP backend. It might offer\n better performance than ``requests`` (the default backend).\n * simplejson: recommended for Python 2.6 users to significantly\n improve performance. Has negligible impact on other Python\n versions.\n\nThese can be downloaded and installed from PyPI_::\n\n pip install pycurl\n pip install simplejson\n\nSince the packages discussed here use native extensions, it is\nnecessary to have a proper development environment set up so that the\ncompilation may succeed. This environment must include:\n\n * A C compiler\n * Python development headers\n * libcurl development headers\n\nBelow we describe more detailed setup instructions for some of the\nsupported systems.\n\nWindows\n-------\nThe required packages are available in binary form for Windows, so it is not\nnecessary to install any compilers or headers.\n\nRHEL 6/7 and compatible systems\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\nOn RHEL-like systems the requirements mentioned above can be satisfied by\nfollowing these steps (note that root privileges are required):\n\n * Enable EPEL_ repositories, since some of the required packages\n are only available there. The detailed instructions can be\n found `here `_.\n On CentOS systems, simply run::\n\n yum -y install epel-release\n\n * Install the required packages::\n\n yum -y install python-devel python-pip libcurl-devel gcc\n\n * Before installing the AllegroGraph Python client make sure that the\n following environment variable is set::\n\n export PYCURL_SSL_LIBRARY=nss\n\n * To use virtual environments (recommended) an additional package\n is needed::\n\n yum -y install python-virtualenv\n\nUbuntu\n~~~~~~\nThe following packages are required to use the client with Python 2::\n\n apt-get install python-pip libcurl-gnutls libcurl4-gnutls-dev libgnutls28-dev\n\nFor Python 3 this becomes::\n\n apt-get install python3-pip libcurl-gnutls libcurl4-gnutls-dev libgnutls28-dev\n\n.. note:: *Using different SSL backends.*\n\n Ubuntu offers three variants of curl, built using different SSL\n libraries. These variants differ in their licensing and SSL related\n capabilities (see https://curl.haxx.se/docs/ssl-compared.html for\n more details). The instructions above use the GnuTLS version. In\n most cases this is an acceptable choice, but it is possible to use\n a different SSL implementation by installing appropriate packages\n before installing the AllegroGraph Python client.\n\n To use the OpenSSL backend in curl::\n\n apt-get install libcurl4-openssl-dev libssl-dev\n\n For GnuTLS::\n\n apt-get install libcurl4-gnutls-dev libgnutls28-dev\n\n For NSS::\n\n apt-get install libcurl4-nss-dev libnss3-dev\n\n Note that if the client has already been installed it is necessary\n to reinstall the ``pycurl`` package in order to switch SSL\n backends::\n\n # Uninstall old package\n pip uninstall pycurl\n\n # Reinstall, ignoring PIP cache (to force recompilation)\n pip install --no-cache-dir pycurl\n\nArch Linux\n~~~~~~~~~~\nOn Arch the following packages are needed to use the client with Python 2::\n\n pacman -S gcc python2 python2-pip libcurl\n\nFor Python 3 use::\n\n pacman -S gcc python python-pip libcurl\n\nTroubleshooting\n---------------\nIf you see an error similar to the following::\n\n ImportError: pycurl: libcurl link-time ssl backend (nss) is\n different from compile-time ssl backend (none/other)\n\nPerform this procedure (replacing `` with the actual version)::\n\n # Uninstall pycurl:\n pip uninstall pycurl\n\n # Set the required compile-time option for pycurl\n export PYCURL_SSL_LIBRARY=nss\n\n # Reinstall, but ignore cached packages (force recompile)\n pip install --no-cache-dir agraph--python-client.tar.gz\n\n.. _PyPI: https://pypi.python.org/\n.. _EPEL: https://fedoraproject.org/wiki/EPEL\n.. _virtualenv: https://virtualenv.pypa.io/\n\n\n.. |build-status| image:: https://img.shields.io/travis/franzinc/agraph-python.svg\n :alt: build status\n :scale: 100%\n :target: https://travis-ci.org/franzinc/agraph-python\n\n.. |conda-status| image:: https://img.shields.io/conda/v/franzinc/agraph-python.svg\n :alt: conda package\n :scale: 100%\n :target: https://anaconda.org/franzinc/agraph-python\n\n.. |pypi-status| image:: https://img.shields.io/pypi/v/agraph-python.svg\n :alt: PyPI package\n :scale: 100%\n :target: https://pypi.python.org/pypi/agraph-python\n\n.. |rtd-status| image:: https://img.shields.io/readthedocs/agraph-python.svg\n :alt: Docs\n :scale: 100%\n :target: https://agraph-python.readthedocs.io/en/latest/\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://franz.com/agraph/support/documentation/current/python-tutorial/python-API.html", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "agraph-python", "package_url": "https://pypi.org/project/agraph-python/", "platform": "", "project_url": "https://pypi.org/project/agraph-python/", "project_urls": { "Homepage": "http://franz.com/agraph/support/documentation/current/python-tutorial/python-API.html" }, "release_url": "https://pypi.org/project/agraph-python/101.0.2/", "requires_dist": [ "iso8601 (<1.0.0,>=0.1.12)", "six (>=1.10.0)", "future (<1.0,>=0.15.2)", "requests (<3.0,>=2.11.1)", "typing (==3.6.4)", "pycurl (<8.0,>=7.19.0); extra == 'curl'", "simplejson (>=2.0.9); extra == 'simplejson'" ], "requires_python": "", "summary": "AllegroGraph Python client", "version": "101.0.2" }, "last_serial": 5174429, "releases": { "100.0.0": [ { "comment_text": "", "digests": { "md5": "ddb85645cc42ca6b0e9b45c361f5b4dc", "sha256": "58d53837b385ddc843a3d07c0f160c730d008785f9ff06e0b9125489cd8a7f21" }, "downloads": -1, "filename": "agraph_python-100.0.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "ddb85645cc42ca6b0e9b45c361f5b4dc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 121076, "upload_time": "2017-08-04T18:19:06", "url": "https://files.pythonhosted.org/packages/14/55/5cb967aa994232873c71badd3c5cfa74b83b2e09befd423d16dcf0e93825/agraph_python-100.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d864b11c6cafdf65bdb486e801db4998", "sha256": "8cab0e6537f3f635933e23cdee46d62d1b5712128a440bda5fd1eaefcc1646c3" }, "downloads": -1, "filename": "agraph-python-100.0.0.tar.gz", "has_sig": true, "md5_digest": "d864b11c6cafdf65bdb486e801db4998", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1618128, "upload_time": "2017-08-04T18:19:09", "url": "https://files.pythonhosted.org/packages/4a/8e/572bfeaccd31b2c41c04cbc6e18cac50b6331b902bd6ad0e3e897530f028/agraph-python-100.0.0.tar.gz" } ], "100.0.1": [ { "comment_text": "", "digests": { "md5": "b9e435698769edde81572218604c8d6b", "sha256": "eab66b39f562639c1bc3ac1c9ed4604d808ee9dfded3229a51c4b377b3a5aacd" }, "downloads": -1, "filename": "agraph_python-100.0.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "b9e435698769edde81572218604c8d6b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 123593, "upload_time": "2017-09-18T19:39:42", "url": "https://files.pythonhosted.org/packages/94/93/ad88307334107b30b20c6dacf560a27d0b2ec01012189d5d7a3cffb12026/agraph_python-100.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "05cb069a8fbc30b64c174c9729c53ad7", "sha256": "0deb46277329dbdc05acd39e515169e46e8ca5799982ac1585930cdabed5ab16" }, "downloads": -1, "filename": "agraph-python-100.0.1.tar.gz", "has_sig": true, "md5_digest": "05cb069a8fbc30b64c174c9729c53ad7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1725002, "upload_time": "2017-09-18T19:39:45", "url": "https://files.pythonhosted.org/packages/96/69/f22fcb472f9dfd601bb84131c9774c53d696cbb0677622d45376d4f22dba/agraph-python-100.0.1.tar.gz" } ], "100.0.2": [ { "comment_text": "", "digests": { "md5": "f09dcc3b5b012ba421db5bf0b9d014f8", "sha256": "ea131fd3aac53b47bbb5fda5dcc34e19adc41c02be9313c98a185f4a7e9900dc" }, "downloads": -1, "filename": "agraph_python-100.0.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "f09dcc3b5b012ba421db5bf0b9d014f8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 132738, "upload_time": "2017-12-22T18:21:35", "url": "https://files.pythonhosted.org/packages/13/93/cba724f5386340219f0d8ef5f872531f912e4c94db094717d27aa5548761/agraph_python-100.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "50ede99891047dc83cdc035428216604", "sha256": "ee996cb3a59f751ef5814e903d90d9627b93409add98d808ec7e321572075b96" }, "downloads": -1, "filename": "agraph-python-100.0.2.tar.gz", "has_sig": true, "md5_digest": "50ede99891047dc83cdc035428216604", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 256220, "upload_time": "2017-12-22T18:21:37", "url": "https://files.pythonhosted.org/packages/88/8e/f5e83a07ed2a93f833e133021cdd707dee0dbd6094135d4ebea864d3a322/agraph-python-100.0.2.tar.gz" } ], "100.0.3": [ { "comment_text": "", "digests": { "md5": "7c9d9da5165ef2f8be21d3ee1f4207f4", "sha256": "3a0d1b635fc1c4ae9bbc37c31744ba7e71fffde0778eae2bf7d4ee595e7bad78" }, "downloads": -1, "filename": "agraph_python-100.0.3-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "7c9d9da5165ef2f8be21d3ee1f4207f4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 158968, "upload_time": "2018-01-31T17:56:11", "url": "https://files.pythonhosted.org/packages/c6/87/7067c9eeb7dfbb77bee79344b148711b21edb622e45ab2b0533f836cc77f/agraph_python-100.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "02686de273fe87fe35a37d5133765c52", "sha256": "34e061f5b7e6893611d0f2a1068ae455c163dc088dce7ddd644ea81c04435a0f" }, "downloads": -1, "filename": "agraph-python-100.0.3.tar.gz", "has_sig": true, "md5_digest": "02686de273fe87fe35a37d5133765c52", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 137680, "upload_time": "2018-01-31T17:56:13", "url": "https://files.pythonhosted.org/packages/6e/ff/41cb5eef36a7aff75433f1c139f9efb7cc4f87686e83eced41a07be2bf53/agraph-python-100.0.3.tar.gz" } ], "100.0.4": [ { "comment_text": "", "digests": { "md5": "330250fd14622370c101301e89f42ce1", "sha256": "34a83e2265eba76ecb84c4fd844c484b8273b51de1b1df74a29dfe4b6fcdfe4f" }, "downloads": -1, "filename": "agraph_python-100.0.4-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "330250fd14622370c101301e89f42ce1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 158961, "upload_time": "2018-02-05T19:16:44", "url": "https://files.pythonhosted.org/packages/59/1e/e2c997e1d5ebfaad7f8e2a6c373b7c1b99200e02bdae40edbdaabb9ef6c0/agraph_python-100.0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "36a1f856cbd572d24acb96406b681b69", "sha256": "fa9fded1592f218f0bfd72c1098b6125e7a356de9ed1d5382148acc8a383952a" }, "downloads": -1, "filename": "agraph-python-100.0.4.tar.gz", "has_sig": true, "md5_digest": "36a1f856cbd572d24acb96406b681b69", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 137834, "upload_time": "2018-02-05T19:16:46", "url": "https://files.pythonhosted.org/packages/9b/e8/ceac45cdf6b6d73e7ef3b5e81835719996628e287653b54eacf9b59fcefa/agraph-python-100.0.4.tar.gz" } ], "100.1.0": [ { "comment_text": "", "digests": { "md5": "b5d5a7e18e8e4c94cff6d4bd5795017c", "sha256": "bf99ebfc237de84716061a3f7fb56d22399ebadfe1a949812dd95f2b585e69a1" }, "downloads": -1, "filename": "agraph_python-100.1.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "b5d5a7e18e8e4c94cff6d4bd5795017c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 141748, "upload_time": "2018-04-27T20:48:24", "url": "https://files.pythonhosted.org/packages/70/7a/b7a8d84445592c3296280ab7574703012aa58099995cd289480e5e762ab2/agraph_python-100.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "12666305161c1b9c4bc7d4e536011458", "sha256": "e4ca99b483b99347b78c5702086252d7f7f051c56902b58db516726f15ddb30e" }, "downloads": -1, "filename": "agraph-python-100.1.0.tar.gz", "has_sig": true, "md5_digest": "12666305161c1b9c4bc7d4e536011458", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 120031, "upload_time": "2018-04-27T20:48:26", "url": "https://files.pythonhosted.org/packages/ed/6f/33d5386636501665f3e4ab2dffdbf5d1e6b124024efb6a0ca4194c53049e/agraph-python-100.1.0.tar.gz" } ], "100.1.1": [ { "comment_text": "", "digests": { "md5": "3d3bffe2a755519962d616fc07a472ac", "sha256": "aec8b486e4b5fb7c938bed9e9471c68b3e0e4347d3bf46d810ef3f65fd21de2c" }, "downloads": -1, "filename": "agraph_python-100.1.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "3d3bffe2a755519962d616fc07a472ac", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 141773, "upload_time": "2018-04-27T21:24:09", "url": "https://files.pythonhosted.org/packages/b8/c5/3e31943516535913f6c5a2791325b92248efb449a8eccce1b84cae1538cf/agraph_python-100.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5ec9fad07b0800d071c8a0b6a953db21", "sha256": "3ec8951e08f90025e0538f04f745743259caf4aa8386c910f724eee0ac3ed31b" }, "downloads": -1, "filename": "agraph-python-100.1.1.tar.gz", "has_sig": true, "md5_digest": "5ec9fad07b0800d071c8a0b6a953db21", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 120067, "upload_time": "2018-04-27T21:24:11", "url": "https://files.pythonhosted.org/packages/0d/d8/a4a0bf71c2126bc6fa0fb13b88f0795c8832e73922d464a7bab889b83b7f/agraph-python-100.1.1.tar.gz" } ], "100.2.0": [ { "comment_text": "", "digests": { "md5": "fefa4fe3e22044b44f24d4b8bf1e75cd", "sha256": "759f911422817b448e1cb7ecdef3bb424eab7719f031ef3709aab533d8b85b53" }, "downloads": -1, "filename": "agraph_python-100.2.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "fefa4fe3e22044b44f24d4b8bf1e75cd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 142711, "upload_time": "2018-06-08T17:04:05", "url": "https://files.pythonhosted.org/packages/22/0f/c3d07f905460f4359919af5f237eb1cd2b14f95b69c5c35a9d3af96c5fd7/agraph_python-100.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1d49157c62e248bae24d7fec0188ffc9", "sha256": "5054da3aaf2e863ac170eb65acd8f2adbb909cb8d36ce5fa9eefb01e819dfd5a" }, "downloads": -1, "filename": "agraph-python-100.2.0.tar.gz", "has_sig": true, "md5_digest": "1d49157c62e248bae24d7fec0188ffc9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 120901, "upload_time": "2018-06-08T17:04:06", "url": "https://files.pythonhosted.org/packages/8b/f4/b2c92812018bc501c91957bf34f7be9aafe71a465d2e7853b969181c00c7/agraph-python-100.2.0.tar.gz" } ], "101.0.0": [ { "comment_text": "", "digests": { "md5": "cc1e3b72c70c050ce59c0fd27bd2f37d", "sha256": "c02f5fa5452d3699476ad16d11d8d6b9074cf38ad9e08a86ae3057c231a64ec1" }, "downloads": -1, "filename": "agraph_python-101.0.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "cc1e3b72c70c050ce59c0fd27bd2f37d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 178487, "upload_time": "2018-11-27T23:31:13", "url": "https://files.pythonhosted.org/packages/a4/c8/52650e125ab4414b30c40fad9818855f5fdfda44380a83fc736ebc6f43db/agraph_python-101.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ad379eebd92fd738883e70f1abd9b9a4", "sha256": "f1abc496deadd214cffdd4335048061a8b97eb94e79288604d5e7935677b6c23" }, "downloads": -1, "filename": "agraph-python-101.0.0.tar.gz", "has_sig": true, "md5_digest": "ad379eebd92fd738883e70f1abd9b9a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 157807, "upload_time": "2018-11-27T23:31:15", "url": "https://files.pythonhosted.org/packages/f3/4e/cf49aef8aedde7c5e9c7f41af10a40701850e6ef5c79fb7979594b51a351/agraph-python-101.0.0.tar.gz" } ], "101.0.1": [ { "comment_text": "", "digests": { "md5": "c9262c0553b57e3bc4a8fc1961967276", "sha256": "751a017e0249e8534b2ca84aa5793a756ea2d719e6c24a3ae195b596ba7f9f57" }, "downloads": -1, "filename": "agraph_python-101.0.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "c9262c0553b57e3bc4a8fc1961967276", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 182556, "upload_time": "2019-03-01T22:06:27", "url": "https://files.pythonhosted.org/packages/08/f5/82bceeb4684a7684dea73d7231ee751b16f63298c5c46302f8652ca72862/agraph_python-101.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "29ce12ac4d6643e6d5410ed3602c94a7", "sha256": "94af106d913824c8968c556fa8f126e835c2efdca9b6f77c5bac845c4f496856" }, "downloads": -1, "filename": "agraph-python-101.0.1.tar.gz", "has_sig": true, "md5_digest": "29ce12ac4d6643e6d5410ed3602c94a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 166048, "upload_time": "2019-03-01T22:06:29", "url": "https://files.pythonhosted.org/packages/d0/69/9e349978c0e7fe991a5178cc277db78bc498a090b58c03654a9c37e01722/agraph-python-101.0.1.tar.gz" } ], "101.0.2": [ { "comment_text": "", "digests": { "md5": "44d487a98cbb9034e2732757015b0e45", "sha256": "26e2c997077c68c77029937aad8917b405f93fc6c714a97e849d3cb35b8168b2" }, "downloads": -1, "filename": "agraph_python-101.0.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "44d487a98cbb9034e2732757015b0e45", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 182929, "upload_time": "2019-04-22T20:19:46", "url": "https://files.pythonhosted.org/packages/76/c9/46535b495c9f9a2293b601b51669b451904e0365b26ff2e6ba9b6124ecb8/agraph_python-101.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2e4dec81f7ed6941dc1616a92638eca5", "sha256": "80575dca290ca021e3580b0d3bed6c9e8beb0978904bd0bffdb3adcbf398df84" }, "downloads": -1, "filename": "agraph-python-101.0.2.tar.gz", "has_sig": true, "md5_digest": "2e4dec81f7ed6941dc1616a92638eca5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 166095, "upload_time": "2019-04-22T20:19:48", "url": "https://files.pythonhosted.org/packages/ee/01/76890849bac365aacd7ce37e1121f05e74fb9f9e851abf7e314de3847e93/agraph-python-101.0.2.tar.gz" } ], "6.1.4": [ { "comment_text": "", "digests": { "md5": "a19c2f9a5d9b3e6147051047832e35bb", "sha256": "fb977ca8d03b7bc732592a8a154786acc78a90ed9e13e68e059ff1e3cf2e89b8" }, "downloads": -1, "filename": "agraph_python-6.1.4-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "a19c2f9a5d9b3e6147051047832e35bb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 106492, "upload_time": "2016-12-16T16:30:39", "url": "https://files.pythonhosted.org/packages/e4/c3/4331a3bb62e78ebdea392503a3b4ed57141145a1d97eb9addd4c5e449f4a/agraph_python-6.1.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "37467f6bf255e18cf27aa6e7376e227c", "sha256": "083cac4baa044b76c6054a4508d6ff45a379063a1157caa7b439890b6cc73e12" }, "downloads": -1, "filename": "agraph-python-6.1.4.tar.gz", "has_sig": true, "md5_digest": "37467f6bf255e18cf27aa6e7376e227c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 209364, "upload_time": "2016-12-16T17:59:18", "url": "https://files.pythonhosted.org/packages/64/38/86514dba65170762c8f78d3970f3ae4dcc7f15df89eae8d9e81c77117422/agraph-python-6.1.4.tar.gz" } ], "6.1.4rc1": [], "6.1.4rc4": [ { "comment_text": "", "digests": { "md5": "f14171a5b3324864713f5cfca600d5df", "sha256": "66d514980d562bb9ea01fdaeeb9b67c79179b69e5056766f4b2aaac5be132e16" }, "downloads": -1, "filename": "agraph_python-6.1.4rc4-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "f14171a5b3324864713f5cfca600d5df", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 105847, "upload_time": "2016-12-05T16:54:57", "url": "https://files.pythonhosted.org/packages/2d/4d/9101fea611158bec4bca9bece44dc6978769db5e63bbcd751cf5f6e5b255/agraph_python-6.1.4rc4-py2.py3-none-any.whl" } ], "6.1.5": [ { "comment_text": "", "digests": { "md5": "c3cf2249c0b07504a9043a324a727b1e", "sha256": "b5118c1d1e4370ead374439b6c7a219f5efcf221403b1b367603d789a7a83f08" }, "downloads": -1, "filename": "agraph_python-6.1.5-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "c3cf2249c0b07504a9043a324a727b1e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 107806, "upload_time": "2017-01-11T00:06:26", "url": "https://files.pythonhosted.org/packages/d7/f0/4cc15069793d35d8e6a56a605d12c683ab7000d8204e004c07182a265632/agraph_python-6.1.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "104d77e7b10311b4589491636bc9948e", "sha256": "fd846fcbb9d9ba205d3923cdbdb2dc22771a25c0a1680ba59d616bda2880017e" }, "downloads": -1, "filename": "agraph-python-6.1.5.tar.gz", "has_sig": true, "md5_digest": "104d77e7b10311b4589491636bc9948e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 116514, "upload_time": "2017-01-11T00:06:28", "url": "https://files.pythonhosted.org/packages/dc/41/a05b9fabe692525c7769b85cc5d8a6d65f6a5ee7919db60e148e9a63c1f4/agraph-python-6.1.5.tar.gz" } ], "6.1.6": [ { "comment_text": "", "digests": { "md5": "08a774ec47015e9fc04cc1101f99fbce", "sha256": "e278f76dd2af9bb0bdc4851a970d4dcf5237f806a1c7690bb93d07dd13bb5465" }, "downloads": -1, "filename": "agraph_python-6.1.6-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "08a774ec47015e9fc04cc1101f99fbce", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 109853, "upload_time": "2017-02-17T00:40:12", "url": "https://files.pythonhosted.org/packages/9e/9d/f54582a91120918e9ed68c85b83dd5e69875a3c109fdbbf83883c50072bb/agraph_python-6.1.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a813f77d1e15430e54c0f5b28466214f", "sha256": "68461719841a685fbfa6f62be26dbe4e5340752ddba25b001d17258b5eda8498" }, "downloads": -1, "filename": "agraph-python-6.1.6.tar.gz", "has_sig": true, "md5_digest": "a813f77d1e15430e54c0f5b28466214f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 118178, "upload_time": "2017-02-17T00:40:15", "url": "https://files.pythonhosted.org/packages/08/c5/b73e00091410b6f97fe54de8c72b128c728e7ab6a6901d9fb367e2822abb/agraph-python-6.1.6.tar.gz" } ], "6.2.0": [ { "comment_text": "", "digests": { "md5": "37a4b0d522f5fe66460f83d7fe32264d", "sha256": "19e28b79df92ea7cc8f25d00ab36101dbe684b7fd57fa64a2be66a8aefbca0e2" }, "downloads": -1, "filename": "agraph_python-6.2.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "37a4b0d522f5fe66460f83d7fe32264d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 113002, "upload_time": "2017-02-17T00:46:15", "url": "https://files.pythonhosted.org/packages/15/1b/3217c03fdee218943ebfdc093da78a7fd816e8b08450dfc3536a13abf108/agraph_python-6.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d4f2e9dbcfd71794d10d2d79f68659fd", "sha256": "9446c958244d45b6195d6b359ce7bf2884f253456a57d8c8088d48a731833d45" }, "downloads": -1, "filename": "agraph-python-6.2.0.tar.gz", "has_sig": true, "md5_digest": "d4f2e9dbcfd71794d10d2d79f68659fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 120596, "upload_time": "2017-02-17T00:46:18", "url": "https://files.pythonhosted.org/packages/cd/5f/fdf57a8747925acea2c030e9d495056d5796802c4998b8e2d31055d4122b/agraph-python-6.2.0.tar.gz" } ], "6.2.1": [ { "comment_text": "", "digests": { "md5": "37c09e7295520b11afcfb4317a5160e4", "sha256": "15bcf53f953d5103c4f423946c836c42fe7c0d0dd6d24cb8f20a8525aa74e8a6" }, "downloads": -1, "filename": "agraph_python-6.2.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "37c09e7295520b11afcfb4317a5160e4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 120134, "upload_time": "2017-03-17T15:39:47", "url": "https://files.pythonhosted.org/packages/67/69/4348c97de30cf1a1ad8821f2658e64979971251f26a945516f8793ed581a/agraph_python-6.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ea2d0196baec8f23966e164c153d6315", "sha256": "33f35329604ae73eda75cb78d598e06b808bcb969ef3c235c5a1af69c3a0fbca" }, "downloads": -1, "filename": "agraph-python-6.2.1.tar.gz", "has_sig": true, "md5_digest": "ea2d0196baec8f23966e164c153d6315", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 126990, "upload_time": "2017-03-17T15:39:50", "url": "https://files.pythonhosted.org/packages/86/13/a804abbf87b2860fcda16a2ccd6bac2e657daccd0cf345d7384ed0f177b5/agraph-python-6.2.1.tar.gz" } ], "6.2.1.0.1": [ { "comment_text": "", "digests": { "md5": "d0febf128c7372f2f31e6624712805e8", "sha256": "ab92726c3f997b10737f183ab59d2b213d8ae39b230f4d033b4f5cf86705adb4" }, "downloads": -1, "filename": "agraph_python-6.2.1.0.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "d0febf128c7372f2f31e6624712805e8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 120195, "upload_time": "2017-03-18T00:28:34", "url": "https://files.pythonhosted.org/packages/f8/e8/295dd77d0ffde277cc5d01ddbf9dd51bdcd2a5b93bdfc484b602736c617e/agraph_python-6.2.1.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e178720338fdddeccecde5ca1bcccc55", "sha256": "e3874ae3daa79251c3d58a2345e0079f57eca6ac2bd02e42b83e32210ebd8476" }, "downloads": -1, "filename": "agraph-python-6.2.1.0.1.tar.gz", "has_sig": true, "md5_digest": "e178720338fdddeccecde5ca1bcccc55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 126543, "upload_time": "2017-03-18T00:28:36", "url": "https://files.pythonhosted.org/packages/61/58/ce10c8756377dd7686184d166ac4416516eb5dd3f4774edfa51c7228ddbd/agraph-python-6.2.1.0.1.tar.gz" } ], "6.2.1.0.2": [ { "comment_text": "", "digests": { "md5": "7b2d065805efa78b6ff049ae31de2b55", "sha256": "d751a3cbe08d9144a6007ed64854902f0609e12c0a0df7cc14a89d002b2fec80" }, "downloads": -1, "filename": "agraph_python-6.2.1.0.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "7b2d065805efa78b6ff049ae31de2b55", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 120288, "upload_time": "2017-03-23T15:31:23", "url": "https://files.pythonhosted.org/packages/1b/92/22ea0cfd474c24adc4e15285f6fc02f9207df159e6dcc9992a129c41e6c5/agraph_python-6.2.1.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1d58d32126331065defb854276738196", "sha256": "0dfe1980084462a019eea7cde13c34d68b850fa4c9c000216d50e65d1ce1fa4d" }, "downloads": -1, "filename": "agraph-python-6.2.1.0.2.tar.gz", "has_sig": true, "md5_digest": "1d58d32126331065defb854276738196", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 126641, "upload_time": "2017-03-23T15:31:25", "url": "https://files.pythonhosted.org/packages/7f/41/76cc3fe728bc9a4cea393063b974cc43c53c12c5ad7e2e8dfa14778c7c65/agraph-python-6.2.1.0.2.tar.gz" } ], "6.2.1.0.3": [ { "comment_text": "", "digests": { "md5": "9527eab8720bdc312f495bd977acef60", "sha256": "abb04f29d7fa31cfeb0cf13ebbd335fd26aa6ab07620033ba8c62a35396a064f" }, "downloads": -1, "filename": "agraph_python-6.2.1.0.3-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "9527eab8720bdc312f495bd977acef60", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 120287, "upload_time": "2017-03-24T20:25:25", "url": "https://files.pythonhosted.org/packages/3e/80/3524638ca6a6213801514850c2c2cdb3e755240bef969d8964ad0997714a/agraph_python-6.2.1.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "685e41b3841e0268a4f83516d2dbf63d", "sha256": "9ed44809f9f1f2defe27ff280f9488973c86be60db356a91966f893f52af092a" }, "downloads": -1, "filename": "agraph-python-6.2.1.0.3.tar.gz", "has_sig": true, "md5_digest": "685e41b3841e0268a4f83516d2dbf63d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 126630, "upload_time": "2017-03-24T20:25:28", "url": "https://files.pythonhosted.org/packages/0b/d5/f9a49792a69f3ddee9d7a5ad730f94d444cf67eb1dd8feaaaf75837a50dc/agraph-python-6.2.1.0.3.tar.gz" } ], "6.2.1.0.4": [ { "comment_text": "", "digests": { "md5": "f2e809664494c45312275d9e9abd5860", "sha256": "6c5115e2526fba110f362ad1fe4eb6ecddf0b73b302841dab6fa32c8c102326d" }, "downloads": -1, "filename": "agraph_python-6.2.1.0.4-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "f2e809664494c45312275d9e9abd5860", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 120474, "upload_time": "2017-05-17T20:45:39", "url": "https://files.pythonhosted.org/packages/c8/a7/88a3307128822ee792b6f1896a41148e6610913ea5787bc01aa2aa965ae4/agraph_python-6.2.1.0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ea07c1fd44087ffc70c37c73e5a54898", "sha256": "e0ae031574d77bd32fc429374ddecf523cd56fbd542fdbf5276c2828970ee39c" }, "downloads": -1, "filename": "agraph-python-6.2.1.0.4.tar.gz", "has_sig": true, "md5_digest": "ea07c1fd44087ffc70c37c73e5a54898", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 230798, "upload_time": "2017-05-17T20:45:42", "url": "https://files.pythonhosted.org/packages/1e/d6/5cbed020c4c8866187ea6bef12c0b9d1b5000662e353379bdce19c2eb692/agraph-python-6.2.1.0.4.tar.gz" } ], "6.2.2.0.1": [ { "comment_text": "", "digests": { "md5": "36f295632c9ce1b22986c934082b6741", "sha256": "345adbd3ec8ee3cd004c186cb939cbae30a1a6d4b1d4504f195bec23bd5c8d97" }, "downloads": -1, "filename": "agraph_python-6.2.2.0.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "36f295632c9ce1b22986c934082b6741", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 120477, "upload_time": "2017-06-01T18:23:43", "url": "https://files.pythonhosted.org/packages/3b/40/04ca9dafcd95447795524231866782f79a1342bb97665eb5dc53800fc459/agraph_python-6.2.2.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2c666b7521d1c9f575d7bcc5eb9d7c09", "sha256": "d7e96496fcc2439e086dd29b4d146798d9db4b12e1d352f54958574e0c679f07" }, "downloads": -1, "filename": "agraph-python-6.2.2.0.1.tar.gz", "has_sig": true, "md5_digest": "2c666b7521d1c9f575d7bcc5eb9d7c09", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 127272, "upload_time": "2017-06-01T18:23:45", "url": "https://files.pythonhosted.org/packages/69/c0/f576fe8bd2b4d673c9f2cb71dac9bc42ade0dcfc0c52e51b08826e069bc6/agraph-python-6.2.2.0.1.tar.gz" } ], "6.2.2.0.2": [ { "comment_text": "", "digests": { "md5": "e24daf1e865b9dae0f1daa05642b6be6", "sha256": "48395989e4bb0bf09d5af2434ae57d9c0b61871c9a86f4fae1d0fa667e16572d" }, "downloads": -1, "filename": "agraph_python-6.2.2.0.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "e24daf1e865b9dae0f1daa05642b6be6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 120478, "upload_time": "2017-06-07T19:56:48", "url": "https://files.pythonhosted.org/packages/87/97/223f9029fd2911bbef1d40a49b9406448000bd9af9b628419ef6b466c473/agraph_python-6.2.2.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "58cc1df3a115e0c94c5bcb7ac6b46798", "sha256": "e820e73d450d7bec1aed928a68752dc964f8dc9f8faa1c75cc199228db616364" }, "downloads": -1, "filename": "agraph-python-6.2.2.0.2.tar.gz", "has_sig": true, "md5_digest": "58cc1df3a115e0c94c5bcb7ac6b46798", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 229549, "upload_time": "2017-06-07T19:56:51", "url": "https://files.pythonhosted.org/packages/6d/7f/62273cd13a8454f0e30ef49bb41d1c4b5b99200854678df34210fdf297f2/agraph-python-6.2.2.0.2.tar.gz" } ], "6.2.2.0.3": [ { "comment_text": "", "digests": { "md5": "7d7c58546485a89ae3d43645d9abea23", "sha256": "1d522b5cc6d215c549d2fb4a37bbb3c3ca5a0e40a052d070ca11f14ca4255520" }, "downloads": -1, "filename": "agraph_python-6.2.2.0.3-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "7d7c58546485a89ae3d43645d9abea23", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 120479, "upload_time": "2017-06-09T18:58:36", "url": "https://files.pythonhosted.org/packages/26/d3/aaedcb7b81f0abdc2d1f670ef3f0ca1391744d66dd195f76728b65638b0d/agraph_python-6.2.2.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a05e2f450facad17a41421508cec65bc", "sha256": "7978f16bd01537eec8763cb974c884681bba34333b7119c2b0a40110f5061568" }, "downloads": -1, "filename": "agraph-python-6.2.2.0.3.tar.gz", "has_sig": true, "md5_digest": "a05e2f450facad17a41421508cec65bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 126736, "upload_time": "2017-06-09T18:58:39", "url": "https://files.pythonhosted.org/packages/e5/fe/8e371e0de91e38117a32efbf6df14438717e92216d8cc24983e569c215b0/agraph-python-6.2.2.0.3.tar.gz" } ], "6.2.2.0.4": [ { "comment_text": "", "digests": { "md5": "0e3dfefe75ab72d19f1b80010c9653e4", "sha256": "c314b12480c259bb53ceb74270ec8cb4f856802ce5588bf854b3ce626695fdc7" }, "downloads": -1, "filename": "agraph_python-6.2.2.0.4-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "0e3dfefe75ab72d19f1b80010c9653e4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 120481, "upload_time": "2017-06-20T15:45:16", "url": "https://files.pythonhosted.org/packages/87/1d/8953c6babdeb53dc118917a48521068a769949cd14ed4992cca8ab28d373/agraph_python-6.2.2.0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e05f844fcb456de60a9e972aa791e56c", "sha256": "e855ba08d2e350bad9b1011ef107c1ee228a0926b0b6de0140870fc0159a2d20" }, "downloads": -1, "filename": "agraph-python-6.2.2.0.4.tar.gz", "has_sig": true, "md5_digest": "e05f844fcb456de60a9e972aa791e56c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 126758, "upload_time": "2017-06-20T15:45:18", "url": "https://files.pythonhosted.org/packages/fc/d3/ad3e08324b0b50fbe8a2f5d560e1f7b8b76ed7bf7c61b5df203d4cc30a04/agraph-python-6.2.2.0.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "44d487a98cbb9034e2732757015b0e45", "sha256": "26e2c997077c68c77029937aad8917b405f93fc6c714a97e849d3cb35b8168b2" }, "downloads": -1, "filename": "agraph_python-101.0.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "44d487a98cbb9034e2732757015b0e45", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 182929, "upload_time": "2019-04-22T20:19:46", "url": "https://files.pythonhosted.org/packages/76/c9/46535b495c9f9a2293b601b51669b451904e0365b26ff2e6ba9b6124ecb8/agraph_python-101.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2e4dec81f7ed6941dc1616a92638eca5", "sha256": "80575dca290ca021e3580b0d3bed6c9e8beb0978904bd0bffdb3adcbf398df84" }, "downloads": -1, "filename": "agraph-python-101.0.2.tar.gz", "has_sig": true, "md5_digest": "2e4dec81f7ed6941dc1616a92638eca5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 166095, "upload_time": "2019-04-22T20:19:48", "url": "https://files.pythonhosted.org/packages/ee/01/76890849bac365aacd7ce37e1121f05e74fb9f9e851abf7e314de3847e93/agraph-python-101.0.2.tar.gz" } ] }