versae / neo4j-rest-client

Object-oriented Python library to interact with Neo4j standalone REST server
http://neo4j-rest-client.rtfd.org
GNU General Public License v3.0
264 stars 73 forks source link

Streaming support? #97

Closed ghost closed 10 years ago

ghost commented 10 years ago

Does your client have support for streaming data using a request something like:

GET http://localhost:7474/db/data/ Accept: application/json X-Stream: true

?

This is fairly easy to implement with the Requests lib, I don't know what it is like using Python's standard libs. I'm not sure how useful it would be, but for pushing lots of data out for analytics it might nice. If not I was thinking about trying to implement it...see you soon! Edit. I see you are using requests now. Awesome dood!

versae commented 10 years ago

Now that neo4restclien uses requests, it is easy to implement indeed. It is just a matter of time, but I planned the streaming support to the end of the month.

ghost commented 10 years ago

Thanks Versae. I've been working with LevelDB and I got inspired.