{ "info": { "author": "Dgraph Labs", "author_email": "contact@dgraph.io", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Database", "Topic :: Software Development" ], "description": "pydgraph\n========\n\nOfficial Dgraph client implementation for Python (Python >= v2.7 and >=\nv3.5), using `grpc `__.\n\nThis client follows the `Dgraph Go\nclient `__ closely.\n\nBefore using this client, we highly recommend that you go through\n`docs.dgraph.io `__, and understand how to run\nand work with Dgraph.\n\nTable of contents\n-----------------\n\n- `Install <#install>`__\n- `Quickstart <#quickstart>`__\n- `Using a client <#using-a-client>`__\n\n - `Creating a client <#creating-a-client>`__\n - `Altering the database <#altering-the-database>`__\n - `Creating a transaction <#creating-a-transaction>`__\n - `Running a mutation <#running-a-mutation>`__\n - `Running a query <#running-a-query>`__\n - `Committing a transaction <#committing-a-transaction>`__\n - `Cleaning up Resources <#cleaning-up-resources>`__\n - `Setting Metadata Headers <#setting-metadata-headers>`__\n\n- `Examples <#examples>`__\n- `Development <#development>`__\n\n - `Building the source <#building-the-source>`__\n - `Running tests <#running-tests>`__\n\nInstall\n-------\n\nInstall using pip:\n\n.. code:: sh\n\n pip install pydgraph\n\nQuickstart\n----------\n\nBuild and run the `simple <./examples/simple>`__ project in the\n``examples`` folder, which contains an end-to-end example of using the\nDgraph python client. Follow the instructions in the README of that\nproject.\n\nUsing a client\n--------------\n\nCreating a client\n~~~~~~~~~~~~~~~~~\n\nYou can initialize a ``DgraphClient`` object by passing it a list of\n``DgraphClientStub`` clients as variadic arguments. Connecting to\nmultiple Dgraph servers in the same cluster allows for better\ndistribution of workload.\n\nThe following code snippet shows just one connection.\n\n.. code:: python\n\n import pydgraph\n\n client_stub = pydgraph.DgraphClientStub('localhost:9080')\n client = pydgraph.DgraphClient(client_stub)\n\nAltering the database\n~~~~~~~~~~~~~~~~~~~~~\n\nTo set the schema, create an ``Operation`` object, set the schema and\npass it to ``DgraphClient#alter(Operation)`` method.\n\n.. code:: python\n\n schema = 'name: string @index(exact) .'\n op = pydgraph.Operation(schema=schema)\n client.alter(op)\n\n``Operation`` contains other fields as well, including drop predicate\nand drop all. Drop all is useful if you wish to discard all the data,\nand start from a clean slate, without bringing the instance down.\n\n.. code:: python\n\n # Drop all data including schema from the Dgraph instance. This is a useful\n # for small examples such as this since it puts Dgraph into a clean state.\n op = pydgraph.Operation(drop_all=True)\n client.alter(op)\n\nCreating a transaction\n~~~~~~~~~~~~~~~~~~~~~~\n\nTo create a transaction, call ``DgraphClient#txn()`` method, which\nreturns a new ``Txn`` object. This operation incurs no network overhead.\n\nIt is good practice to call ``Txn#discard()`` in a ``finally`` block\nafter running the transaction. Calling ``Txn#discard()`` after\n``Txn#commit()`` is a no-op and you can call ``Txn#discard()`` multiple\ntimes with no additional side-effects.\n\n.. code:: python\n\n txn = client.txn()\n try:\n # Do something here\n # ...\n finally:\n txn.discard()\n # ...\n\nTo create a read-only transaction, call\n``DgraphClient#txn(read_only=True)``. Read-only transactions are ideal\nfor transactions which only involve queries. Mutations and commits are\nnot allowed.\n\n.. code:: python\n\n txn = client.txn(read_only=True)\n try:\n # Do some queries here\n # ...\n finally:\n txn.discard()\n # ...\n\nTo create a read-only transaction that executes best-effort queries,\ncall ``DgraphClient#txn(read_only=True, best_effort=True)``. Best-effort\nqueries are faster than normal queries because they bypass the normal\nconsensus protocol. For this same reason, best-effort queries cannot\nguarantee to return the latest data. Best-effort queries are only\nsupported by read-only transactions.\n\nRunning a mutation\n~~~~~~~~~~~~~~~~~~\n\n``Txn#mutate(mu=Mutation)`` runs a mutation. It takes in a ``Mutation``\nobject, which provides two main ways to set data: JSON and RDF N-Quad.\nYou can choose whichever way is convenient.\n\n``Txn#mutate()`` provides convenience keyword arguments ``set_obj`` and\n``del_obj`` for setting JSON values and ``set_nquads`` and\n``del_nquads`` for setting N-Quad values. See examples below for usage.\n\nWe define a person object to represent a person and use it in a\ntransaction.\n\n.. code:: python\n\n # Create data.\n p = {\n 'name': 'Alice',\n }\n\n # Run mutation.\n txn.mutate(set_obj=p)\n\n # If you want to use a mutation object, use this instead:\n # mu = pydgraph.Mutation(set_json=json.dumps(p).encode('utf8'))\n # txn.mutate(mu)\n\n # If you want to use N-Quads, use this instead:\n # txn.mutate(set_nquads='_:alice \"Alice\" .')\n\n.. code:: python\n\n # Delete data.\n\n query = \"\"\"query all($a: string)\n {\n all(func: eq(name, $a))\n {\n uid\n }\n }\"\"\"\n\n variables = {'$a': 'Bob'}\n\n res = txn.query(query, variables=variables)\n ppl = json.loads(res.json)\n\n # For a mutation to delete a node, use this:\n txn.mutate(del_obj=person)\n\nFor a complete example with multiple fields and relationships, look at\nthe `simple <./examples/simple>`__ project in the ``examples`` folder.\n\nSometimes, you only want to commit a mutation, without querying anything\nfurther. In such cases, you can set the keyword argument\n``commit_now=True`` to indicate that the mutation must be immediately\ncommitted.\n\nA mutation can be executed using ``txn.do_request`` as well.\n\n.. code:: python\n\n mutation = txn.create_mutation(set_nquads='_:alice \"Alice\" .')\n request = txn.create_request(mutations=[mutation], commit_now=True)\n txn.do_request(request)\n\nRunning a query\n~~~~~~~~~~~~~~~\n\nYou can run a query by calling ``Txn#query(string)``. You will need to\npass in a GraphQL+- query string. If you want to pass an additional\ndictionary of any variables that you might want to set in the query,\ncall ``Txn#query(string, variables=d)`` with the variables dictionary\n``d``.\n\nThe response would contain the field ``json``, which returns the\nresponse JSON.\n\nLet\u2019s run a query with a variable ``$a``, deserialize the result from\nJSON and print it out:\n\n.. code:: python\n\n # Run query.\n query = \"\"\"query all($a: string) {\n all(func: eq(name, $a))\n {\n name\n }\n }\"\"\"\n variables = {'$a': 'Alice'}\n\n res = txn.query(query, variables=variables)\n\n # If not doing a mutation in the same transaction, simply use:\n # res = client.txn(read_only=True).query(query, variables=variables)\n\n ppl = json.loads(res.json)\n\n # Print results.\n print('Number of people named \"Alice\": {}'.format(len(ppl['all'])))\n for person in ppl['all']:\n print(person)\n\nThis should print:\n\n.. code:: console\n\n Number of people named \"Alice\": 1\n Alice\n\nYou can also use ``txn.do_request`` function to run the query.\n\n.. code:: python\n\n request = txn.create_request(query=query)\n txn.do_request(request)\n\nRunning an Upsert: Query + Mutation\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nThe ``txn.do_request`` function allows you to run upserts consisting of\none query and one mutation. Query variables could be defined and can\nthen be used in the mutation.\n\nTo know more about upsert, we highly recommend going through the docs at\nhttps://docs.dgraph.io/mutations/#upsert-block.\n\n.. code:: python\n\n query = \"\"\"{\n u as var(func: eq(name, \"Alice\"))\n }\"\"\"\n nquad = \"\"\"\n uid(u) \"25\" .\n \"\"\"\n cond = \"@if(eq(len(u), 1))\"\n mutation = txn.create_mutation(set_nquads=nquad, cond=cond)\n request = txn.create_request(query=query, mutations=[mutation], commit_now=True)\n txn.do_request(request)\n\nCommitting a transaction\n~~~~~~~~~~~~~~~~~~~~~~~~\n\nA transaction can be committed using the ``Txn#commit()`` method. If\nyour transaction consisted solely of calls to ``Txn#query`` or\n``Txn#queryWithVars``, and no calls to ``Txn#mutate``, then calling\n``Txn#commit()`` is not necessary.\n\nAn error is raised if another transaction(s) modify the same data\nconcurrently that was modified in the current transaction. It is up to\nthe user to retry transactions when they fail.\n\n.. code:: python\n\n txn = client.txn()\n try:\n # ...\n # Perform any number of queries and mutations\n # ...\n # and finally...\n txn.commit()\n except Exception as e:\n if isinstance(e, pydgraph.AbortedError):\n # Retry or handle exception.\n else:\n raise e\n finally:\n # Clean up. Calling this after txn.commit() is a no-op\n # and hence safe.\n txn.discard()\n\nCleaning Up Resources\n~~~~~~~~~~~~~~~~~~~~~\n\nTo clean up resources, you have to call ``DgraphClientStub#close()``\nindividually for all the instances of ``DgraphClientStub``.\n\n.. code:: python\n\n SERVER_ADDR = \"localhost:9080\"\n\n # Create instances of DgraphClientStub.\n stub1 = pydgraph.DgraphClientStub(SERVER_ADDR)\n stub2 = pydgraph.DgraphClientStub(SERVER_ADDR)\n\n # Create an instance of DgraphClient.\n client = pydgraph.DgraphClient(stub1, stub2)\n\n # ...\n # Use client\n # ...\n\n # Clean up resources by closing all client stubs.\n stub1.close()\n stub2.close()\n\nSetting Metadata Headers\n~~~~~~~~~~~~~~~~~~~~~~~~\n\nMetadata headers such as authentication tokens can be set through the\nmetadata of gRPC methods. Below is an example of how to set a header\nnamed \u201cauth-token\u201d.\n\n.. code:: python\n\n # The following piece of code shows how one can set metadata with\n # auth-token, to allow Alter operation, if the server requires it.\n # metadata is a list of arbitrary key-value pairs.\n metadata = [(\"auth-token\", \"the-auth-token-value\")]\n dg.alter(op, metadata=metadata)\n\nExamples\n--------\n\n- `simple <./examples/simple>`__: Quickstart example of using pydgraph.\n\nDevelopment\n-----------\n\nBuilding the source\n~~~~~~~~~~~~~~~~~~~\n\n.. code:: sh\n\n python setup.py install\n # To install for the current user, use this instead:\n # python setup.py install --user\n\nIf you have made changes to the ``pydgraph/proto/api.proto`` file, you\nneed need to regenerate the source files generated by Protocol Buffer\ntools. To do that, install the\n`grpcio-tools `__ library and\nthen run the following command:\n\n.. code:: sh\n\n python scripts/protogen.py\n\nRunning tests\n~~~~~~~~~~~~~\n\nTo run the tests in your local machine, you can run the script\n``scripts/local-tests.sh``. This script assumes Dgraph and dgo (Go\nclient) are already built on the local machine. The script will take\ncare of bringing up a Dgraph cluster and bringing it down after the\ntests are executed. The script uses the port 9180 by default to prevent\ninterference with clusters running on the default port. Docker and\ndocker-compose need to be installed before running the script. Refer to\nthe official Docker documentation for instructions on how to install\nthose packages.\n\nThe ``test.sh`` script downloads and installs Dgraph. It is meant for\nuse by our CI systems and using it for local development is not\nrecommended.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/dgraph-io/pydgraph", "keywords": "", "license": "Apache License, Version 2.0", "maintainer": "", "maintainer_email": "", "name": "pydgraph", "package_url": "https://pypi.org/project/pydgraph/", "platform": "", "project_url": "https://pypi.org/project/pydgraph/", "project_urls": { "Homepage": "https://github.com/dgraph-io/pydgraph" }, "release_url": "https://pypi.org/project/pydgraph/2.0.2/", "requires_dist": [ "grpcio (>=1.18.0)", "protobuf (>=3.6.1)" ], "requires_python": "", "summary": "Official Dgraph client implementation for Python", "version": "2.0.2" }, "last_serial": 5810350, "releases": { "0.3": [ { "comment_text": "", "digests": { "md5": "1f24d8673d518679ad3686e9fdda8437", "sha256": "5e8309d3cea0103c2f806e91e134aed0083e7cec8afb5484f681f2217e0aa746" }, "downloads": -1, "filename": "pydgraph-0.3.tar.gz", "has_sig": false, "md5_digest": "1f24d8673d518679ad3686e9fdda8437", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3743, "upload_time": "2016-07-06T09:39:43", "url": "https://files.pythonhosted.org/packages/61/80/8e1d2dcd4f90d179d67299a18bb6c349fdeb169cf379f84b6ee3057450cb/pydgraph-0.3.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "bb33524673f2cae2ced104ae47719903", "sha256": "0021c2f44b8613dfb80a060a54b2237951f122d0be2d75e1931ac3d887cfd36c" }, "downloads": -1, "filename": "pydgraph-0.3.1.tar.gz", "has_sig": true, "md5_digest": "bb33524673f2cae2ced104ae47719903", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7730, "upload_time": "2016-07-06T10:26:42", "url": "https://files.pythonhosted.org/packages/35/11/f71872cb0d957c76cf531467dd2ac4e44fb6cd96ceb9a817c3c134eb7ba1/pydgraph-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "3aaa3d0a98b20dfd039ee46189bc826a", "sha256": "e10feb71276bb09d575042ae9979975d557f43be18c8a0d7d5aa2569fd32f1a3" }, "downloads": -1, "filename": "pydgraph-0.3.2.tar.gz", "has_sig": true, "md5_digest": "3aaa3d0a98b20dfd039ee46189bc826a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7710, "upload_time": "2016-07-06T10:34:47", "url": "https://files.pythonhosted.org/packages/de/1b/35e80817227c9ee27e6299db09fd01407de585c5c10023be0cb97764ec1a/pydgraph-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "b169109d6f5eed99831e4dade5df625e", "sha256": "5555f0e11a00c8ed0fef8c2ee3c0e627dfc8bc57c755075c33ccefb614332feb" }, "downloads": -1, "filename": "pydgraph-0.3.3.tar.gz", "has_sig": true, "md5_digest": "b169109d6f5eed99831e4dade5df625e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7731, "upload_time": "2016-07-06T10:41:36", "url": "https://files.pythonhosted.org/packages/3f/f3/299cbdd6244b441742e9a49cc10d72059686cc5b30875af35e6e31575036/pydgraph-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "db0680111e5efcff7d3045f5d6530c84", "sha256": "0811ae46df8ef5bc5fa106ca27425f3b06fccca0f5798b59aa9f46b9bc3ea70c" }, "downloads": -1, "filename": "pydgraph-0.3.4.tar.gz", "has_sig": true, "md5_digest": "db0680111e5efcff7d3045f5d6530c84", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7730, "upload_time": "2016-07-06T10:45:04", "url": "https://files.pythonhosted.org/packages/67/4f/4646298b55cd76d9b1f3e7497b211c78a2653fd786fba2d7a8e35f30d8c3/pydgraph-0.3.4.tar.gz" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "ad21f0ad2ec53b34c13a5a92ca2bff8a", "sha256": "4408da23e0cbd36c28b1e1c994c76db5e8b783a1ad45400484577ee69e7e152e" }, "downloads": -1, "filename": "pydgraph-0.3.5.tar.gz", "has_sig": true, "md5_digest": "ad21f0ad2ec53b34c13a5a92ca2bff8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8568, "upload_time": "2016-07-06T10:53:54", "url": "https://files.pythonhosted.org/packages/2e/3a/b9277d356542561b62b113deb6ceefe7e35c6d29185de019104020edfbb9/pydgraph-0.3.5.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "47c9af620a9388c13cb2f545c36f00b3", "sha256": "642234d2f949c0784f0860e8f2684c38a2a75c7bab51c0ad64a9f40a53ea6156" }, "downloads": -1, "filename": "pydgraph-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "47c9af620a9388c13cb2f545c36f00b3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21770, "upload_time": "2018-05-16T06:15:15", "url": "https://files.pythonhosted.org/packages/5d/1c/270b853ff263e3e09c28ecb86dfdeef8290c6c0cb92aa109456251dd465a/pydgraph-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "af9f91e315f80696fbe2a4cfe886fde2", "sha256": "5816f913721e9edfd7b0bf47c9496f70adfc4ccf870d6d4badf5fb49b3997067" }, "downloads": -1, "filename": "pydgraph-1.0.0.tar.gz", "has_sig": false, "md5_digest": "af9f91e315f80696fbe2a4cfe886fde2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18741, "upload_time": "2018-05-16T06:15:17", "url": "https://files.pythonhosted.org/packages/f7/b5/b7f63112cbbc6cb03b62e14e004c04c0ec1a817d033cb7ff9aa69083d90b/pydgraph-1.0.0.tar.gz" } ], "1.0.0a1": [ { "comment_text": "", "digests": { "md5": "982f89da83a8102ebbe333902d91f23b", "sha256": "920952c779cfaac0bfc53c271d29de0a4295c2ec04da494d7d4a2f8592f1202d" }, "downloads": -1, "filename": "pydgraph-1.0.0a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "982f89da83a8102ebbe333902d91f23b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15375, "upload_time": "2018-04-04T07:03:05", "url": "https://files.pythonhosted.org/packages/aa/72/c6942ce5ab3a6f09e0fd0ce197d9330b5ebf8ffbf23052e389fa058a2a64/pydgraph-1.0.0a1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3ae26cfaad6e9bf10f339d820fdb35a7", "sha256": "e1a5929f7725fac09c244485e6a0da7bbe8d043c8c335350a6d0cd6145633512" }, "downloads": -1, "filename": "pydgraph-1.0.0a1.tar.gz", "has_sig": false, "md5_digest": "3ae26cfaad6e9bf10f339d820fdb35a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16832, "upload_time": "2018-04-04T07:03:06", "url": "https://files.pythonhosted.org/packages/fe/42/5479f4a43041abee217caba4bc354ae40f24a8c337f372ef739cc855e9ed/pydgraph-1.0.0a1.tar.gz" } ], "1.0.0a2": [ { "comment_text": "", "digests": { "md5": "5e7c30e3f142c044f81a372e519fcc7b", "sha256": "03dc4f9472fac116c9adad946b9a6909782e66be3d993ada55b9a12443f06312" }, "downloads": -1, "filename": "pydgraph-1.0.0a2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5e7c30e3f142c044f81a372e519fcc7b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21460, "upload_time": "2018-04-04T07:24:04", "url": "https://files.pythonhosted.org/packages/01/88/78bb1f9fe133ce825d853cc590a1e9267b0842788330b6836f8870e411bc/pydgraph-1.0.0a2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8adf697b7a55a3e42730614f1597e496", "sha256": "bd6421f885b45afd8a36ee2f693893936a9df3333102605be8950f2d955ec96a" }, "downloads": -1, "filename": "pydgraph-1.0.0a2.tar.gz", "has_sig": false, "md5_digest": "8adf697b7a55a3e42730614f1597e496", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17885, "upload_time": "2018-04-04T07:24:05", "url": "https://files.pythonhosted.org/packages/1d/69/9053a6575a151303a48a90ea86897d0d25f7be07ce4991e7e0c842bf10a8/pydgraph-1.0.0a2.tar.gz" } ], "1.0.0a3": [ { "comment_text": "", "digests": { "md5": "16b263fe03873741b18ed30e1a89a167", "sha256": "189503a9cb0fea84220612671e4fe76f99477415744bbdcb26c168a553c61a02" }, "downloads": -1, "filename": "pydgraph-1.0.0a3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "16b263fe03873741b18ed30e1a89a167", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21675, "upload_time": "2018-04-04T07:46:05", "url": "https://files.pythonhosted.org/packages/77/15/7fe117606c2a23493e5cb1b4b9df0b7384a0edab55701f9575651bef59cd/pydgraph-1.0.0a3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "216d809486436ee6d880d8cd98f5ccc3", "sha256": "158aba97ecab7b5c6f983524dec26cd482d1043040e17356d85cbe56055ddf47" }, "downloads": -1, "filename": "pydgraph-1.0.0a3.tar.gz", "has_sig": false, "md5_digest": "216d809486436ee6d880d8cd98f5ccc3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18540, "upload_time": "2018-04-04T07:46:06", "url": "https://files.pythonhosted.org/packages/c8/c6/bfade6a9afb0be075c5412678bef0995bfe284f8fec7e4f3bda8debd6152/pydgraph-1.0.0a3.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "328e944577e428732f0c09cf425af79f", "sha256": "ff065d1e604b38124b7bf1b96e41d7bc129f7d94247ba1e0d0974da21f05727c" }, "downloads": -1, "filename": "pydgraph-1.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "328e944577e428732f0c09cf425af79f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 22836, "upload_time": "2019-01-03T23:37:14", "url": "https://files.pythonhosted.org/packages/9e/42/1c92cfbdce88b4f296a0dc233ca8e9abe1320aaa7e2940606df3d18fd875/pydgraph-1.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "19b5e4bd614ac95a1858cf67087de328", "sha256": "8238435c4ca8afbebebdbb332df9ebccb217c374459f235f0845bd8f2e71c6df" }, "downloads": -1, "filename": "pydgraph-1.0.1.tar.gz", "has_sig": false, "md5_digest": "19b5e4bd614ac95a1858cf67087de328", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24069, "upload_time": "2019-01-03T23:37:16", "url": "https://files.pythonhosted.org/packages/02/2f/92ea3aa5e854ea4b59f2a559726bd7c481bdaa92dfad9600444bbdd8139d/pydgraph-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "51fbf7cbe65341e3c9e64557cdbdec94", "sha256": "57e0f08ab1407d4b16030b7640d89de4ce29de8e82db7b5d13eb7fec54e23d10" }, "downloads": -1, "filename": "pydgraph-1.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "51fbf7cbe65341e3c9e64557cdbdec94", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 22942, "upload_time": "2019-03-19T19:15:50", "url": "https://files.pythonhosted.org/packages/f9/3a/020edfbeadd058803deb632c16b2ae8c754be96aa0100381448b41eea246/pydgraph-1.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0dae11d50b868c276063a6182496b592", "sha256": "9687d839e3ed5235882e94f390cb9de8360baeb31dc44e7705f40ec57d66b7b3" }, "downloads": -1, "filename": "pydgraph-1.0.2.tar.gz", "has_sig": false, "md5_digest": "0dae11d50b868c276063a6182496b592", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24278, "upload_time": "2019-03-19T19:15:52", "url": "https://files.pythonhosted.org/packages/24/60/5409d062ec77707f70094fab2721b2fc7f0d7f01e2c5d4121e169f36a732/pydgraph-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "93a99572a1d7cb639c6c48c1d8e150a2", "sha256": "0eb29138217818f00842fe41fb141c204819261ab5e75c8a33bea69efeaaf3f0" }, "downloads": -1, "filename": "pydgraph-1.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "93a99572a1d7cb639c6c48c1d8e150a2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 23189, "upload_time": "2019-03-20T21:48:56", "url": "https://files.pythonhosted.org/packages/0f/a3/227eaaa7509add5b00583f48e584354604b3824a6c67d9d37ddf53143b0f/pydgraph-1.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fa439bc718ed726d1bd0a7b2771983d5", "sha256": "ffe5df8e97420397642b916ba33c89169ea853124f8faae0349016bb0abe56ae" }, "downloads": -1, "filename": "pydgraph-1.0.3.tar.gz", "has_sig": false, "md5_digest": "fa439bc718ed726d1bd0a7b2771983d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24652, "upload_time": "2019-03-20T21:48:57", "url": "https://files.pythonhosted.org/packages/68/f3/2ab7103f86014cae925193412d00c7012982261c6b5eff8861b3d415fa02/pydgraph-1.0.3.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "dbbb3f2f9bd4615fa3df24135c511b79", "sha256": "519e9f3bf86593a93fe0b4cd8213ab5e57eec1a4e9476fa5aa8525d2162aefb0" }, "downloads": -1, "filename": "pydgraph-1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "dbbb3f2f9bd4615fa3df24135c511b79", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 23699, "upload_time": "2019-04-16T22:20:40", "url": "https://files.pythonhosted.org/packages/4d/86/2c0fa19f0d2a0d582d493c94768abe921b81b536dd703f5c26d0d47daea5/pydgraph-1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fb6459839b8a69bc9fa5c88ceb21f58f", "sha256": "38f63ade971adbf858c039f72745e7b5abaa3ac0649ee7c60f6b964d6252553a" }, "downloads": -1, "filename": "pydgraph-1.1.tar.gz", "has_sig": false, "md5_digest": "fb6459839b8a69bc9fa5c88ceb21f58f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25063, "upload_time": "2019-04-16T22:20:42", "url": "https://files.pythonhosted.org/packages/d9/38/7f77a2bd90590e1d4395655f1a3d8267056cd84c03d978c491ca909efbba/pydgraph-1.1.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "a2b0d0b877a383ebe5343f20c102184f", "sha256": "08fc0f6cba2d172995efa4db2931685b6caef068c14d75ce5b189942c89a853c" }, "downloads": -1, "filename": "pydgraph-1.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a2b0d0b877a383ebe5343f20c102184f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 23708, "upload_time": "2019-04-27T00:06:13", "url": "https://files.pythonhosted.org/packages/a2/93/210c370ec3029ed0ce4436743a5f03bba8e477e4634f4b24b7a675849919/pydgraph-1.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "743917642cdd9304e9a6fe90eb8ca5ff", "sha256": "6e7285cb5e7faebb58b801ea487528cb011529f063143342006ec4b87d087f2e" }, "downloads": -1, "filename": "pydgraph-1.1.1.tar.gz", "has_sig": false, "md5_digest": "743917642cdd9304e9a6fe90eb8ca5ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25061, "upload_time": "2019-04-27T00:06:15", "url": "https://files.pythonhosted.org/packages/5a/5c/19b8e4b606c81471145d967e59be9f5414c9aad23602b2b50438a971be97/pydgraph-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "8de6d8d739d8710498302e398abd39c2", "sha256": "28e4f19fa8906c918045de1c8928323465bd8599de9b5f3c74ca19ebe88c0b16" }, "downloads": -1, "filename": "pydgraph-1.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8de6d8d739d8710498302e398abd39c2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 23728, "upload_time": "2019-06-07T22:27:50", "url": "https://files.pythonhosted.org/packages/67/6b/a879ab2a59e97f8a9a82d7e80f00910a7d4341ea667905df01c39e8ab623/pydgraph-1.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4346c144bce4771e415a2dbd68287720", "sha256": "cab81957606482c8a486be41e347780ef2d2aadcf97f4a7f7fbe2ae4e55ab268" }, "downloads": -1, "filename": "pydgraph-1.1.2.tar.gz", "has_sig": false, "md5_digest": "4346c144bce4771e415a2dbd68287720", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25094, "upload_time": "2019-06-07T22:27:52", "url": "https://files.pythonhosted.org/packages/3e/b0/a45cbb84c3c8fc4b1bd9927fbbfaaf08d4fc8a8bd2661f5e0e405c538388/pydgraph-1.1.2.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "62d5851dce0cfbd72e30a8a99b153bc0", "sha256": "0763b2c1c7c9955ba06af195f3f193db0a33fa6575084b672a7515a1e0ba5650" }, "downloads": -1, "filename": "pydgraph-1.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "62d5851dce0cfbd72e30a8a99b153bc0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 24005, "upload_time": "2019-06-20T19:30:55", "url": "https://files.pythonhosted.org/packages/d1/cd/25ac8d97f346fdbed0ad53e04ae2dd8360d0b93efec211d606cdff4a0af7/pydgraph-1.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4555cee52d90f89e4f267c37b5280688", "sha256": "c661a44716dd1e28d45ed606c0d72672b065e9a2d548fdd98d8c1292ff33e4c1" }, "downloads": -1, "filename": "pydgraph-1.2.0.tar.gz", "has_sig": false, "md5_digest": "4555cee52d90f89e4f267c37b5280688", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25425, "upload_time": "2019-06-20T19:30:57", "url": "https://files.pythonhosted.org/packages/21/61/e302bb03638e0ab93ef4a6cd2c043266303f13afd5f339a8a185be0e8fb9/pydgraph-1.2.0.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "f0a074d4bdcc3fc2e7a9d8bae92cd384", "sha256": "afeabbf8657bf1993df6b1c45705fa0f9349503a2e02f9d500ebb76e5b878158" }, "downloads": -1, "filename": "pydgraph-2.0.0.tar.gz", "has_sig": false, "md5_digest": "f0a074d4bdcc3fc2e7a9d8bae92cd384", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20680, "upload_time": "2019-09-06T08:19:15", "url": "https://files.pythonhosted.org/packages/4d/19/025436211062e121cc344d2f34ed40e990a12a6437d3478161552bf08451/pydgraph-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "2ceaf955905b122c71ba18e9b73b71ed", "sha256": "2ee8ffb4df371b0b1098d0779ff8de13a5a8db74b0875951cfa94268ddcc88da" }, "downloads": -1, "filename": "pydgraph-2.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2ceaf955905b122c71ba18e9b73b71ed", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 22867, "upload_time": "2019-09-06T17:35:13", "url": "https://files.pythonhosted.org/packages/ee/0e/705d20b8271810d3651701d40fe42e373130c1765daa07fd0da8494cae9c/pydgraph-2.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b690ba3c8e73461014ebf7bb3a3e719f", "sha256": "2d8543c6f1f64dc4aa24b27898954e7a7a2b88ef50d3f1dd9670b2cff1430df8" }, "downloads": -1, "filename": "pydgraph-2.0.1.tar.gz", "has_sig": false, "md5_digest": "b690ba3c8e73461014ebf7bb3a3e719f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24266, "upload_time": "2019-09-06T17:35:16", "url": "https://files.pythonhosted.org/packages/e4/fb/30cf7a2200aac67589c6ed339a1d246662c06f692715fa731cfb2fcd1953/pydgraph-2.0.1.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "18a86120a07650e16b3555cfd3127649", "sha256": "b4c91156aef5ef0899bee52224dab7ad8cf8ae63a82d16011d372f18f91090f7" }, "downloads": -1, "filename": "pydgraph-2.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "18a86120a07650e16b3555cfd3127649", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 22868, "upload_time": "2019-09-10T17:43:22", "url": "https://files.pythonhosted.org/packages/d5/33/aa0e202e8f69e80fb5e187f5eba8a07d8626683f3fe89f1d268438e10957/pydgraph-2.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "08a3bc3a1e47296803137fdc5ed32490", "sha256": "38bfa37b785bf5bcf53f58a02ce8417d40c83723c6b2cdbf428437fbc517ce61" }, "downloads": -1, "filename": "pydgraph-2.0.2.tar.gz", "has_sig": false, "md5_digest": "08a3bc3a1e47296803137fdc5ed32490", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24228, "upload_time": "2019-09-10T17:43:24", "url": "https://files.pythonhosted.org/packages/33/41/554e65219e412a631e2dd84159ac1e2721a7654ae07fc846397d113bd513/pydgraph-2.0.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "18a86120a07650e16b3555cfd3127649", "sha256": "b4c91156aef5ef0899bee52224dab7ad8cf8ae63a82d16011d372f18f91090f7" }, "downloads": -1, "filename": "pydgraph-2.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "18a86120a07650e16b3555cfd3127649", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 22868, "upload_time": "2019-09-10T17:43:22", "url": "https://files.pythonhosted.org/packages/d5/33/aa0e202e8f69e80fb5e187f5eba8a07d8626683f3fe89f1d268438e10957/pydgraph-2.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "08a3bc3a1e47296803137fdc5ed32490", "sha256": "38bfa37b785bf5bcf53f58a02ce8417d40c83723c6b2cdbf428437fbc517ce61" }, "downloads": -1, "filename": "pydgraph-2.0.2.tar.gz", "has_sig": false, "md5_digest": "08a3bc3a1e47296803137fdc5ed32490", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24228, "upload_time": "2019-09-10T17:43:24", "url": "https://files.pythonhosted.org/packages/33/41/554e65219e412a631e2dd84159ac1e2721a7654ae07fc846397d113bd513/pydgraph-2.0.2.tar.gz" } ] }