{ "info": { "author": "Ronald Oussoren", "author_email": "ronaldoussoren@mac.com", "bugtrack_url": null, "classifiers": [ "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.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Scientific/Engineering :: Mathematics", "Topic :: Scientific/Engineering :: Visualization", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "altgraph is a fork of graphlib: a graph (network) package for constructing\ngraphs, BFS and DFS traversals, topological sort, shortest paths, etc. with\ngraphviz output.\n\naltgraph includes some additional usage of Python 2.6+ features and\nenhancements related to modulegraph and macholib.\n\nProject links\n-------------\n\n* `Documentation `_\n\n* `Issue Tracker `_\n\n* `Repository `_\n\n\nRelease history\n===============\n\n0.16.1\n------\n\nExplicitly mark Python 3.7 as supported in wheel metadata.\n\n0.16\n----\n\n* Add LICENSE file\n\n0.15\n----\n\n* ``ObjectGraph.get_edges``, ``ObjectGraph.getEdgeData`` and ``ObjectGraph.updateEdgeData``\n accept *None* as the node to get and treat this as an alias for *self* (as other\n methods already did).\n\n0.14\n----\n\n- Issue #7: Remove use of ``iteritems`` in altgraph.GraphAlgo code\n\n0.13\n----\n\n- Issue #4: Graph._bfs_subgraph and back_bfs_subgraph return subgraphs with reversed edges\n\n Fix by \"pombredanne\" on bitbucket.\n\n\n0.12\n----\n\n- Added ``ObjectGraph.edgeData`` to retrieve the edge data\n from a specific edge.\n\n- Added ``AltGraph.update_edge_data`` and ``ObjectGraph.updateEdgeData``\n to update the data associated with a graph edge.\n\n0.11\n----\n\n- Stabilize the order of elements in dot file exports,\n patch from bitbucket user 'pombredanne'.\n\n- Tweak setup.py file to remove dependency on distribute (but\n keep the dependency on setuptools)\n\n\n0.10.2\n------\n\n- There where no classifiers in the package metadata due to a bug\n in setup.py\n\n0.10.1\n------\n\nThis is a bugfix release\n\nBug fixes:\n\n- Issue #3: The source archive contains a README.txt\n while the setup file refers to ReadMe.txt.\n\n This is caused by a misfeature in distutils, as a\n workaround I've renamed ReadMe.txt to README.txt\n in the source tree and setup file.\n\n\n0.10\n-----\n\nThis is a minor feature release\n\nFeatures:\n\n- Do not use \"2to3\" to support Python 3.\n\n As a side effect of this altgraph now supports\n Python 2.6 and later, and no longer supports\n earlier releases of Python.\n\n- The order of attributes in the Dot output\n is now always alphabetical.\n\n With this change the output will be consistent\n between runs and Python versions.\n\n0.9\n---\n\nThis is a minor bugfix release\n\nFeatures:\n\n- Added ``altgraph.ObjectGraph.ObjectGraph.nodes``, a method\n yielding all nodes in an object graph.\n\nBugfixes:\n\n- The 0.8 release didn't work with py2app when using\n python 3.x.\n\n\n0.8\n-----\n\nThis is a minor feature release. The major new feature\nis a extensive set of unittests, which explains almost\nall other changes in this release.\n\nBugfixes:\n\n- Installing failed with Python 2.5 due to using a distutils\n class that isn't available in that version of Python\n (issue #1 on the issue tracker)\n\n- ``altgraph.GraphStat.degree_dist`` now actually works\n\n- ``altgraph.Graph.add_edge(a, b, create_nodes=False)`` will\n no longer create the edge when one of the nodes doesn't\n exist.\n\n- ``altgraph.Graph.forw_topo_sort`` failed for some sparse graphs.\n\n- ``altgraph.Graph.back_topo_sort`` was completely broken in\n previous releases.\n\n- ``altgraph.Graph.forw_bfs_subgraph`` now actually works.\n\n- ``altgraph.Graph.back_bfs_subgraph`` now actually works.\n\n- ``altgraph.Graph.iterdfs`` now returns the correct result\n when the ``forward`` argument is ``False``.\n\n- ``altgraph.Graph.iterdata`` now returns the correct result\n when the ``forward`` argument is ``False``.\n\n\nFeatures:\n\n- The ``altgraph.Graph`` constructor now accepts an argument\n that contains 2- and 3-tuples instead of requireing that\n all items have the same size. The (optional) argument can now\n also be any iterator.\n\n- ``altgraph.Graph.Graph.add_node`` has no effect when you\n add a hidden node.\n\n- The private method ``altgraph.Graph._bfs`` is no longer\n present.\n\n- The private method ``altgraph.Graph._dfs`` is no longer\n present.\n\n- ``altgraph.ObjectGraph`` now has a ``__contains__`` methods,\n which means you can use the ``in`` operator to check if a\n node is part of a graph.\n\n- ``altgraph.GraphUtil.generate_random_graph`` will raise\n ``GraphError`` instead of looping forever when it is\n impossible to create the requested graph.\n\n- ``altgraph.Dot.edge_style`` raises ``GraphError`` when\n one of the nodes is not present in the graph. The method\n silently added the tail in the past, but without ensuring\n a consistent graph state.\n\n- ``altgraph.Dot.save_img`` now works when the mode is\n ``\"neato\"``.\n\n0.7.2\n-----\n\nThis is a minor bugfix release\n\nBugfixes:\n\n- distutils didn't include the documentation subtree\n\n0.7.1\n-----\n\nThis is a minor feature release\n\nFeatures:\n\n- Documentation is now generated using `sphinx `_\n and can be viewed at .\n\n- The repository has moved to bitbucket\n\n- ``altgraph.GraphStat.avg_hops`` is no longer present, the function had no\n implementation and no specified behaviour.\n\n- the module ``altgraph.compat`` is gone, which means altgraph will no\n longer work with Python 2.3.\n\n\n0.7.0\n-----\n\nThis is a minor feature release.\n\nFeatures:\n\n- Support for Python 3\n\n- It is now possible to run tests using 'python setup.py test'\n\n (The actual testsuite is still very minimal though)\n\n\n", "description_content_type": "text/x-rst; charset=UTF-8", "docs_url": "https://pythonhosted.org/altgraph/", "download_url": "http://pypi.python.org/pypi/altgraph", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://altgraph.readthedocs.io", "keywords": "graph", "license": "MIT", "maintainer": "Ronald Oussoren", "maintainer_email": "ronaldoussoren@mac.com", "name": "altgraph", "package_url": "https://pypi.org/project/altgraph/", "platform": "any", "project_url": "https://pypi.org/project/altgraph/", "project_urls": { "Documentation": "https://altgraph.readthedocs.io/en/latest/", "Download": "http://pypi.python.org/pypi/altgraph", "Homepage": "https://altgraph.readthedocs.io", "Issue tracker": "https://bitbucket.org/ronaldoussoren/altgraph/issues?status=new&status=open" }, "release_url": "https://pypi.org/project/altgraph/0.16.1/", "requires_dist": null, "requires_python": "", "summary": "Python graph (network) package", "version": "0.16.1" }, "last_serial": 4107674, "releases": { "0.10": [ { "comment_text": "", "digests": { "md5": "2df65572ec8529a9f2620c920ff61be8", "sha256": "7b6e568573ee242eba6b6b3c0fbe7ff97677b91ee9ab675bf60b6d11fe09c5e9" }, "downloads": -1, "filename": "altgraph-0.10.tar.gz", "has_sig": false, "md5_digest": "2df65572ec8529a9f2620c920ff61be8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 464388, "upload_time": "2012-10-22T12:11:20", "url": "https://files.pythonhosted.org/packages/94/1d/c77a375e96b986f36ea97f7993f317c758e2c0483ecf6109133afcea662a/altgraph-0.10.tar.gz" } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "ebef6fff05ea80c6499ac302151a026f", "sha256": "913cefd39223e2cb98dc96d5b484806349a53b5ffc55248eece5a6dbb177f576" }, "downloads": -1, "filename": "altgraph-0.10.1.tar.gz", "has_sig": false, "md5_digest": "ebef6fff05ea80c6499ac302151a026f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 465235, "upload_time": "2012-11-09T14:13:51", "url": "https://files.pythonhosted.org/packages/ec/b0/8cabdd90532f144f19b69f8eb26f0400a7d6951d93321bab9be496c7613d/altgraph-0.10.1.tar.gz" } ], "0.10.2": [ { "comment_text": "", "digests": { "md5": "059ae244d667cc673e16826c2b96046f", "sha256": "628ad4e48be307970476ed0a9ab5efaf52e188bff115ab97d9e3d27fbe95fb60" }, "downloads": -1, "filename": "altgraph-0.10.2.tar.gz", "has_sig": false, "md5_digest": "059ae244d667cc673e16826c2b96046f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 481738, "upload_time": "2013-02-04T10:12:37", "url": "https://files.pythonhosted.org/packages/10/3d/3d8e01dee1379d3250ece6ef9d01292200c1c07086749014a15b7ac01d59/altgraph-0.10.2.tar.gz" } ], "0.11": [ { "comment_text": "", "digests": { "md5": "0e0ca4049e4f9e1826ec3032314c6d2f", "sha256": "4d2330119a18c18a8c99450f71d5109d662d40727ff3706b868735d5cf3426c7" }, "downloads": -1, "filename": "altgraph-0.11.tar.gz", "has_sig": false, "md5_digest": "0e0ca4049e4f9e1826ec3032314c6d2f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 491834, "upload_time": "2014-01-30T15:15:50", "url": "https://files.pythonhosted.org/packages/e2/cc/d602d2dd094aee46a9334de94171054fb5a00b6da97d06fc46ca3ab67d89/altgraph-0.11.tar.gz" } ], "0.12": [ { "comment_text": "", "digests": { "md5": "916dca277fb2b747d5b1ec05b54a0825", "sha256": "b90db0dba36d9ece282b6a95ae3d324b63239694ce2cf2fd07d3efd7f2f7cab2" }, "downloads": -1, "filename": "altgraph-0.12.tar.gz", "has_sig": false, "md5_digest": "916dca277fb2b747d5b1ec05b54a0825", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 492343, "upload_time": "2014-07-27T07:57:31", "url": "https://files.pythonhosted.org/packages/7a/84/11d02c59bde2e5a390f08c6ef81e96510834d37a9da1b052c303fea8473d/altgraph-0.12.tar.gz" } ], "0.13": [ { "comment_text": "", "digests": { "md5": "06b0e68bf487ee8aff1cdd82e0740158", "sha256": "5ae074dbf854b9f03d7410980ffc9853b91b3d3350b343e986308521634e711b" }, "downloads": -1, "filename": "altgraph-0.13-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "06b0e68bf487ee8aff1cdd82e0740158", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 22755, "upload_time": "2016-12-13T12:43:00", "url": "https://files.pythonhosted.org/packages/3a/37/33b8399913e321d2a936ce254635495eb4ef32b5013a0834b64641070978/altgraph-0.13-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "67990fbe56f4f1064f8b414463f0214f", "sha256": "8510e9d85598d718d1f94afa7a64696565d6c3cb139d72603d6f64339377be68" }, "downloads": -1, "filename": "altgraph-0.13.tar.gz", "has_sig": false, "md5_digest": "67990fbe56f4f1064f8b414463f0214f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47164, "upload_time": "2016-12-13T12:43:03", "url": "https://files.pythonhosted.org/packages/e1/c7/46556db016104f2c7c195c26dd0a04fffa31ec14edc53fb31cef578d1db8/altgraph-0.13.tar.gz" } ], "0.14": [ { "comment_text": "", "digests": { "md5": "7497b58475b5331dae91dfde828caae9", "sha256": "b966a3114c7942e2a2b4c2304b2baf1cd2ed7a5a8b2106e64e0709a21d6cfbb4" }, "downloads": -1, "filename": "altgraph-0.14-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7497b58475b5331dae91dfde828caae9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 22862, "upload_time": "2017-05-09T07:40:49", "url": "https://files.pythonhosted.org/packages/1c/bf/3f0667c6bf515c8f0673d92288633c0c0150ac468c2fc862bd76d69cc7fa/altgraph-0.14-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "30cbbc835a64ca3fa0eec41fc6ff936f", "sha256": "481bac8feb1716bb8e485e652ed94002cc11304abccb2911f8f4574fc9dc207b" }, "downloads": -1, "filename": "altgraph-0.14.tar.gz", "has_sig": false, "md5_digest": "30cbbc835a64ca3fa0eec41fc6ff936f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 588506, "upload_time": "2017-05-09T07:40:52", "url": "https://files.pythonhosted.org/packages/02/e8/e3e0bef46dc329afec0614d63e3c17fd799e41f8d235e8bd4c3b0175de91/altgraph-0.14.tar.gz" } ], "0.15": [ { "comment_text": "", "digests": { "md5": "fe79895c8902410a46cd4caaf79893d2", "sha256": "49dc134049903cc73fb76ca3cc9bef5b2b8c01c28732dd29594f99af2b449fc5" }, "downloads": -1, "filename": "altgraph-0.15-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fe79895c8902410a46cd4caaf79893d2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 23260, "upload_time": "2017-11-30T10:50:12", "url": "https://files.pythonhosted.org/packages/fe/fd/f63226be4aeebcac65d5f7e882bd00c8465ce883c1a4d16b18bd4ae9086e/altgraph-0.15-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e47d24b773a262ceb5e3cce79c4c991c", "sha256": "fc28b986a68fde8d3ff0e6d6ba3fbdd2cd562d11d45ef7c7735fbd826c9eec2e" }, "downloads": -1, "filename": "altgraph-0.15.tar.gz", "has_sig": false, "md5_digest": "e47d24b773a262ceb5e3cce79c4c991c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 589882, "upload_time": "2017-11-30T10:50:15", "url": "https://files.pythonhosted.org/packages/ff/e5/c4d83ca50043951eec43449aa74f4aa4fde1695f901dcf9d213efea3abb1/altgraph-0.15.tar.gz" } ], "0.16.1": [ { "comment_text": "", "digests": { "md5": "237bb3f128187ff2888373a56978eb75", "sha256": "d6814989f242b2b43025cba7161fc1b8fb487a62cd49c49245d6fd01c18ac997" }, "downloads": -1, "filename": "altgraph-0.16.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "237bb3f128187ff2888373a56978eb75", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20311, "upload_time": "2018-07-27T07:50:38", "url": "https://files.pythonhosted.org/packages/0a/cc/646187eac4b797069e2e6b736f14cdef85dbe405c9bfc7803ef36e4f62ef/altgraph-0.16.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b8f5c435f769ae57e7cda8c8a9769844", "sha256": "ddf5320017147ba7b810198e0b6619bd7b5563aa034da388cea8546b877f9b0c" }, "downloads": -1, "filename": "altgraph-0.16.1.tar.gz", "has_sig": false, "md5_digest": "b8f5c435f769ae57e7cda8c8a9769844", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 499316, "upload_time": "2018-07-27T07:50:39", "url": "https://files.pythonhosted.org/packages/da/a4/6c508ac94d7a65859a7a47e6fbde4aa6b81d0f0863aa45861241e782391c/altgraph-0.16.1.tar.gz" } ], "0.6.6": [ { "comment_text": "", "digests": { "md5": "6dc4210f9b1281fd95fffd4917d9bca8", "sha256": "5a27ccaef16311c48ea3aec1e13c69c7211c562f61c151625166941a9bc17db3" }, "downloads": -1, "filename": "altgraph-0.6.6-py2.3.egg", "has_sig": true, "md5_digest": "6dc4210f9b1281fd95fffd4917d9bca8", "packagetype": "bdist_egg", "python_version": "2.3", "requires_python": null, "size": 42479, "upload_time": "2005-12-08T23:19:29", "url": "https://files.pythonhosted.org/packages/e7/cf/a41977da0920bfdcb4e9d243bd50ede858735327b9cea7ea1a03a1efcdef/altgraph-0.6.6-py2.3.egg" }, { "comment_text": "", "digests": { "md5": "003d162205be074f61b330ccd2b0cc5f", "sha256": "bd935b82ae827c430be9652c97c5bd3c38a4f28348c0b36d8ad64c722c405ced" }, "downloads": -1, "filename": "altgraph-0.6.6-py2.4.egg", "has_sig": true, "md5_digest": "003d162205be074f61b330ccd2b0cc5f", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 42160, "upload_time": "2005-12-08T23:14:23", "url": "https://files.pythonhosted.org/packages/34/79/892527341940c26e50c333571f0fc49ad3e398f230d1297cdb3555247d58/altgraph-0.6.6-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "fddeb648388cd8e82757508fc19f471e", "sha256": "0995c336490cd5fff1428ce0401a3799a84313f5ca50967dfcf4b5aa55eb7600" }, "downloads": -1, "filename": "altgraph-0.6.6.tar.gz", "has_sig": true, "md5_digest": "fddeb648388cd8e82757508fc19f471e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18798, "upload_time": "2005-12-08T23:14:17", "url": "https://files.pythonhosted.org/packages/44/5b/7829c31505ef1f7d904aca7aefc229f13e0efd3b228081eefdeaf37ff6fb/altgraph-0.6.6.tar.gz" } ], "0.6.7": [ { "comment_text": "", "digests": { "md5": "8b41628e97f6e0090c3ed0894b40bb9c", "sha256": "710ed46594efb00b07087ed493567256fa3eeca904a30df440b1068e0fdb8c69" }, "downloads": -1, "filename": "altgraph-0.6.7-py2.4.egg", "has_sig": true, "md5_digest": "8b41628e97f6e0090c3ed0894b40bb9c", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 42931, "upload_time": "2006-09-25T21:14:29", "url": "https://files.pythonhosted.org/packages/ac/8f/54e24b63d1847ac8e3a146b63404bc47489882c409df2899a2bebba8e308/altgraph-0.6.7-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "6792e11b471e70ab3d4dfecf41fb759e", "sha256": "4365becceb2d9c19ce1f3e435818869ec10a401e22df608f0332e9522429407f" }, "downloads": -1, "filename": "altgraph-0.6.7.tar.gz", "has_sig": true, "md5_digest": "6792e11b471e70ab3d4dfecf41fb759e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19235, "upload_time": "2006-09-25T21:14:33", "url": "https://files.pythonhosted.org/packages/2c/e6/d4b4b2364eac037e3d1a226afd8896b157a3d5900285cd173a34d19c03fb/altgraph-0.6.7.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "7c3236c26a7e66a605d1257c48e8b22c", "sha256": "392b735a105aa30e4159dff88f36aef42ffc79735199b45809e4093d9e9569f2" }, "downloads": -1, "filename": "altgraph-0.7.0-py2.5.egg", "has_sig": false, "md5_digest": "7c3236c26a7e66a605d1257c48e8b22c", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 42727, "upload_time": "2010-07-29T08:22:07", "url": "https://files.pythonhosted.org/packages/ff/6d/24202d20702806e842927a425b97be3b15a82b7d12b425aafa69d951f5af/altgraph-0.7.0-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "7c5fc34a870fbcb6ec2720d584905c2e", "sha256": "31c87be56ebf1c6859198499e859a48846660f6062065c522b4bf1e76316f6dd" }, "downloads": -1, "filename": "altgraph-0.7.0-py2.6.egg", "has_sig": false, "md5_digest": "7c5fc34a870fbcb6ec2720d584905c2e", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 59426, "upload_time": "2010-07-27T15:04:41", "url": "https://files.pythonhosted.org/packages/22/f2/bfb0b71f523b84eba20f29010cf0e103cc35592e1c1f7e1ca9ba16a8e7a2/altgraph-0.7.0-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "43a9358777bb3dc5ba2ce3b90a03b381", "sha256": "b8aac4d077c1946da37fd120f999031c7b4dd9dc355acf03e405b4efbe72756d" }, "downloads": -1, "filename": "altgraph-0.7.0-py2.7.egg", "has_sig": false, "md5_digest": "43a9358777bb3dc5ba2ce3b90a03b381", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 59274, "upload_time": "2010-07-27T15:03:59", "url": "https://files.pythonhosted.org/packages/fd/7f/ec6ea9c8c9e8488c3b753fb674d138f54987997d9bc4838679acd6da21e9/altgraph-0.7.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "eb39c63ea2c5ef3b48ccee6500186288", "sha256": "3ce0825129b3f4e469c8a31874a0ef682821c5e53f5bdd6139cc7595aa0b6837" }, "downloads": -1, "filename": "altgraph-0.7.0-py3.1.egg", "has_sig": false, "md5_digest": "eb39c63ea2c5ef3b48ccee6500186288", "packagetype": "bdist_egg", "python_version": "3.1", "requires_python": null, "size": 59653, "upload_time": "2010-07-27T15:08:08", "url": "https://files.pythonhosted.org/packages/78/45/b25301902e5d6ba1113a464bdd2c0038a13cd497e121ed836b9bc2838037/altgraph-0.7.0-py3.1.egg" }, { "comment_text": "", "digests": { "md5": "b51ff33027ea9361af6627b826560d20", "sha256": "880c14a92697bd9b77a336cc5d0747b782ea8e8e4f567f41354a69f5c324c6f5" }, "downloads": -1, "filename": "altgraph-0.7.0-py3.2.egg", "has_sig": false, "md5_digest": "b51ff33027ea9361af6627b826560d20", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 59586, "upload_time": "2010-07-27T15:08:30", "url": "https://files.pythonhosted.org/packages/5e/bb/421b31fc8056ea1c3d60fa14dce2cb207968336450a3f312c3f4790e7b2d/altgraph-0.7.0-py3.2.egg" }, { "comment_text": "", "digests": { "md5": "e9d5a034fc80773e264724b2c2a10de3", "sha256": "1093979a65e180178478a4b36f56d2cbce6aecdb5293bbb9ff7cffd45e2293fe" }, "downloads": -1, "filename": "altgraph-0.7.0.tar.gz", "has_sig": false, "md5_digest": "e9d5a034fc80773e264724b2c2a10de3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20725, "upload_time": "2010-07-27T15:03:37", "url": "https://files.pythonhosted.org/packages/1e/e4/b010dd7aeb4e2273c7d5a3b5e9d1f83fd1889591554aade5a7904ba81385/altgraph-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "f65988bf153410a8514bcdad6a3a8ba6", "sha256": "1e38fca306c23a22d35c179665f06c6796e76d4e0ec3cd74ea8e0b0939abfbe0" }, "downloads": -1, "filename": "altgraph-0.7.1.tar.gz", "has_sig": false, "md5_digest": "f65988bf153410a8514bcdad6a3a8ba6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17809, "upload_time": "2011-01-25T22:32:46", "url": "https://files.pythonhosted.org/packages/64/cb/5ec4ef039f78026a23e124a59ad46fbf5026e7f2e3b958129c0e47911f8f/altgraph-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "effd9f891355ae9bc243a848f6c3a519", "sha256": "e91e5d000e17780ab2f694a2e7769da0b3af37a9193e5dc39940f905ce4c9b0b" }, "downloads": -1, "filename": "altgraph-0.7.2.tar.gz", "has_sig": false, "md5_digest": "effd9f891355ae9bc243a848f6c3a519", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24624, "upload_time": "2011-01-31T06:56:43", "url": "https://files.pythonhosted.org/packages/9b/97/df73e4a6aadc62ba26251e0e87981ff28b46b627d923e498480ca5e14f13/altgraph-0.7.2.tar.gz" } ], "0.8": [ { "comment_text": "", "digests": { "md5": "dbe69eaeedd4d031a7ed774caf336911", "sha256": "3994812cc259c115544f0997f931a60b3833b64ccca3122f150f429ab036df29" }, "downloads": -1, "filename": "altgraph-0.8.tar.gz", "has_sig": false, "md5_digest": "dbe69eaeedd4d031a7ed774caf336911", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 404036, "upload_time": "2011-02-23T07:40:11", "url": "https://files.pythonhosted.org/packages/17/29/59d6433604408f3918ee97383b6c7c15460b8d9207f434d29225596a0841/altgraph-0.8.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "367015bf871815b632975a26d1750133", "sha256": "417bad62eaa554d8671b2268e0371a7853e0cd1054e0c6f613ada09e447c94d2" }, "downloads": -1, "filename": "altgraph-0.9.tar.gz", "has_sig": false, "md5_digest": "367015bf871815b632975a26d1750133", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 357117, "upload_time": "2011-03-29T08:12:47", "url": "https://files.pythonhosted.org/packages/60/c7/ebeca36092bb8c05ed9b9c1c9421a690179863da21f0c610c54db3c02404/altgraph-0.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "237bb3f128187ff2888373a56978eb75", "sha256": "d6814989f242b2b43025cba7161fc1b8fb487a62cd49c49245d6fd01c18ac997" }, "downloads": -1, "filename": "altgraph-0.16.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "237bb3f128187ff2888373a56978eb75", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20311, "upload_time": "2018-07-27T07:50:38", "url": "https://files.pythonhosted.org/packages/0a/cc/646187eac4b797069e2e6b736f14cdef85dbe405c9bfc7803ef36e4f62ef/altgraph-0.16.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b8f5c435f769ae57e7cda8c8a9769844", "sha256": "ddf5320017147ba7b810198e0b6619bd7b5563aa034da388cea8546b877f9b0c" }, "downloads": -1, "filename": "altgraph-0.16.1.tar.gz", "has_sig": false, "md5_digest": "b8f5c435f769ae57e7cda8c8a9769844", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 499316, "upload_time": "2018-07-27T07:50:39", "url": "https://files.pythonhosted.org/packages/da/a4/6c508ac94d7a65859a7a47e6fbde4aa6b81d0f0863aa45861241e782391c/altgraph-0.16.1.tar.gz" } ] }