Skip to main content

A simple SQL wrapper for Apache AGE using psycopg2 connection pooling.

Project description

AGESimpleSQL

AGESimpleSQL is a simple SQL wrapper for Apache AGE using psycopg2 connection pooling. It supports operations such as creating and dropping graphs, creating vertex and edge labels, creating vertices and edges, retrieving graph and label information, and executing SQL and Cypher queries. It is not the official driver for Apache AGE.

Apache AGE is a PostgreSQL extension that provides graph database functionality. The goal of the Apache AGE project is to create single storage that can handle both relational and graph model data so that users can use standard ANSI SQL along with openCypher, the Graph query language.

Usage

from age_simple_sql import AGESimpleSQL
from age_simple_sql.models import Vertex

# Initialize the AGESimpleSQL instance
db = AGESimpleSQL(
    user="your_db_user",
    password="your_db_password",
    host="your_db_host",
    port=your_db_port,
    dbname="your_db_name",
    logfile="path/to/your/logfile.log"
)

# Call setup to load the AGE extension commands
db.setup()

# Example usage
db.create_graph("TestGraph")
db.create_vertex_label("TestGraph", "Book")
book = Vertex(label="Book", properties={"Title": "The Hobbit"})
db.create_vertex("TestGraph", vertex)

author = Vertex(label="Author", properties={"Name": "J.R.R.Tolkien"})
wrote = Edge(label="WROTE", from_vertex=author, to_vertex=book)
db.create_edge("TestGraph", wrote)

Testing

This repo contains the tests folder, which includes a bash script, a python script, and the log file of the test. Executing the bash script will pull the apache/age docker image and run it on the background. Then, it is going to call the python test script and execute it. Finally, it stops and removes the container.

Contributing

Contributions are welcome! Please submit a pull request or open an issue to discuss what you would like to change.

For more information about Apache AGE

License

Apache-2.0 License

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

age_simple_sql-0.3.3.tar.gz (10.6 kB view details)

Uploaded Source

Built Distribution

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

age_simple_sql-0.3.3-py3-none-any.whl (10.4 kB view details)

Uploaded Python 3

File details

Details for the file age_simple_sql-0.3.3.tar.gz.

File metadata

  • Download URL: age_simple_sql-0.3.3.tar.gz
  • Upload date:
  • Size: 10.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.3

File hashes

Hashes for age_simple_sql-0.3.3.tar.gz
Algorithm Hash digest
SHA256 0b62086e6e646bb289b5290763463f070a0ba09b4391e4b2c8a1869ff99944b6
MD5 f8018953e3988a960a128540f2ebff29
BLAKE2b-256 3b2d2a7e4f37bb411ef198b016d8337c644b26ea0dc67daf8367df6d82f1c4fb

See more details on using hashes here.

File details

Details for the file age_simple_sql-0.3.3-py3-none-any.whl.

File metadata

  • Download URL: age_simple_sql-0.3.3-py3-none-any.whl
  • Upload date:
  • Size: 10.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.3

File hashes

Hashes for age_simple_sql-0.3.3-py3-none-any.whl
Algorithm Hash digest
SHA256 4e2d62e0720461872fb62ea2089517cd1a2e6d2176b115b328bae30b6af4579b
MD5 b72ce5f47547746bdc66dbe94b367e6a
BLAKE2b-256 fb4d6a6b9a32787190722b29c0ed8b3148a6707a8f3d0e75c3e43ccef7952dee

See more details on using hashes here.

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