A productivity tool for creating Cypher queries in Python.
Cymple is a lightweight Python package for creating queries in Cypher, Neo4j's graph database query language. Give it a try, it's 'Cymple'!
Consider using Cymple if you want:
- auto-completion for writing Cypher
- to write compound Cypher queries without getting involved with strings
- to write Cypher queries in a scalable and extensible manner
- to be able to easily reuse Cypher queries across your code
pip install cymple
Let's take a look at the following snippet.
from cymple import QueryBuilder
qb = QueryBuilder()
query = qb.match().node(labels='Person', ref_name='p')
query = query.where('p.name', '=', '"Michelle"').return_literal('p')
print(query)
This snippet will output the following Cypher query:
MATCH (p: Person) WHERE p.name = "Michelle" RETURN p
See the samples
directory for examples.
Cymple is intended for creating Cypher queries in Python, rather than executing queries on an actual DB.
For executing queries, see Neo4j's Bolt driver for Python. See also neo4j_e2e.py
in the samples
directory.
Cymple is designed to provide autocompletion on IDEs that support autocompletion. This feature is context aware with respect to the current query being written.
Two queries can be combined to a create a new one.
qb = QueryBuilder()
query1 = qb.match().node(labels='Person', ref_name='p').with_('p')
query2 = qb.match().node(labels='Person', ref_name='q').related_to('friend_of').node(ref_name='p')
query = query1 + query2
print(query)
This snippet will output the following Cypher query:
MATCH (p: Person) WITH p MATCH (q: Person)-[: friend_of]->(p)
- Python 3.8+
We encourage you to help us to improve this package! These instructions will give you a copy of the project up and running on your local machine for development and testing purposes.
# Set virtual environment.
python -m venv .venv
source .venv/bin/activate
# Upgrade pip
# Install development dependencies.
# Tools needed for deployment and packaging will be installed now.
pip install -r requirements-dev.txt
-
setuptools
is configured insetup.cfg
-
pycodestyle
is configured insetup.cfg
-
coverage.py
is configured inpyproject.toml
pytest
is used as a test runner.
pytest
configurations reside in pyproject.toml
pytest
fixtures
are stored in tests/conftest.py
file.
How-to run tests:
# Install test requirements.
pip install -r requirements-test.txt
# Run tests.
# All the tests under tests/ directory will be run.
pytest --cov=cymple
Adding a new Cypher clause to Cymple consists of few simple steps:
- Go to
src/cymple/internal/declarations/
. This directory contains all supported clause declarations. - Add a json file describing the clause and the method(s) interfaces(s) of the new clause that you would like to add to the builder. If you do it for the first time, take a look at existing json files of currently supported Cypher clauses.
- Identify all the existing clauses that can precede your new clause, and add your new clause's name to the 'successors' list of those clauses' JSONs.
- Run
python src/cymple/internal/internal_renderer.py
. This script generates a newbuilder.py
file with all clauses that were declared insrc/cymple/internal/declarations/
. - By default, by adding a declaration json file, the
internal_builder.py
script takes the declared clause and generates a method that simply concatenates your new clause to the builder's current query. However, if you need anything more complex than that, you can write your own implementation by creating a new method with your clause's name atsrc/cymple/internal/overloads/
. Don't forget to runpython src/cymple/internal/internal_renderer.py
again :) - If you're satisfied with the new clause, add a unit test in
test_clauses.py
and make sure it generates the expected Cypher string.
Make sure you run:
pip install -r requirements-dev.txt
or
pip install sphinx
to proceed.
To generate a new HTML documentation, run:
cd docs
make clean html
make html
Semantic Versioning is used for versioning.
For the versions available, see the tags on the repository.
Current version is stored in src/cymple/version.py
.
cymple/
├── docs/ # Project documentation
├── pyproject.toml # Development and packaging tools configurations
├── README.md # Project general information
├── requirements-dev.txt # Development dependencies, such as packaging tools, etc.
├── requirements-test.txt # Test dependencies
├── requirements.txt # Pinned versions of all the end-user dependency tree
├── setup.cfg # packaging tool configurations
├── setup.py # Packaging script
├── src/ # All source code
│ └── cymple/ # Cymple source code
│ ├── internal/ # Cypher builder internal renderer
│ │ ├── declarations/ # clause declarations
│ │ ├── overloads/ # custom clause implementations
│ │ ├── finale.py # A part of the rendered code that comes last
│ │ ├── internal_renderer.py # Internal renderer implementation for creating Cymple's user-facing code
│ │ └── preface.py # A part of the rendered code that comes first
│ ├── __init__.py # Package initialization
│ ├── __main__.py # Main script when run as a command line tool
│ ├── builder.py # Query Builder implementation
│ ├── typedefs.py # Query Builder typedefs to be used in Cymple's API
│ └── version.py # Package version
└── tests/ # Tests
├── conftest.py # Fixtures
├── data/ # Tests data files, such as input/output files, mocks, etc.
├── e2e/ # End-to-End functional tests
├── integration # Integration tests
└── unit # Unit tests
├── __init__.py
└── test_real_use_cases.py # Test project startup