{ "info": { "author": "Joohwan Oh", "author_email": "joohwan.oh@outlook.com", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Developers", "Intended Audience :: End Users/Desktop", "Intended Audience :: Information Technology", "License :: OSI Approved :: MIT License", "Operating System :: MacOS", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Operating System :: Unix", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Topic :: Documentation :: Sphinx" ], "description": ".. image:: https://cloud.githubusercontent.com/assets/2701938/18018900/668e15d2-6ba7-11e6-85a9-7997b3c6218a.png\n\n|\n\n.. image:: https://travis-ci.org/joowani/python-arango.svg?branch=master\n :target: https://travis-ci.org/joowani/python-arango\n :alt: Travis Build Status\n\n.. image:: https://readthedocs.org/projects/python-driver-for-arangodb/badge/?version=master\n :target: http://python-driver-for-arangodb.readthedocs.io/en/master/?badge=master\n :alt: Documentation Status\n\n.. image:: https://badge.fury.io/py/python-arango.svg\n :target: https://badge.fury.io/py/python-arango\n :alt: Package Version\n\n.. image:: https://img.shields.io/badge/python-2.7%2C%203.4%2C%203.5%2C%203.6%2C%203.7-blue.svg\n :target: https://github.com/joowani/python-arango\n :alt: Python Versions\n\n.. image:: https://coveralls.io/repos/github/joowani/python-arango/badge.svg?branch=master\n :target: https://coveralls.io/github/joowani/python-arango?branch=master\n :alt: Test Coverage\n\n.. image:: https://img.shields.io/github/issues/joowani/python-arango.svg\n :target: https://github.com/joowani/python-arango/issues\n :alt: Issues Open\n\n.. image:: https://img.shields.io/badge/license-MIT-blue.svg\n :target: https://raw.githubusercontent.com/joowani/python-arango/master/LICENSE\n :alt: MIT License\n\n|\n\nWelcome to the GitHub page for **python-arango**, a Python driver for ArangoDB_.\n\nAnnouncements\n=============\n\n- Python-arango version `5.0.0`_ is finally up! This release supports ArangoDB\n version 3.5+ only. It also breaks backward-compatibility and you must make\n changes in your application code. Please see the releases_ page for details.\n\nFeatures\n========\n\n- Pythonic interface\n- Lightweight\n- High API coverage\n\nCompatibility\n=============\n\n- Python versions 2.7, 3.4, 3.5, 3.6 and 3.7 are supported\n- Python-arango 5.x supports ArangoDB 3.5+\n- Python-arango 4.x supports ArangoDB 3.3 ~ 3.4 only\n- Python-arango 3.x supports ArangoDB 3.0 ~ 3.2 only\n- Python-arango 2.x supports ArangoDB 1.x ~ 2.x only\n\nInstallation\n============\n\nTo install a stable version from PyPi_:\n\n.. code-block:: bash\n\n ~$ pip install python-arango\n\n\nTo install the latest version directly from GitHub_:\n\n.. code-block:: bash\n\n ~$ pip install -e git+git@github.com:joowani/python-arango.git@master#egg=python-arango\n\nYou may need to use ``sudo`` depending on your environment.\n\nGetting Started\n===============\n\nHere is a simple usage example:\n\n.. code-block:: python\n\n from arango import ArangoClient\n\n # Initialize the client for ArangoDB.\n client = ArangoClient(hosts='http://localhost:8529')\n\n # Connect to \"_system\" database as root user.\n sys_db = client.db('_system', username='root', password='passwd')\n\n # Create a new database named \"test\".\n sys_db.create_database('test')\n\n # Connect to \"test\" database as root user.\n db = client.db('test', username='root', password='passwd')\n\n # Create a new collection named \"students\".\n students = db.create_collection('students')\n\n # Add a hash index to the collection.\n students.add_hash_index(fields=['name'], unique=True)\n\n # Insert new documents into the collection.\n students.insert({'name': 'jane', 'age': 39})\n students.insert({'name': 'josh', 'age': 18})\n students.insert({'name': 'judy', 'age': 21})\n\n # Execute an AQL query and iterate through the result cursor.\n cursor = db.aql.execute('FOR doc IN students RETURN doc')\n student_names = [document['name'] for document in cursor]\n\n\nHere is another example with graphs:\n\n.. code-block:: python\n\n from arango import ArangoClient\n\n # Initialize the client for ArangoDB.\n client = ArangoClient(hosts='http://localhost:8529')\n\n # Connect to \"test\" database as root user.\n db = client.db('test', username='root', password='passwd')\n\n # Create a new graph named \"school\".\n graph = db.create_graph('school')\n\n # Create vertex collections for the graph.\n students = graph.create_vertex_collection('students')\n lectures = graph.create_vertex_collection('lectures')\n\n # Create an edge definition (relation) for the graph.\n register = graph.create_edge_definition(\n edge_collection='register',\n from_vertex_collections=['students'],\n to_vertex_collections=['lectures']\n )\n\n # Insert vertex documents into \"students\" (from) vertex collection.\n students.insert({'_key': '01', 'full_name': 'Anna Smith'})\n students.insert({'_key': '02', 'full_name': 'Jake Clark'})\n students.insert({'_key': '03', 'full_name': 'Lisa Jones'})\n\n # Insert vertex documents into \"lectures\" (to) vertex collection.\n lectures.insert({'_key': 'MAT101', 'title': 'Calculus'})\n lectures.insert({'_key': 'STA101', 'title': 'Statistics'})\n lectures.insert({'_key': 'CSC101', 'title': 'Algorithms'})\n\n # Insert edge documents into \"register\" edge collection.\n register.insert({'_from': 'students/01', '_to': 'lectures/MAT101'})\n register.insert({'_from': 'students/01', '_to': 'lectures/STA101'})\n register.insert({'_from': 'students/01', '_to': 'lectures/CSC101'})\n register.insert({'_from': 'students/02', '_to': 'lectures/MAT101'})\n register.insert({'_from': 'students/02', '_to': 'lectures/STA101'})\n register.insert({'_from': 'students/03', '_to': 'lectures/CSC101'})\n\n # Traverse the graph in outbound direction, breadth-first.\n result = graph.traverse(\n start_vertex='students/01',\n direction='outbound',\n strategy='breadthfirst'\n )\n\nCheck out the documentation_ for more information.\n\nContributing\n============\n\nPlease take a look at this page_ before submitting a pull request. Thanks!\n\n.. _ArangoDB: https://www.arangodb.com\n.. _5.0.0: https://github.com/joowani/python-arango/releases/tag/5.0.0\n.. _releases: https://github.com/joowani/python-arango/releases\n.. _PyPi: https://pypi.python.org/pypi/python-arango\n.. _GitHub: https://github.com/joowani/python-arango\n.. _documentation:\n http://python-driver-for-arangodb.readthedocs.io/en/master/index.html\n.. _page:\n http://python-driver-for-arangodb.readthedocs.io/en/master/contributing.html", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/joowani/python-arango", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "python-arango", "package_url": "https://pypi.org/project/python-arango/", "platform": "", "project_url": "https://pypi.org/project/python-arango/", "project_urls": { "Homepage": "https://github.com/joowani/python-arango" }, "release_url": "https://pypi.org/project/python-arango/5.2.1/", "requires_dist": null, "requires_python": "", "summary": "Python Driver for ArangoDB", "version": "5.2.1" }, "last_serial": 5946833, "releases": { "1.4.0": [ { "comment_text": "", "digests": { "md5": "d822ffe3985b314d284469f282d641cc", "sha256": "219894eb347c7627e760d465560cc7893701f38cfb87416f23981bd9d5cb3264" }, "downloads": -1, "filename": "python-arango-1.4.0.tar.gz", "has_sig": false, "md5_digest": "d822ffe3985b314d284469f282d641cc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27074, "upload_time": "2015-07-14T03:08:16", "url": "https://files.pythonhosted.org/packages/50/3b/e3f8e7cd74b18e6f59efdd999cfc0220431f8068bf40fedec7f8a73047da/python-arango-1.4.0.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "dc9f718399a289af4e3c463a272791ee", "sha256": "07c68606981d07462eb89327d5f75dcccb3583c3db651011895bcdbacadea726" }, "downloads": -1, "filename": "python-arango-2.0.0.tar.gz", "has_sig": false, "md5_digest": "dc9f718399a289af4e3c463a272791ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30951, "upload_time": "2015-08-17T14:09:37", "url": "https://files.pythonhosted.org/packages/57/2f/59b780991725e21c7c0830f2edf76c5ab416f8fa80c0f21d0181f9fd797a/python-arango-2.0.0.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "508a6a1d263a9a5c433d0150b912805d", "sha256": "f2d9294fd69334165125ae844f6230a80b6b55fd0a8ea604d7b572a3c0100f05" }, "downloads": -1, "filename": "python-arango-2.1.0.tar.gz", "has_sig": false, "md5_digest": "508a6a1d263a9a5c433d0150b912805d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32360, "upload_time": "2015-08-31T06:03:47", "url": "https://files.pythonhosted.org/packages/57/33/bdd29a314ba057a2a67cfc1f0cb877f46e195c92719f29e177a57ae6c3e8/python-arango-2.1.0.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "be2316ce54396970446a428330bce4c5", "sha256": "876d0552975ac8d74571bf08603a71ea29b092d9323ccb4c09b77f4c0bf425bc" }, "downloads": -1, "filename": "python_arango-2.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "be2316ce54396970446a428330bce4c5", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 45855, "upload_time": "2015-10-13T06:11:01", "url": "https://files.pythonhosted.org/packages/cf/4b/813f3963db8369a4165dfa1e7ef50a038eca9271b9808a803f389ee1fd1f/python_arango-2.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5121f8b63fd5506a401bb3e639ec7268", "sha256": "893259d89d312323b39ffd7f9a0a084eded819feb08aca7dcd8a799cd6c3e9b4" }, "downloads": -1, "filename": "python-arango-2.2.0.tar.gz", "has_sig": false, "md5_digest": "5121f8b63fd5506a401bb3e639ec7268", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33241, "upload_time": "2015-10-13T06:08:14", "url": "https://files.pythonhosted.org/packages/86/8b/ceef84be8f5381acbf033c9bf2e6b93818790e3a49825322c91239832357/python-arango-2.2.0.tar.gz" } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "f578b119c6075fe3fdb41171697e5aea", "sha256": "9f17b54419e7fdedeb8c01de62a23a945badc91f7105d9f4d6fd5c818a8d7964" }, "downloads": -1, "filename": "python-arango-3.0.0.tar.gz", "has_sig": false, "md5_digest": "f578b119c6075fe3fdb41171697e5aea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56683, "upload_time": "2016-08-17T05:40:22", "url": "https://files.pythonhosted.org/packages/06/ca/3ce661138c97d947c8691ecdb1fba2371b7f19dcaa6ef4145459bfa95cfc/python-arango-3.0.0.tar.gz" } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "b8b022ac84f3e739807aaec0e0bc3c12", "sha256": "908cea8383e32337b09e131df8b356dc2cabf36b3265de5bc2e8eac0d9ea1b78" }, "downloads": -1, "filename": "python-arango-3.1.0.tar.gz", "has_sig": false, "md5_digest": "b8b022ac84f3e739807aaec0e0bc3c12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61962, "upload_time": "2016-08-23T04:41:44", "url": "https://files.pythonhosted.org/packages/f1/1c/1f39d3ddd351285d232452d4fca2157902a1749b87c57bb648b8a685c425/python-arango-3.1.0.tar.gz" } ], "3.10.0": [ { "comment_text": "", "digests": { "md5": "47beb28bfc9cc5914ae6e7411843db2b", "sha256": "3ac390de455d759585726b2d7670e814f18de2a1e3d3c1e465a325bb5a129878" }, "downloads": -1, "filename": "python-arango-3.10.0.tar.gz", "has_sig": false, "md5_digest": "47beb28bfc9cc5914ae6e7411843db2b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74974, "upload_time": "2017-07-31T00:06:48", "url": "https://files.pythonhosted.org/packages/43/e0/764888db4949c6f6f0afad5735042df01e684afa8157075df0280c75da11/python-arango-3.10.0.tar.gz" } ], "3.10.1": [ { "comment_text": "", "digests": { "md5": "ba797543f3925519493551896285b58a", "sha256": "ead32ba4089fb60742784284424d19c9391af2b509b799ad34dd1a2effbdc924" }, "downloads": -1, "filename": "python-arango-3.10.1.tar.gz", "has_sig": false, "md5_digest": "ba797543f3925519493551896285b58a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75031, "upload_time": "2017-08-08T05:59:59", "url": "https://files.pythonhosted.org/packages/91/55/ff339bff3b5fcd2c548dcabf3ddefbfdcec5c5557784737207a2ab2af3d7/python-arango-3.10.1.tar.gz" } ], "3.11.0": [ { "comment_text": "", "digests": { "md5": "93c98309ce54b3e9dee270630720754e", "sha256": "a2d2e972e80118bcc74d5b5e52bd28588a6c4120838aad4504c191d811f8355e" }, "downloads": -1, "filename": "python-arango-3.11.0.tar.gz", "has_sig": false, "md5_digest": "93c98309ce54b3e9dee270630720754e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75998, "upload_time": "2017-08-28T09:15:13", "url": "https://files.pythonhosted.org/packages/fa/32/723330c2c3d5a7a1e7c9d02918db1fc4d675d62e1db2d7629e20addf47e4/python-arango-3.11.0.tar.gz" } ], "3.12.1": [ { "comment_text": "", "digests": { "md5": "e02672ea2b0ff03c39c049e6cdec8ab0", "sha256": "9a092133a0951e23b1164c4055349500e99a7c5713926e277b376bef8c3fa2d8" }, "downloads": -1, "filename": "python-arango-3.12.1.tar.gz", "has_sig": false, "md5_digest": "e02672ea2b0ff03c39c049e6cdec8ab0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76402, "upload_time": "2017-11-01T03:28:55", "url": "https://files.pythonhosted.org/packages/46/d9/d593b0430b20c0d9cc92c184b757e09014f7ccd0f3f6fcfef227eca871f0/python-arango-3.12.1.tar.gz" } ], "3.2.0": [ { "comment_text": "", "digests": { "md5": "caa3cfe9dbd5bcab11f579fc72268ba2", "sha256": "4a7f64cf5b916cc023755c73dde86311a3d448501e3753390e32356c9a72bfa4" }, "downloads": -1, "filename": "python-arango-3.2.0.tar.gz", "has_sig": false, "md5_digest": "caa3cfe9dbd5bcab11f579fc72268ba2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62584, "upload_time": "2016-08-25T03:51:31", "url": "https://files.pythonhosted.org/packages/dc/df/31122c3bd44aba59e924b97d3cdda6f6b5ce76c7d2a0cce2e4c6c7ec2971/python-arango-3.2.0.tar.gz" } ], "3.2.1": [], "3.2.2": [ { "comment_text": "", "digests": { "md5": "b267f3d45a44588688b6f9213e39d7d8", "sha256": "91e274dad408f9818f5f72d0b11ba5d00d1f7a5b2bac7653738ea95009182867" }, "downloads": -1, "filename": "python-arango-3.2.2.tar.gz", "has_sig": false, "md5_digest": "b267f3d45a44588688b6f9213e39d7d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62554, "upload_time": "2016-08-26T20:13:14", "url": "https://files.pythonhosted.org/packages/a5/15/c0877b742a28f215aaa22dd3df82a4b0957fc4b0b9caa18b221e87cebab5/python-arango-3.2.2.tar.gz" } ], "3.3.0": [ { "comment_text": "", "digests": { "md5": "7b9de10ff693d4748f2dc85458e63863", "sha256": "2b5bf87b615914253f8cb32a3134b0e4d3509207720f36215d50fcb2e62b6de9" }, "downloads": -1, "filename": "python-arango-3.3.0.tar.gz", "has_sig": false, "md5_digest": "7b9de10ff693d4748f2dc85458e63863", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63072, "upload_time": "2016-09-08T05:48:44", "url": "https://files.pythonhosted.org/packages/33/87/38d4192dd5a35f815fbf226a4e24636299b9b38e9bd24c67a6bd81cb04f9/python-arango-3.3.0.tar.gz" } ], "3.4.0": [ { "comment_text": "", "digests": { "md5": "2c06a6a85ae2191a876d0a0cb243472e", "sha256": "b58dcbce2959a7e695ae3ef5210fd20834e9d299dbe5217d3704c13d7169a7a5" }, "downloads": -1, "filename": "python-arango-3.4.0.tar.gz", "has_sig": false, "md5_digest": "2c06a6a85ae2191a876d0a0cb243472e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64132, "upload_time": "2016-11-01T15:19:06", "url": "https://files.pythonhosted.org/packages/79/0d/830f604d6169fc456d78bc37e702bdbef840030898003f4fdd5e59bc6904/python-arango-3.4.0.tar.gz" } ], "3.4.1": [ { "comment_text": "", "digests": { "md5": "35209ae55bf251d3cc130ab8d0a60ee7", "sha256": "21009aa253a91d7fedd132fb0815b3dcf46cfc93ac8d7c674fa608e72118cdd5" }, "downloads": -1, "filename": "python-arango-3.4.1.tar.gz", "has_sig": false, "md5_digest": "35209ae55bf251d3cc130ab8d0a60ee7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64508, "upload_time": "2016-12-10T06:21:55", "url": "https://files.pythonhosted.org/packages/95/2b/e6edbe353deaf08d18a150f29a2ded52fedfe48feed0acd0c3b72cc156c7/python-arango-3.4.1.tar.gz" } ], "3.5.0": [ { "comment_text": "", "digests": { "md5": "fe4b93f8336168ba23147a70071f841d", "sha256": "a74c4c09e374737a3185f9624ec71a64561e5c8955c7cc38b29e89bae32c5186" }, "downloads": -1, "filename": "python-arango-3.5.0.tar.gz", "has_sig": false, "md5_digest": "fe4b93f8336168ba23147a70071f841d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65247, "upload_time": "2017-02-05T05:52:00", "url": "https://files.pythonhosted.org/packages/e2/11/cd04f9e49d4afee0374a074fe867955708254a8f30ea949bead02bb8c3eb/python-arango-3.5.0.tar.gz" } ], "3.6.0": [ { "comment_text": "", "digests": { "md5": "4a39479cbf0601c255b861e62d5204cf", "sha256": "4eb6be0efe2e91dba69216261cd391b3a294b636706a9fc1280165bbb34eac77" }, "downloads": -1, "filename": "python-arango-3.6.0.tar.gz", "has_sig": false, "md5_digest": "4a39479cbf0601c255b861e62d5204cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65914, "upload_time": "2017-04-11T03:55:34", "url": "https://files.pythonhosted.org/packages/c7/5c/a8c0fb60ec1a9e2aae95bec1dc7b11ea06c7605a7e12e65dd7fc0e6de6f6/python-arango-3.6.0.tar.gz" } ], "3.7.0": [ { "comment_text": "", "digests": { "md5": "b9115a74cc792243421a9a2dd4433666", "sha256": "fe6095b0c6b6561fa8b121f6ed1b4a1d0d00079667bf3b21b23eaf92fc79e1c1" }, "downloads": -1, "filename": "python-arango-3.7.0.tar.gz", "has_sig": false, "md5_digest": "b9115a74cc792243421a9a2dd4433666", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67360, "upload_time": "2017-06-04T09:32:15", "url": "https://files.pythonhosted.org/packages/b5/57/2c93335808dffdde347434397290583ba26829ec8717223305ce7238c476/python-arango-3.7.0.tar.gz" } ], "3.8.0": [ { "comment_text": "", "digests": { "md5": "18b5e546a626f39157fe2b32e592f896", "sha256": "8f2fdb73f08221450780aef6cc57121b7c53c7ad2a24372577133b636f5be78d" }, "downloads": -1, "filename": "python-arango-3.8.0.tar.gz", "has_sig": false, "md5_digest": "18b5e546a626f39157fe2b32e592f896", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72157, "upload_time": "2017-06-11T20:27:27", "url": "https://files.pythonhosted.org/packages/d0/4b/87c24d2ebad1369113e229177088038f8499840d81534eafb24cf4198037/python-arango-3.8.0.tar.gz" } ], "3.9.0": [ { "comment_text": "", "digests": { "md5": "7030eafec30a6db6d7f60b6e770b340e", "sha256": "b21c26cc4b19b3c0e8959ce2a57a3793e49a96452941270b17f22d119c113354" }, "downloads": -1, "filename": "python-arango-3.9.0.tar.gz", "has_sig": false, "md5_digest": "7030eafec30a6db6d7f60b6e770b340e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74000, "upload_time": "2017-07-23T19:35:41", "url": "https://files.pythonhosted.org/packages/f9/99/f89feadebec14a283279bbd4203fe0834823d870b51490e8451fd1407af2/python-arango-3.9.0.tar.gz" } ], "4.0.0": [ { "comment_text": "", "digests": { "md5": "9ab217e289723c68b0877276eac24edb", "sha256": "f5f8f85bd1901eff7630e908be2088b8b446b019d19e97d2dc6cba9e9f423e07" }, "downloads": -1, "filename": "python-arango-4.0.0.tar.gz", "has_sig": false, "md5_digest": "9ab217e289723c68b0877276eac24edb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77574, "upload_time": "2018-05-08T10:33:55", "url": "https://files.pythonhosted.org/packages/56/7b/25b40dd6c8771971904e0b2beec29e3f979c23a1cc381c8f402d8384a0df/python-arango-4.0.0.tar.gz" } ], "4.0.1": [ { "comment_text": "", "digests": { "md5": "dd34ab799d34339d817401644af45209", "sha256": "8ada701a68663e75e4f4f9ab6d979ad0315e0d843926e250ad43459efb5e4eb8" }, "downloads": -1, "filename": "python-arango-4.0.1.tar.gz", "has_sig": false, "md5_digest": "dd34ab799d34339d817401644af45209", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53020, "upload_time": "2018-05-09T17:50:39", "url": "https://files.pythonhosted.org/packages/ff/dc/633c7612da8e61ea4a6a233cd9f2ea87c6825ceeafc0d873fb8c39961f69/python-arango-4.0.1.tar.gz" } ], "4.1.0": [ { "comment_text": "", "digests": { "md5": "bf0a04eeda0a653fd3140936f2c4e006", "sha256": "e018974af49e35c07b8cb942c955184fcee63ac43ee8e4890ab363e7943f464d" }, "downloads": -1, "filename": "python-arango-4.1.0.tar.gz", "has_sig": false, "md5_digest": "bf0a04eeda0a653fd3140936f2c4e006", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53316, "upload_time": "2018-05-16T21:25:43", "url": "https://files.pythonhosted.org/packages/29/7f/bcccd7a4b9030abd7dff4db40ebf17899c60f4cb09677633779782357d97/python-arango-4.1.0.tar.gz" } ], "4.2.0": [ { "comment_text": "", "digests": { "md5": "dc88284d9a0599a8bf38b8747c0edb96", "sha256": "a5c5dd60e5e1ce12575ff25d84ce8741c0467bb4dcb534d4b367a9e43a6e1193" }, "downloads": -1, "filename": "python-arango-4.2.0.tar.gz", "has_sig": false, "md5_digest": "dc88284d9a0599a8bf38b8747c0edb96", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53909, "upload_time": "2018-06-05T13:12:00", "url": "https://files.pythonhosted.org/packages/55/29/21d160f2ffd88bc338f64f3bd9b578fff5c331121557b105ebd0e5e40873/python-arango-4.2.0.tar.gz" } ], "4.2.1": [ { "comment_text": "", "digests": { "md5": "716b1355ae5d5c5efecf071a6d9aec1f", "sha256": "3f2e98d0fb88ac31af1031ed09cf327609ba0bb110b8d615ef5566fee87e2c38" }, "downloads": -1, "filename": "python-arango-4.2.1.tar.gz", "has_sig": false, "md5_digest": "716b1355ae5d5c5efecf071a6d9aec1f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53999, "upload_time": "2018-06-15T11:46:05", "url": "https://files.pythonhosted.org/packages/ef/34/421a7e701645a34e897fa927a8bc77b963fba653a0efb4a4902ffa9bf6bb/python-arango-4.2.1.tar.gz" } ], "4.3.0": [ { "comment_text": "", "digests": { "md5": "de63057a1c019c2169900905af97d6f5", "sha256": "9b479ea552194ecfc964021d064ec24518a8008215fb4a22e9268355d1617b63" }, "downloads": -1, "filename": "python-arango-4.3.0.tar.gz", "has_sig": false, "md5_digest": "de63057a1c019c2169900905af97d6f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55253, "upload_time": "2018-12-11T23:02:38", "url": "https://files.pythonhosted.org/packages/6f/20/69778e9ce0ab67475e685b035e190eaafed9e2038b9fda3e88ea99c1be99/python-arango-4.3.0.tar.gz" } ], "4.4.0": [ { "comment_text": "", "digests": { "md5": "e7fba3134637d036269a0f8ad4680d05", "sha256": "d9fb9d2bfb3b17bd0880d0c34e800f4e87ea7e8a8f4c89533d4aa15ec47cd1ed" }, "downloads": -1, "filename": "python-arango-4.4.0.tar.gz", "has_sig": false, "md5_digest": "e7fba3134637d036269a0f8ad4680d05", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55836, "upload_time": "2019-01-04T13:28:45", "url": "https://files.pythonhosted.org/packages/d0/f6/3463151a107a2bd66994991201bfa9109e1f44840560132feee0b70eb927/python-arango-4.4.0.tar.gz" } ], "5.0.0": [ { "comment_text": "", "digests": { "md5": "bad50200f2084a4ac8ec95d8a30d5986", "sha256": "3d7aaa697ea8c1ef77be5f7d790a8b81c6529c2faca7a84e058c2b733dd4007a" }, "downloads": -1, "filename": "python-arango-5.0.0.tar.gz", "has_sig": false, "md5_digest": "bad50200f2084a4ac8ec95d8a30d5986", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57283, "upload_time": "2019-08-22T11:46:30", "url": "https://files.pythonhosted.org/packages/9e/77/c82fd8ded60111329513aad26eb81c54f02dae709a4b4231b5b8f2956f5c/python-arango-5.0.0.tar.gz" } ], "5.1.0": [ { "comment_text": "", "digests": { "md5": "9c51751c6ba628c4bdfa0f8d4d999f35", "sha256": "f2878db6acc4ac4f7ea0ddff41cac2485f26e8b725667a6bcd0a113b4312778f" }, "downloads": -1, "filename": "python-arango-5.1.0.tar.gz", "has_sig": false, "md5_digest": "9c51751c6ba628c4bdfa0f8d4d999f35", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57621, "upload_time": "2019-08-25T13:14:01", "url": "https://files.pythonhosted.org/packages/47/07/692c37131bbad3aadaf10f54ed8c6d476417c942f5056d3f9b411536886e/python-arango-5.1.0.tar.gz" } ], "5.2.0": [ { "comment_text": "", "digests": { "md5": "4e6b47983d2ad381ed1c0e3eaa921dcb", "sha256": "e165cc5489820a4a768e8e266da51e66d30c8198f5dee7f8b1ef5737fed75572" }, "downloads": -1, "filename": "python-arango-5.2.0.tar.gz", "has_sig": false, "md5_digest": "4e6b47983d2ad381ed1c0e3eaa921dcb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78623, "upload_time": "2019-09-22T04:12:29", "url": "https://files.pythonhosted.org/packages/e4/fd/f262e0f855afb18c62ad8757b0bd7350446df8fa5d746008dfeb04f0c750/python-arango-5.2.0.tar.gz" } ], "5.2.1": [ { "comment_text": "", "digests": { "md5": "3354275a0ae4f056151aee78d6201831", "sha256": "2a71fe0b50cd62b777aa695c923eec9319b66f7bcc5bc5ea2ac065ece518f2da" }, "downloads": -1, "filename": "python-arango-5.2.1.tar.gz", "has_sig": false, "md5_digest": "3354275a0ae4f056151aee78d6201831", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78621, "upload_time": "2019-10-08T21:50:32", "url": "https://files.pythonhosted.org/packages/f9/c3/1f8445ffc2505997da53ad5ce5e9f40875d561623d6bc84c259879e5cbcc/python-arango-5.2.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "3354275a0ae4f056151aee78d6201831", "sha256": "2a71fe0b50cd62b777aa695c923eec9319b66f7bcc5bc5ea2ac065ece518f2da" }, "downloads": -1, "filename": "python-arango-5.2.1.tar.gz", "has_sig": false, "md5_digest": "3354275a0ae4f056151aee78d6201831", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78621, "upload_time": "2019-10-08T21:50:32", "url": "https://files.pythonhosted.org/packages/f9/c3/1f8445ffc2505997da53ad5ce5e9f40875d561623d6bc84c259879e5cbcc/python-arango-5.2.1.tar.gz" } ] }