Skip to main content

A productivity enhancer for creating Cypher queries in Python

Project description

Cymple-Kuzu - Cypher Modular Pythonic Language Extension

Forked from https://github.com/Accenture/Cymple and adapted for kuzu

A productivity tool for creating Cypher queries in Python.

About the project

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

image

Getting Started

Setup

pip install cymple-kuzu

Examples

Simple Example

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.

Autocompletion

Cymple is designed to provide autocompletion on IDEs that support autocompletion. This feature is context aware with respect to the current query being written.

gif1

Reusing Queries

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)

Prerequisites

  • Python 3.9+

Contributing

Intro

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.

Installing a Development Environment

# 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

Development tools configurations

  • setuptools is configured in setup.cfg

  • pycodestyle is configured in setup.cfg

  • coverage.py is configured in pyproject.toml

Testing

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

Adding a new Cypher clause to Cymple consists of few simple steps:

  1. Go to src/cymple/internal/declarations/. This directory contains all supported clause declarations.
  2. 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.
  3. 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.
  4. Run python src/cymple/internal/internal_renderer.py. This script generates a new builder.py file with all clauses that were declared in src/cymple/internal/declarations/.
  5. 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 at src/cymple/internal/overloads/. Don't forget to run python src/cymple/internal/internal_renderer.py again :)
  6. 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.

Generating Documentation

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

Versioning

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.

Project structure

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

Project details


Download files

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

Source Distribution

cymple_kuzu-0.0.6.tar.gz (16.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cymple_kuzu-0.0.6-py2.py3-none-any.whl (14.0 kB view details)

Uploaded Python 2Python 3

File details

Details for the file cymple_kuzu-0.0.6.tar.gz.

File metadata

  • Download URL: cymple_kuzu-0.0.6.tar.gz
  • Upload date:
  • Size: 16.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for cymple_kuzu-0.0.6.tar.gz
Algorithm Hash digest
SHA256 673fd94995c1e38695fcddb07979d1e1c7a1dd31f5001696991ceb67f6396b4a
MD5 15480d712635041a1d7a32975f692e6f
BLAKE2b-256 7554a8cef59a778b79eae04db1a21ef15fe9c1a526e8fadd0efb925877189e85

See more details on using hashes here.

Provenance

The following attestation bundles were made for cymple_kuzu-0.0.6.tar.gz:

Publisher: workflow.yml on pcadmanbosse/Cymple-Kuzu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cymple_kuzu-0.0.6-py2.py3-none-any.whl.

File metadata

  • Download URL: cymple_kuzu-0.0.6-py2.py3-none-any.whl
  • Upload date:
  • Size: 14.0 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for cymple_kuzu-0.0.6-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 bdc79fbac3e9330b265eee21f50fe2c19a199a2037caeaa946a299a112a66b32
MD5 c7c3dec75073a7d8d7dbe6d49191321d
BLAKE2b-256 18b695e6ff9df93054acd206a864f61c14f0f232d5fca7ba4b5ef758c85455c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for cymple_kuzu-0.0.6-py2.py3-none-any.whl:

Publisher: workflow.yml on pcadmanbosse/Cymple-Kuzu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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