{ "info": { "author": "Javier de la Rosa", "author_email": "versae@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: GNU General Public License (GPL)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Topic :: Internet :: WWW/HTTP" ], "description": ".. image:: https://travis-ci.org/versae/neo4j-rest-client.png?branch=master\n :target: https://travis-ci.org/versae/neo4j-rest-client\n\n.. image:: https://coveralls.io/repos/versae/neo4j-rest-client/badge.png?branch=master\n :target: https://coveralls.io/r/versae/neo4j-rest-client?branch=master\n\n.. image:: https://pypip.in/d/neo4jrestclient/badge.png\n :target: https://pypi.python.org/pypi/neo4jrestclient/\n :alt: Downloads\n\n\nNeo4j Python REST Client\n========================\n\n:synopsis: Object-oriented Python library to interact with Neo4j standalone REST server.\n\nThe first objective of Neo4j Python REST Client is to make transparent for\nPython programmers the use of a local database through python-embedded_ or a\nremote database thanks to Neo4j REST Server. So, the syntax of this API is\nfully compatible with python-embedded. However, a new syntax is introduced in\norder to reach a more pythonic style.\n\n\nInstallation_\n-------------\n\nAvailable throught Python Package Index::\n\n $ pip install neo4jrestclient\n\nOr::\n\n $ easy_install neo4jrestclient\n\n\n`Getting started`_\n------------------\n\nThe main class is *GraphDatabase*, exactly how in python-embedded_:\n\n.. code:: python\n\n >>> from neo4jrestclient.client import GraphDatabase\n\n >>> gdb = GraphDatabase(\"http://localhost:7474/db/data/\")\n\nDue to the syntax is fully compatible with python-embedded_, the next lines only show\nthe commands added and its differences.\n\nCreating a node:\n\n.. code:: python\n\n >>> n = gdb.nodes.create()\n\n # Equivalent to\n >>> n = gdb.node()\n\nSpecify properties for new node:\n\n.. code:: python\n\n >>> n = gdb.nodes.create(color=\"Red\", width=16, height=32)\n\nAccessing properties:\n\n.. code:: python\n\n >>> value = n['key'] # Get property value\n\n >>> n['key'] = value # Set property value\n\nCreate relationship:\n\n.. code:: python\n\n >>> n1.relationships.create(\"Knows\", n2) # Useful when the name of\n # relationship is stored in a variable\n\nSpecify properties for new relationships:\n\n.. code:: python\n\n >>> n1.Knows(n2, since=123456789, introduced_at=\"Christmas party\")\n\n\nDocumentation_\n--------------\n\nFor the extended and latest version of the documentation, please, visit the\n`read the docs`_ site\n\n\n\n.. _python-embedded: http://docs.neo4j.org/drivers/python-embedded/snapshot/\n.. _lucene-querybuilder: http://github.com/scholrly/lucene-querybuilder\n.. _`read the docs`: http://readthedocs.org/docs/neo4j-rest-client/en/latest/\n.. _Documentation: http://readthedocs.org/docs/neo4j-rest-client/en/latest/\n.. _Installation: https://neo4j-rest-client.readthedocs.org/en/latest/info.html#installation\n.. _`Getting started`: https://neo4j-rest-client.readthedocs.org/en/latest/info.html#getting-started\n\n\n.. image:: https://badges.gitter.im/Join%20Chat.svg\n :alt: Join the chat at https://gitter.im/versae/neo4j-rest-client\n :target: https://gitter.im/versae/neo4j-rest-client?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge\n\nChanges\n=======\n\n2.1.1 (2015-11-20)\n------------------\n- Add dockerized travis\n- Fix #119. Allow labels create nodes directly\n- Fix #122. Problem clearing labels of a node. Fix also a cache issue. Update travis to run python 3.4 and Neo4j verions\n- Add more serialization support for extensions\n\n\n2.1.0 (2014-11-17)\n------------------\n- Fix pip install error\n- Remove lucene-querybuilder as dependency\n- Add stats for query execution\n- Add support for resultDataContents param in the transactional Cypher endpoint\n- Fix #116. Although the old reference is still kept, the object does not exist\n in server and will fail\n- Add Neo4j 2.1.5 to travis\n- Fixes issues #109 and #114, related to a memory leak in query transactions\n- Fix #113. Add a way to cast query results from collection functions in Cypher\n- Change .iteritems to items for Python 3 compatibility\n- Change to enterprise for testing\n- Fix URI_REWRITES option. Remove testing for 1.7.2, and add 2.1.4.\n- Fix the download script for Neo4j, neo4j-clean-remote-db-addon no longer used.\n- Add uri rewrites as a work around neo4j issue #2985\n- Some pruning bugs\n- Labels url is stored in node_labels settings key\n- Fixed bug in prune function: it didn't return the self object\n- Fixed bug for prunning with JS code: added the case in traverse method for\n prunning based on an arbitrary Javascript code.\n\n\n2.0.4 (2014-06-20)\n------------------\n- Typos\n- Bugfixes\n- Drop support for 1.6 branch\n\n\n2.0.3 (2014-05-16)\n------------------\n- Update travis to test Neo4j versions 1.9.7 and 2.0.3\n- Fix #104. Keep backwards compatibility for 'nullable' prior 2.0\n It will be deprecated for Neo4j>=2.0.0\n- Update Q class for nullable=True\n- Fix un/pickling extenions\n- Refactorize get auth information from the connection URL\n- Update queries.rst (typo)\n- Fix the lazy loading of extensions\n\n\n2.0.2 (2014-04-04)\n------------------\n- Add Pickle support for GraphDatabase objects\n- Add small control to change display property in IPython\n- Add a new parameter to auto_execute transactions in one single request\n- Fix auto transaction in Cypher queries for Neo4j versions prior 2.0\n- The non transactional Cypher will be removed eventually, so we create now\n a transaction per query automatically\n- Experimental support for IPython Notebook rendering\n- Fix #101. Fix a problem when accessing node properties inside transaction\n for queries\n\n\n2.0.1 (2014-03-23)\n------------------\n- Fix coveralls for Travis\n- Fix #100. Fixes rollback problem when outside a with statement\n- Update Neo4j versions for testing\n- Remove inrange test for version 1.7.2 of Neo4j\n- Add specific test for inrange lookups\n- Fixes #98. Bug due to an incorrect treatment of numbers in eq, equals,\n neq, notequals lookups\n- Add downloads\n- Split exceptions from request.py file to a exceptions.py file\n- Update requirements.txt\n- Fix #96, fix dependency versions\n- Fix #95. Support for creating spatial indexes\n\n\n2.0.0 (2013-12-30)\n------------------\n- Add support for Neo4j 2.0\n- Add Python3 support\n- Remove Python 2.6 support\n- Add support for Cypher transactional endpoint\n- Add documentation for Cypher transactions\n- Add support for Labels\n- Add documentation for Labels\n- Add support to pass Neo4j URL as the host, and neo4j-rest-client will request\n for the '/db/data' part in an extra request\n- Add option for enabling verification of SSL certificates\n- Fix #94. Disable lazy loading from Cypher queries but keep if for filters\n- Update documentation\n- Add the option to 'create' labels and add nodes to them\n- Add filtering support for Labels\n- Add tests for Labels\n- Better structure to organize tests\n- Add UnitTest.skipIf instead of my own decorator @versions\n- Add development requirements and PyPy to Travis\n- Add flake8\n- Add support for tox\n- Skip some test that depend on newer versions of other dependencies\n- Update README with Coveralls.io image\n- Add coverage\n- Add extra requires for tests\n- Enable syntax highlighting, fix spelling errors\n- Fix #92. Allow nodes to be deleted from index without key or value\n- Fix an error on traversals time_out when decimal values are passed\n- Update Neo4j versions for Travis\n- PEP8 review\n- Add .all method to get all the elements. Underneath, it invokes .filter\n with no arguments\n- Merge pull request #85 from carlsonp/patch-1\n\n\n1.9.0 (2013-05-27)\n------------------\n- Add Neo4j 1.9 and 2.0.0-M02 to tests and Travis.\n- Fix Python 2.6 compatibility. Last Python 2.6 issue fixed.\n- Fix test_filter_nodes_complex_lookups test for empty databases\n- Fix get_or_create and create_or_fail tests and add SMART_ERRORS for those functions\n- Add support for Neo4j versions when testing in Travis\n- Add support for get_or_create and create_or_fail index operations\n- Adding integration tests with Travis-CI\n- Updated requirements.txt with Shrubbery proposals\n- Add experimental support for smart dates\n\n\n1.8.0 (2012-12-09)\n------------------\n- Updated lucene-querybuilder requirement.\n- Add support for using Indexes as start points when filtering\n- Add support for using filters in indices.\n- Fixes an error when using cert and key files.\n- Adding order by and filtering for relationships.\n- First implementation of complex filtering and slicing for nodes based on\n Cypher.\n- Improving stability of tests.\n- Fixes #74. Added the new .query() method and casting for returns. Also a very\n initial .filter method with an special Q object for composing complex filters.\n- Fixes #64, added a small unicode check.\n- Feature cache store and cache extension requests. Every time extension is used\n a get request is made before post this only needs to happen once per extension.\n- Allow user to configure own cache engine, (e.g djangos cache).\n- Read test db url from environ.\n- Fixes #71. Pass correct url to get. Get with missing '/' was causing an\n additional 302.\n- Support keep-alive / pipelining: httplib now instantiated on module load not\n per quest this also fixes caching, when the CACHE option was set a no-cache\n header was added that by passed the cache system.\n- Fixes #68. Gremlin query trips on \"simple\" list, but not an error no\n neo4j-rest-client side.\n- Fixes #69. Incorrect node references when splitting transactions.\n- Adding support for retrieving index elements in a transaction.\n- Fixes #66. Ditch exception catch on root fetch at GraphDatabase.__init__().\n As per #65, current behaviour when auth fails is that a 401 StatusException\n is raised, and caught by this try/except block and a misleading NotFoundError\n is raised in its place - lets just let the StatusException through. Unsure\n about what other Exceptions may be raised but cannot reproduce.\n- Fixed issue #69. Transaction split.\n- Adding support for retrieving index elements in a transaction.\n\n\n1.7.0 (2012-05-17)\n------------------\n- Fixing an error when reating relationships with nodes created previously in\n a transactions.\n- Fixing typo (self._aith vs self_auth).\n- Fixing #60. Adding support when no port is specified.\n- Fixing an error with unicode property names and indexing.\n\n\n1.6.2 (2012-03-26)\n------------------\n- Fixing an error indexing with numeric values.\n- Fixing an error indexing with boolean values.\n- Adding initial unicode suppport for indices.\n Adding better debug messages to 400 response codes.\n\n\n1.6.1 (2012-02-27)\n------------------\n- Fixes #29. Adding support for authentication.\n\n\n1.6.0 (2012-02-27)\n------------------\n- Adding documentation site.\n- Finishing the experimental support for indexing and transactions.\n- Adding preliminar indexing support in trasnsactions.\n- Adding a new way to traverse the graph based on python-embedded.\n- Removing __credits__ in favor of AUTHORS file. Updating version number.\n- Fixes #33. Deprecating the requirement of a reference node.\n- Added methods to bring it in line with the embedded driver.\n- Added .single to Iterable and .items() to Node to bring it into alignment\n with the embedded driver.\n- Adding non-functional realtionshos creation inside transactions.\n- New returnable type \"RAW\", added in constants. Very useful for Gremlin and\n Cypher queries.\n- Extensions can now return raw results. Fixes #52.\n- Added a test for issue #52, returns=RAW.\n- Adding relationships support to transactions.\n- Fixes #49. Usage in extensions.\n- Improving transaction support. Related #49.\n- Fixing some PEP08 warnings.\n- Fixes #43. Unable to reproduce the error.\n- Fixes #49. Improving the batch efficiency in get requests.\n- Fixes #47. Improving Paths management in traversals.\n- Adding 'content-location' as possible header in responses instead of\n just 'location'.\n- Fixing an error wwhen the value of a set property operation is None.\n- Merge branch 'master' of github.com:versae/neo4j-rest-client into devel.\n- Fix for paginated traversals under Neo4j 1.5.\n- Added check for 'content-location' header in PaginatedTraversal, ensuring\n traversals don't stop early with Neo4j 1.5.\n\n\n1.5.0 (2011-10-31)\n------------------\n- Removing the smart_quote function from indexing. It's not needed anymore with\n the new way to add elements to indices.\n- Fixes #37.\n- Using JSON object to set index key and value.\n\n\n1.4.5 (2011-09-15)\n------------------\n- Adding more testing to returns parameter in the extensions.\n- Fixes 32. It needs some more testing, maybe.\n- Updated to using lucene-querybuilder 0.1.5 (bugfixes and better wildcard\n support).\n- Fixed the test issue found in #34, and updated the REST client to using\n lucene-querybuilder 0.1.5.\n- Fixes #34. Fixing dependency of lucene-querybuilder version\n- Fixes #30. Fixing an issue deleting all index entries for a node.\n- Fixing an issue with parameters in extensions.\n- Ensure that self.result is always present on the object, even if it's None.\n- Fixing naming glitch in exception message\n- Ensure that self.result is always present on the object, even if it's None\n- Fixing an error retrieving relationships in paths.\n- Fixing an error in extensions, Path and Position.\n\n\n1.4.4 (2011-08-17)\n------------------\n- Merge pull request #28 from mhluongo/master\n- Made the DeprecationWarnings a bit more specific.\n- Nodes can now be used in set and as dict keys, differentiated by id.\n- Added a test for node hashing on id.\n- Removed the 'Undirected' reference from tests to avoid a DepreactionWarning.\n- Moved the relationship creation DeprecationWarning so creating a relationship\n the preferred way won't raise it.\n- Got rid of the DeprecationWarning on import- moved in to whenever using\n Undirected.*.\n- Fixed traversal return filters.\n- Enabled return filters, including those with custom javascript bodies.\n Eventually a more elegant (Python instead of string based) solution for\n return filter bodies is in order.\n- Fixed a mispelling in the test_traversal_return_filter case.\n- Added a test for builtin and custom traversal return filters.\n- Small bug fix for traversal\n- Fixed bug in traverse method for POSITION and PATH return types.\n\n\n1.4.3 (2011-07-28)\n------------------\n- Added some deprecation warnings.\n- Added support for pickling ans some tests.\n- Fixed an error deleting nodes and relationships on transactions.\n- Finishied and refactored the full unicode support.\n\n\n1.4.2 (2011-07-18)\n------------------\n- Updated the documentation and version.\n- Added support for indices deletion.\n- Improved Unicode support in properties keys and values and relationships\n types. Adding some tests.\n\n\n1.4.1 (2011-07-12)\n------------------\n- Fixed an error retrieving relationships by id.\n- Added control to handle exceptions raised by Request objects.\n- Updated changes, manifest and readme files.\n\n\n1.4.0 (2011-07-11)\n------------------\n- Updated version number for the new release.\n- Updated documentation.\n- Updated develpment requirements.\n- Added support for paginated traversals.\n- Passed pyflakes and PEP8 on tests.\n- Added weight to Path class.\n- Index values now quoted_plus.\n- Changed quote to quote_plus for index values.\n- Added two tests for unicode and url chars in index values.\n- Added initial documentacion for transactions.\n- Added the transaction support and several tests.\n- Fixed the implementation of __contains__ in Iterable class for evaluation\n of 'in' and 'not in' expressions.\n- Added documentation for Iterable objects.\n- Added more transactions features.\n- Added requirements file for virtual environments in development.\n- Improved number of queries slicing the returned objects in a Iterable\n wrapper class.\n- Added Q syntax for more complicated queries.\n- Added support for the Q query syntax for indexes using the DSL\n at http://github.com/scholrly/lucene-querybuilder\n- Fixed an error in the test_query_index case (forgot to include an 'or'.\n between queries).\n- Added lucene-querybuilder to the test requirements in setup.py.\n- Added a test case for Q-based queries.\n\n\n1.3.4 (2011-06-22)\n------------------\n- Fixed the setup.py and httplib2 import error during installing.\n- Reordered the options variables in an options.py file.\n Allows index.query() to be called with or without a key\n- Fixed issue #15 regarding dependency to httplib2\n- Patched index.query() so it can take a query without a key (to support, say,\n mutli-field Lucene queries). Ultimately, query so probably be refactored to\n Index (instead of IndexKey) because IndexKey doesn't actually help with\n full-text queries.\n- Fixed for issue #19 (missed that urllib.quote).\n- Altered the test_query_index case to reflect how I think indexing should\n work.\n- Using assertTrue instead of failUnless in tests.py, failUnless is deprecated\n in 2.7 and up, so I figured we might as well switch.\n- Added SMART_ERRORS (aka \"Django mode\"). If you set SMART_ERROR to True it\n will make the client throw KeyError instead of NotFoundError when a key is\n missing.\n\n\n1.3.3 (2011-06-14)\n------------------\n- Fixed an introspection when the results list of a traverse is empty.\n- Merge pull request #17 from mhluongo/master\n- Resolved the STOP_AT_END_OF_GRAPH traversal test case.\n Calling .traverse(stop=STOP_AT_END_OF_GRAPH) will now traverse the graph\n without a max depth (and without 500 errors).\n- Added a failing test case for traverse(stop=STOP_AT_END_OF_GRAPH).\n\n\n1.3.2 (2011-05-30)\n------------------\n- Added a test for deleting relationships.\n- Fixing an Index compatibility issue with Python 2.6.1.\n- Fixing an error in extensions support with named params.\n\n\n1.3.1 (2011-04-16)\n------------------\n- Fixing setup.py.\n\n\n1.3.0 (2011-04-15)\n------------------\n- First Python Index Package release with full support for Neo4j 1.3.", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/versae/neo4j-rest-client", "keywords": "neo4j graph graphdb graphdatabase database rest client driver", "license": "GPL 3", "maintainer": null, "maintainer_email": null, "name": "neo4jrestclient", "package_url": "https://pypi.org/project/neo4jrestclient/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/neo4jrestclient/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/versae/neo4j-rest-client" }, "release_url": "https://pypi.org/project/neo4jrestclient/2.1.1/", "requires_dist": null, "requires_python": null, "summary": "Object-oriented Python library to interact with Neo4j standalone REST server", "version": "2.1.1" }, "last_serial": 1826694, "releases": { "1.3.0": [ { "comment_text": "", "digests": { "md5": "313f44bf459bce6c17ce91956b6e0015", "sha256": "05ffa8ee9ce5221a713a56dc5c771ddd070e3498f3fa190106043ece58d3190e" }, "downloads": -1, "filename": "neo4jrestclient-1.3.0.tar.gz", "has_sig": false, "md5_digest": "313f44bf459bce6c17ce91956b6e0015", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44901, "upload_time": "2011-04-15T22:27:33", "url": "https://files.pythonhosted.org/packages/15/67/0fea6e267eb84db4d3cdf7fc087aa7ed20cdfbd863f60c2e7e3765320485/neo4jrestclient-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "9c150a105d4bcbba5c7961fe478ddd13", "sha256": "c60401e9278c8aa4ff580174a91b4dfac378e8774fab5f8b984a73e598e3e377" }, "downloads": -1, "filename": "neo4jrestclient-1.3.1.tar.gz", "has_sig": false, "md5_digest": "9c150a105d4bcbba5c7961fe478ddd13", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44958, "upload_time": "2011-04-15T22:31:37", "url": "https://files.pythonhosted.org/packages/28/d6/8aebf337cd28bb7449c6d18159c053f4afcbe66e218d0e5d8e146022e05b/neo4jrestclient-1.3.1.tar.gz" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "5b8c8c69488f53626dad971a675e308b", "sha256": "1aaa8964a78dc9ecb7704aaf1a7c948c2f189029f3e2d2294a5d215e7d083dbe" }, "downloads": -1, "filename": "neo4jrestclient-1.3.2.tar.gz", "has_sig": false, "md5_digest": "5b8c8c69488f53626dad971a675e308b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51136, "upload_time": "2011-05-30T19:03:07", "url": "https://files.pythonhosted.org/packages/48/50/0f5666bf1da287d23f357fd3be0f2aca0297b59ab8bd01f39d09b36c126d/neo4jrestclient-1.3.2.tar.gz" } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "3797b12666156812246baf692063be93", "sha256": "909fe0d81312e6dd485d326cf8eeccc843ce175a578df68e71a026c6fb94a1f2" }, "downloads": -1, "filename": "neo4jrestclient-1.3.3.tar.gz", "has_sig": false, "md5_digest": "3797b12666156812246baf692063be93", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51698, "upload_time": "2011-06-14T22:57:14", "url": "https://files.pythonhosted.org/packages/6c/1f/2ae48c4931c034509a993f4e084fde4274e0879955a7a3a219f1adb44899/neo4jrestclient-1.3.3.tar.gz" } ], "1.3.4": [ { "comment_text": "", "digests": { "md5": "7237bd304911b6f73ab3b8ef8624eeea", "sha256": "8a99317901a7e576049d9ab7bcb570aea8b9182ae7c3a3070aa3b13014e1ca43" }, "downloads": -1, "filename": "neo4jrestclient-1.3.4.tar.gz", "has_sig": false, "md5_digest": "7237bd304911b6f73ab3b8ef8624eeea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57569, "upload_time": "2011-06-22T23:14:17", "url": "https://files.pythonhosted.org/packages/f9/4e/324882e1643cb2147f486e14636149f7b63f1ffd14fd34f3a11699e6f22f/neo4jrestclient-1.3.4.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "dc5f8b22f2ccddf364aaab4494136cb9", "sha256": "db4be71a642c165eecf55e9e7560319523e59764a1fe7ab06dbb241cb5dc3165" }, "downloads": -1, "filename": "neo4jrestclient-1.4.0.tar.gz", "has_sig": false, "md5_digest": "dc5f8b22f2ccddf364aaab4494136cb9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37611, "upload_time": "2011-07-11T23:11:33", "url": "https://files.pythonhosted.org/packages/c4/44/31112911661ed285c7ecd288aa289f8946d1c2c01cee2f467e762fbbcc81/neo4jrestclient-1.4.0.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "0bbd7dd52f4c88e802d3077a886374da", "sha256": "bf521d25b4cb28afe0c478cd5183d983e8b68a7848fdf6139cea6546e8a4875d" }, "downloads": -1, "filename": "neo4jrestclient-1.4.1.tar.gz", "has_sig": false, "md5_digest": "0bbd7dd52f4c88e802d3077a886374da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37804, "upload_time": "2011-07-12T20:10:54", "url": "https://files.pythonhosted.org/packages/56/aa/f9727523443a84173550cff5995986c16c82eb81d17659a955f03740de5d/neo4jrestclient-1.4.1.tar.gz" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "79e2a85b095c8e063af8d83e5cb9260b", "sha256": "185047ab969c5ae8f6390f6e54b4e5807f5fe760bc8e3e7e946400b693e8c11a" }, "downloads": -1, "filename": "neo4jrestclient-1.4.2.tar.gz", "has_sig": false, "md5_digest": "79e2a85b095c8e063af8d83e5cb9260b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38498, "upload_time": "2011-07-18T18:27:39", "url": "https://files.pythonhosted.org/packages/fd/fd/60ce844ff471cdde16a2109845f4e9285aae9810e8b4f5f572e2920afeb2/neo4jrestclient-1.4.2.tar.gz" } ], "1.4.3": [ { "comment_text": "", "digests": { "md5": "1c3740dbde042b00d1ebafd9a24433af", "sha256": "9dab49d85f6351550e796767de11d0d2fd192d76c653ccf676186cee8a7f1b20" }, "downloads": -1, "filename": "neo4jrestclient-1.4.3.tar.gz", "has_sig": false, "md5_digest": "1c3740dbde042b00d1ebafd9a24433af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39207, "upload_time": "2011-07-28T22:45:21", "url": "https://files.pythonhosted.org/packages/f9/0f/b9ec883114c81f2465b797544be969fea3681bf8c9e57f8c8cd9b2ba7935/neo4jrestclient-1.4.3.tar.gz" } ], "1.4.4": [ { "comment_text": "", "digests": { "md5": "7b46d9702bdd2093b3e8d927e10e165b", "sha256": "2b1ac60891c10046a07f3c81147f8607c538cad5deeb90d7d20e055e1955650a" }, "downloads": -1, "filename": "neo4jrestclient-1.4.4.tar.gz", "has_sig": false, "md5_digest": "7b46d9702bdd2093b3e8d927e10e165b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46805, "upload_time": "2011-08-17T12:24:22", "url": "https://files.pythonhosted.org/packages/f1/40/72da134255ed86e18f8d64fc4a185f6dd420808ef11a0fd3027aceb5972a/neo4jrestclient-1.4.4.tar.gz" } ], "1.4.5": [ { "comment_text": "", "digests": { "md5": "0c92a67681c0c61e8ef97cf23fa9ca90", "sha256": "0dda0aab6fa1a8ffffda08739aac4c6a99abefbacf56deab4f808ca2e6277348" }, "downloads": -1, "filename": "neo4jrestclient-1.4.5.tar.gz", "has_sig": false, "md5_digest": "0c92a67681c0c61e8ef97cf23fa9ca90", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41202, "upload_time": "2011-09-15T16:48:54", "url": "https://files.pythonhosted.org/packages/93/c9/cd7adc03a48177ef5e339d536b4d606152e27a982df326456aaa7d28e3f0/neo4jrestclient-1.4.5.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "a9fe911da13b6c0bccd98d4ff595dc60", "sha256": "a58987e670070c7d1134ab10e51e8ba8497fbc65add8a3f44b9b6969c127d9b5" }, "downloads": -1, "filename": "neo4jrestclient-1.5.0.tar.gz", "has_sig": false, "md5_digest": "a9fe911da13b6c0bccd98d4ff595dc60", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41455, "upload_time": "2011-10-31T18:44:55", "url": "https://files.pythonhosted.org/packages/e7/0c/43a07616c9b739a48bb639703bf77198254ad60077ef518e48a994e241be/neo4jrestclient-1.5.0.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "34fb6d0fb68ff32bbd52c8ac225440f3", "sha256": "03dfe62729c3793bef19f5311a08b2a7efa70ab805c59c2c2689604a2617a85f" }, "downloads": -1, "filename": "neo4jrestclient-1.6.0.tar.gz", "has_sig": false, "md5_digest": "34fb6d0fb68ff32bbd52c8ac225440f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45862, "upload_time": "2012-02-27T18:44:02", "url": "https://files.pythonhosted.org/packages/6b/5c/1fe2b581a5a12c29dbeb52ed3b8e7c2eb3b20372e67a552b62623acb5199/neo4jrestclient-1.6.0.tar.gz" } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "b64290c22082463006a563b9853c8374", "sha256": "5160ff7df6a2645c1864d0ae29f49161ffb514585213142ef5e2dcd0e2c57ffd" }, "downloads": -1, "filename": "neo4jrestclient-1.6.1.tar.gz", "has_sig": false, "md5_digest": "b64290c22082463006a563b9853c8374", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46685, "upload_time": "2012-02-28T03:22:23", "url": "https://files.pythonhosted.org/packages/97/4b/cbe2eb00288b4795a2590ce3feda7b213e0013a81d2226368b25fbbdf324/neo4jrestclient-1.6.1.tar.gz" } ], "1.6.2": [ { "comment_text": "", "digests": { "md5": "a6811c99cabd89b518448e6ddcfd632a", "sha256": "a70f0885503ba61791ac21979137d9f9757def689c0e291e8765273aeaccb439" }, "downloads": -1, "filename": "neo4jrestclient-1.6.2.tar.gz", "has_sig": false, "md5_digest": "a6811c99cabd89b518448e6ddcfd632a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45413, "upload_time": "2012-03-26T16:37:55", "url": "https://files.pythonhosted.org/packages/5f/ce/52dbfeb62b8642739a0452de3c0736a5e39205e440c2fe0490766f048057/neo4jrestclient-1.6.2.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "b12778d879ffe11f08365416355f633c", "sha256": "46aa7be1848591d1f5a81dde110bcb3b159fd921ad5cef7b0036baaf78ad5f8f" }, "downloads": -1, "filename": "neo4jrestclient-1.7.0.tar.gz", "has_sig": false, "md5_digest": "b12778d879ffe11f08365416355f633c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46061, "upload_time": "2012-05-17T17:39:16", "url": "https://files.pythonhosted.org/packages/af/c3/7a803a04df4c4d8bf275619efbfee704b5fd7a2dc506f771cb720c3a4b16/neo4jrestclient-1.7.0.tar.gz" } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "fae655bb0226ef233a223f2baddaadaf", "sha256": "04124d83e13609d9d1b0c00ab9e57ad00e30c6c8181ab6516add3e23c4272c2b" }, "downloads": -1, "filename": "neo4jrestclient-1.8.0.tar.gz", "has_sig": false, "md5_digest": "fae655bb0226ef233a223f2baddaadaf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55520, "upload_time": "2012-12-09T19:57:59", "url": "https://files.pythonhosted.org/packages/54/c6/b37f37a38a55e5a14358914eddb8fda016ddaea3e93658a55fa2690679e6/neo4jrestclient-1.8.0.tar.gz" } ], "1.9.0": [ { "comment_text": "", "digests": { "md5": "ab59cf7da1c4f419d2d21e1e9d0db221", "sha256": "b76df5ee8358e6479a3b105c24f47bbaece50f9347c8d8a208341ad7210e4783" }, "downloads": -1, "filename": "neo4jrestclient-1.9.0.tar.gz", "has_sig": false, "md5_digest": "ab59cf7da1c4f419d2d21e1e9d0db221", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55855, "upload_time": "2013-05-27T20:51:13", "url": "https://files.pythonhosted.org/packages/d4/18/47634f5c9585b17850737937d7d01c5d88c2028762d157f835402420e4da/neo4jrestclient-1.9.0.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "10cda30125a3ca264acae72e7c37e69a", "sha256": "e23cac5fcf1cc9c427a98097f94cc61cd92582ba6f6fc52b01f072b67e7ae5c5" }, "downloads": -1, "filename": "neo4jrestclient-2.0.0.tar.gz", "has_sig": false, "md5_digest": "10cda30125a3ca264acae72e7c37e69a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64644, "upload_time": "2013-12-30T17:54:19", "url": "https://files.pythonhosted.org/packages/6e/a9/4c949e17c6bb212d44f44bc2a9eef867370facef8b86587bab9644a48886/neo4jrestclient-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "b5697581bdd3b721ae5816d95f3cb362", "sha256": "cdf5833d68bc219e841ece0f5d227c79266438f466797655c9404cb0beaffea9" }, "downloads": -1, "filename": "neo4jrestclient-2.0.1.tar.gz", "has_sig": false, "md5_digest": "b5697581bdd3b721ae5816d95f3cb362", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65492, "upload_time": "2014-03-24T03:59:53", "url": "https://files.pythonhosted.org/packages/3e/15/b80b752c553b937a520ccdc610588b9a773a250cebf6f2bfbd6539444a92/neo4jrestclient-2.0.1.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "1fc455fcae045f343022656b39cf03b5", "sha256": "db8195f5076877368fef1154707c3cb4b83481f37ac02ade3b140942553ff2e2" }, "downloads": -1, "filename": "neo4jrestclient-2.0.2.tar.gz", "has_sig": false, "md5_digest": "1fc455fcae045f343022656b39cf03b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69226, "upload_time": "2014-04-04T06:38:47", "url": "https://files.pythonhosted.org/packages/80/d7/05f2f99662cc6c5719717776d2c665263965759f5e1afb206b92051eafb5/neo4jrestclient-2.0.2.tar.gz" } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "cc4b725dc8b79eeef131f59428acb476", "sha256": "e9238bd70851856f7872dc9a0aa86bc83f5e05ac405be9d7e7bd6d5ec5e630af" }, "downloads": -1, "filename": "neo4jrestclient-2.0.3.tar.gz", "has_sig": false, "md5_digest": "cc4b725dc8b79eeef131f59428acb476", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74501, "upload_time": "2014-05-16T23:05:37", "url": "https://files.pythonhosted.org/packages/4f/35/30fcda8372a857f0c8bf8add08de612e9deea15a6abf49ba1169804ccb43/neo4jrestclient-2.0.3.tar.gz" } ], "2.0.4": [ { "comment_text": "", "digests": { "md5": "3733a28c143dd38ea77cfaf0f21f9f98", "sha256": "8f5d77103db9596206b826307be24160ca78f5827de7105b35f6f30441ccdcc7" }, "downloads": -1, "filename": "neo4jrestclient-2.0.4.tar.gz", "has_sig": false, "md5_digest": "3733a28c143dd38ea77cfaf0f21f9f98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 70039, "upload_time": "2014-06-21T04:08:08", "url": "https://files.pythonhosted.org/packages/46/a4/16f0433d2477178861799854b57cbbad6ee5d14ec9ce0a7c605496ea4421/neo4jrestclient-2.0.4.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "cc1546756b26c31a3df1d987f9a058d6", "sha256": "92583e0b2391b44d50d1941f932df13c81168af917062816395bbffc8443e19e" }, "downloads": -1, "filename": "neo4jrestclient-2.1.0.tar.gz", "has_sig": false, "md5_digest": "cc1546756b26c31a3df1d987f9a058d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77506, "upload_time": "2014-11-17T19:41:29", "url": "https://files.pythonhosted.org/packages/e4/30/83bf7caf0be5a611abc38ac8dc3777056081d518af93301a01ef174eed75/neo4jrestclient-2.1.0.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "98374adc9d317e36dff788d117c51e36", "sha256": "b585ffdddc23d7cb54ddf2ae0bc35cdb445ff576c15f07b3e8ffde811ac087cf" }, "downloads": -1, "filename": "neo4jrestclient-2.1.1.tar.gz", "has_sig": false, "md5_digest": "98374adc9d317e36dff788d117c51e36", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73020, "upload_time": "2015-11-20T21:57:14", "url": "https://files.pythonhosted.org/packages/95/4c/df54ba57f5838fd1ae162462f81d589b8352c6aa17d5b2a7a42e8abba048/neo4jrestclient-2.1.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "98374adc9d317e36dff788d117c51e36", "sha256": "b585ffdddc23d7cb54ddf2ae0bc35cdb445ff576c15f07b3e8ffde811ac087cf" }, "downloads": -1, "filename": "neo4jrestclient-2.1.1.tar.gz", "has_sig": false, "md5_digest": "98374adc9d317e36dff788d117c51e36", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73020, "upload_time": "2015-11-20T21:57:14", "url": "https://files.pythonhosted.org/packages/95/4c/df54ba57f5838fd1ae162462f81d589b8352c6aa17d5b2a7a42e8abba048/neo4jrestclient-2.1.1.tar.gz" } ] }