Skip to main content

Neo4j integration for Django, and much more tools for deployment of consequent websites...

Project description

You can find the full documentation on ReadTheDocs here.




Presentation :


cropped and compressed logo

The bulb package extends the Django framework to make it compatible with the Neo4j databases, and provides much more tools to deploy consequent websites. Two other solutions already exist to use Django with Neo4j, but they each have their own inconveniences :

neo4django neomodel
This package is out of date (last update in 2013). His usage is deprecated, cause he runs under very old versions of all its components : Python 2.X / Django 1.5 / Neo4j 1.9. Furthermore, neo4django does not provide support for the Django's sessions nor a complete support for the Django's authentication, nor a support for the Django administration. This package is regularly updated, he runs also under last versions of all its components. He provides a very complete adaptation of the Django models, but the philosophy of these contributors is almost to make a 'ready and easy to use' tool, so the user interact only with the high-level surface. The inconvenience of a such reasoning, it's that you will have less freedom in what you want to do. This philosophy is perfect to deploy fastly some small projects, but it conduces to a total remake and to more complex programs the days where we will want to do more precise operations or we will want to improve the performances of our project, with creation of a cluster, for example. Furthermore, neomodel does not provides support for the Django's sessions nor for the Django's authentication and nor for the Django administration.

bulb has a completely different philosophy. It offers you the choice to use "ready and easy to use" functions to code fatser or to let you interact with deeper concepts and to do exactly what you want to do. Firstly, the database interaction has been developed to let the user use writing queries and reading queries, but also more advanced concepts like make multi-transactions sessions and causal chaining. But on the other hand, methods have been developed to make easier the usage of these concepts.

NB : The separation of writing and reading queries is the unique condition to set up clusters. So you you could just use these two 'ready to use' methods and get pretty good results.

Then, and to a lesser extent than neomodel, we have rewrite the Django's 'models' , to make them 'node_models'. bulb's node_models are a bit different than the original Django's models, but let you more flexibility. S

Look at this comparison chart, and make the better choice for your needs :

 bulb  neomodel neo4django
Python 2.X support
Python 3.X support
Last Neo4j versions support
Last Django versions support
Ready and easy to use models
Highly customizable models
Relationship directly integrated to models
Independant and reusable relationship models
Highly customizable relationship models
Django's sessions support
Django's authentication support
Additional functionalities for authentication
Django's administration support
Highly customizable administration
Neo4j's clusters support
Neo4j's customizable sessions support
Neo4j's causal chaining support
Neo4j's geospacial operations support
Fully CDN integration
Automatic staticfiles compression
Automatic staticfiles compilation
Fully SFTP support for staticfiles
Reinforcement of the password system
SASS/SCSS support
Webpack integration
Polyfill integration
Some front-end tools

To conclude, if you absolutely want exactly same models' structure than Django or if you have to make compatible an already existing project with Neo4j (and if you don't need neither sessions, nor authentication, nor administration), you should use neomodel. For the other cases, check this documentation :)





Installation :


  1. First, open a terminal.


  1. Then, go into your Django project or start your virtual environment if you have one :

    Example :

> cd my_projects/my_django_project


  1. Finally, execute :
> pip install bulb-core

or if it doesn't work :

> python -m pip install bulb-core


  1. To check if all works, open the terminal, and go in your virtual environment if you have one. Then, run the python shell of your Django project and try to import the bulb package :
(my_env) > python manage.py shell
Python 3.7.1 (v3.7.1:260ec2c36a, Oct 20 2018, 14:57:15) [MSC v.1915 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
(InteractiveConsole)
>>> import bulb
>>>

If no error message is raised, that's good.




Getting started :


Introducing

The bulb package is very fast to setup. Just 2 steps are needed to execute yours first cypher requests.

If you don't have already install the package, please see the installation page.



1. Set the bulb settings to your project

A very simple step, just import the set_bulb_settings_on() in the settings.py file of your Django project :

settings.py

from bulb import set_bulb_settings_on


Then, use this method on all the datas contained in your settings.py file. The locals() function return a dictionary that contains all of these datas. So just put this at the bottom of your settings.py file :

settings.py

set_bulb_settings_on(locals())


Finally, and always in the same file (just below the method that we have previously set), configure yours Neo4j credentials with the 3 parameters :
- BULB_DATABASE_URI,
- BULB_DATABASE_ID,
- and BULB_DATABASE_PASSWORD.

BULB_DATABASE_URI is the bolt address of your database. Generally on a local server, the bolt address is 'bolt://localhost:7687'. But you can find more details in the parameters of your Neo4j database and on the official documentation.

BULB_DATABASE_ID is your Neo4j database id or username. By default the id is defined on 'neo4j'.

BULB_DATABASE_PASSWORD is your Neo4j database password. By default the password is defined on 'neo4j' too. But normally and if you don't have change the password before, during the first run of the Neo4j database, we will ask you to replace the default password by another.

Example :

settings.py

BULB_DATABASE_URI = "bolt://localhost:7687"

BULB_DATABASE_ID = 'neo4j'

BULB_DATABASE_PASSWORD = '1234'

You're project is now configured to work with bulb !


WARNING : don't forget to remove the default admin page at the creation of your project, cause the Django administration is'nt supported by bulb (bulb has its independent administration). Else, a "LookupError: No installed app with label 'admin'." will be raised.

from django.contrib import admin
from django.urls import path, include

urlpatterns = [
    # path('admin/', admin.site.urls),
    path('blog/', include("my_project.urls"))
]


2. Run a first cypher query

bulb can be used in all the files of your project. So in one of these files, import the gdbh object.

views.py

from bulb.db import gdbh


g-db-h means Graph Database Handler and it is an instance of the GraphDatabaseHandler() class. This instance will be used all the times where we will want to interact with the Neo4j database.

Now you can use the w_transaction() method of the gdbh object, to send a query to the database :

gdbh.w_transaction("CREATE (:Person) {first_name: 'Adrien', age: 18}")

The w_transaction() method, means writing transaction, so use it preferably when you want to create or modify datas in the database.
We also find the r_transaction() method that means reading transaction, which one should be used preferably to retrieve datas from the database.



For now, if you have any doubt, use the w_transaction() method.



You can find the full documentation on ReadTheDocs here.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bulb-core-0.0.92.tar.gz (979.0 kB view hashes)

Uploaded Source

Built Distribution

bulb_core-0.0.92-py3-none-any.whl (1.0 MB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page