Edit, Update a Neo4j database with Django

Hello,

I've populated a Neo4j database, and now I want to edit it with Django. Tried with neomodel, But I'm locked with the Django Forms queryset which use the objects, and neomodel nodes. I cannot find any example that edit a Neo4j db.

Is there a way to edit the db with Django? Or perhaps I'm missing another Web Framework to edit/modify the db?

Thanks in advance,

Maelvon

There used to be a neo4django project , but it already outdated.
You have all your python option here:

You can try using python driver or py2neo , good luck!

Do you have a sample of code? What kind of Django Form are you using?