Reputation: 343
I wanted to develop a web app using Django, but I decided to use Neo4j as my database since the project is related to social media. As it has been the case, Neo4j is not supported for Django, and I should use ORMs to enable that. Neo4Django was my first sight, but it only support outdated Neo4J (1.9.4.) & Django (1.5) versions. Is there any other suggestions besides that to move on with Neo4j-Django? Any examples on using neo4restclient for django app? Specially on how to set the database on the settings.py?
Neo4J = 2.x, Django > 1.8
Upvotes: 2
Views: 730
Reputation: 384
Shameless plug, you may find neomodel fits your needs: http://neomodel.readthedocs.org/en/latest/
It's got some level of django integration but isn't tied to the framework its self.
Upvotes: 4