bulbs
bulbs copied to clipboard
A Python persistence framework for graph databases like Neo4j, OrientDB and Titan.
### Is Bulbs generally support graph databases, such as dgraph, Cayley?
* Adapted fix for issue #158 by @mariomcginley (Pattern.groups RO) * Fixed SUBPATTERN data structure for Python >= 3.6
This is a more conservative version of PR #150, which only drops the dependency on `distribute` for python >= 3.6. Currently, installing for python >= 3.6 fails with this error:...
I am using OrientDB and Rexster with the latest release of Bulb in `python3.5` When I try: ``` from bulbs.config import Config from bulbs.rexster import Graph g = Graph(Config('http://localhost:8182/graphs/Freeth')) ```...
All in the title... Many issues still opened, no new commits for a while... What's going on ?!
I have a model (menu) and i'm using get_all to retreive a list of all of my menus from rexster. this works fine until I use the delete method to...
I have a problem in finding through properties . In the example he cites : > This will return all the vertices que have a "name " property with a...
I've tried a Gremlin query against a standard Titan graph (the Graph of Gods) to fetch the indexed keys: from bulbs.titan import Graph g = Graph() g.gremlin.query('g.getIndexedKeys(Vertex.class)') It works but...
g.addVertex().setProperty("coordinates", Geoshape.point(38.1f, 23.7f)) how can I create Geoshape.point property in python bulbs ?
hi i am trying to use Geoshape.class using bulbs to add vertex with position (lon,lat) please help Tx