Skip to main content

Terminus DB Python client

Project description

TerminusDB Python Client


Discord Reddit Twitter

release version downloads

build status documentation code coverage license

Python client for TerminusDB and TerminusCMS.

Migrating from terminusdb-client? This package was formerly known as terminusdb-client. Simply install terminusdb instead — both import terminusdb and import terminusdb_client continue to work, so no code changes are required.

TerminusDB is an open-source graph database and document store. It allows you to link JSON documents in a powerful knowledge graph all through a simple document API, with full git-for-data version control.

Requirements

Release Notes and Previous Versions

TerminusDB Client v12 works with TerminusDB v12 onwards and the DFRNT cloud service. Please check the Release Notes to find out what has changed.

Installation

  • TerminusDB Client can be downloaded from PyPI using pip: python -m pip install terminusdb

This only includes the core Python Client (Client) and WOQLQuery.

If you want to use woqlDataframe or the import and export CSV function in the Scaffolding CLI tool:

python -m pip install terminusdb[dataframe]

if you are installing from zsh you have to quote the argument like this:

python -m pip install 'terminusdb[dataframe]'

  • Install from source:

python -m pip install git+https://github.com/terminusdb/terminusdb-client-python.git

Demo

Client Demo gif

Usage

Python client

Connect to a server

Connect to local host

from terminusdb import Client

client = Client("http://127.0.0.1:6363/")
client.connect()

The previous import path from terminusdb_client import Client also continues to work.

Connect to TerminusDB in the cloud

check the documentation on the DFRNT support page about how to add your API token to the environment variable

from terminusdb import Client

team="MyTeam"
client = Client(f"https://studio.dfrnt.com/api/hosted/{team}/")
client.connect(team="MyTeam", use_token=True)

Create a database

client.create_database("MyDatabase")

Create a schema

from terminusdb.schema import Schema, DocumentTemplate, RandomKey

my_schema = Schema()

class Pet(DocumentTemplate):
    _schema = my_schema
    name: str
    species: str
    age: int
    weight: float

my_schema.commit(client)

Create and insert documents

my_dog = Pet(name="Honda", species="Huskey", age=3, weight=21.1)
my_cat = Pet(name="Tiger", species="Bengal cat", age=5, weight=4.5)
client.insert_document([my_dog, my_cat])

Get back all documents

print(list(client.get_all_documents()))
[{'@id': 'Pet/b5edacf854e34fe79c228a91e2af45fb', '@type': 'Pet', 'age': 5, 'name': 'Tiger', 'species': 'Bengal cat', 'weight': 4.5}, {'@id': 'Pet/cdbe3f6d49394b38b952ae315309256d', '@type': 'Pet', 'age': 3, 'name': 'Honda', 'species': 'Huskey', 'weight': 21.1}]

Get a specific document

print(list(client.query_document({"@type":"Pet", "age":5})))
[{'@id': 'Pet/145eb73966d14a1394f7cd5576d7d0b8', '@type': 'Pet', 'age': 5, 'name': 'Tiger', 'species': 'Bengal cat', 'weight': 4.5}]

Delete a database

client.delete_database("MyDatabase")

Scaffolding CLI tool

Scaffolding Demo gif

Start a project in the directory

$ tdbpy startproject
Please enter a project name (this will also be the database name): mydb
Please enter an endpoint location (press enter to use localhost default) [http://127.0.0.1:6363/]:
config.json and schema.py created, please customize them to start your project.

Import a CSV named grades.csv

$ tdbpy importcsv grades.csv --na=error
0it [00:00, ?it/s]
Schema object Grades created with grades.csv inserted into database.
schema.py is updated with mydb schema.
1it [00:00,  1.00it/s]
Records in grades.csv inserted as type Grades into database with Lexical ids.

Get documents with query

$ tdbpy alldocs --type Grades -q grade="B-"
[{'@id': 'Grades/Android_Electric_087-65-4321_42.0_23.0_36.0_45.0_47.0_B-', '@type': 'Grades', 'final': 47.0, 'first_name': 'Electric', 'grade': 'B-', 'last_name': 'Android', 'ssn': '087-65-4321', 'test1': 42.0, 'test2': 23.0, 'test3': 36.0, 'test4': 45.0}, {'@id': 'Grades/Elephant_Ima_456-71-9012_45.0_1.0_78.0_88.0_77.0_B-', '@type': 'Grades', 'final': 77.0, 'first_name': 'Ima', 'grade': 'B-', 'last_name': 'Elephant', 'ssn': '456-71-9012', 'test1': 45.0, 'test2': 1.0, 'test3': 78.0, 'test4': 88.0}, {'@id': 'Grades/Franklin_Benny_234-56-2890_50.0_1.0_90.0_80.0_90.0_B-', '@type': 'Grades', 'final': 90.0, 'first_name': 'Benny', 'grade': 'B-', 'last_name': 'Franklin', 'ssn': '234-56-2890', 'test1': 50.0, 'test2': 1.0, 'test3': 90.0, 'test4': 80.0}]

Delete the database

$ tdbpy deletedb
Do you want to delete 'mydb'? WARNING: This operation is non-reversible. [y/N]: y
mydb deleted.

Please check the full Documentation for more information.

Guides & Tutorials

Visit our documentation for a range of short how-to guides, how-to use the Python Client and how to use the collaboration features with the Python Client. Alternatively, undertake the Getting Started with the Python Client Tutorial Series..

Testing

  1. Clone this repository git clone https://github.com/terminusdb/terminusdb-client-python.git

  2. Install all development dependencies using poetry

$ make init
  1. (a) To run test files only
$ poetry run pytest terminusdb_client/tests
  1. (b) To run full test
$ poetry run tox -e test

Or you can run tests in poetry shell then no need to use poetry run

Documentation

Visit our TerminusDB Documentation for the full explanation of using TerminusDB.

Documentation specifically on the latest version of the Python Client can be found here.

Generating Documentation Locally using Sphinx

  1. Clone this repository git clone https://github.com/terminusdb/terminusdb-client-python.git

  2. Install all development dependencies

$ make init
  1. Change the directory to docs
$ cd docs/
  1. Build with Sphinx
$ make html

The output files are under docs/build/html, open index.html in your browser to inspect.

Report Issues

If you encounter any issues, please report them with your os and environment setup, the version that you are using and a simple reproducible case.

If you have other questions, you can ask in our community community Subreddit or Discord server.

Community

Come visit us on our discord server or our community Subreddit. We are also on Twitter

Contribute

It will be nice, if you open an issue first so that we can know what is going on, then, fork this repo and push in your ideas. Do not forget to add some test(s) of what value you adding.

Please check CONTRIBUTING.md for more information.

Licence

Apache License (Version 2.0)

Copyright (c) 2019

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

terminusdb-12.0.4.tar.gz (202.0 kB view details)

Uploaded Source

Built Distribution

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

terminusdb-12.0.4-py3-none-any.whl (247.1 kB view details)

Uploaded Python 3

File details

Details for the file terminusdb-12.0.4.tar.gz.

File metadata

  • Download URL: terminusdb-12.0.4.tar.gz
  • Upload date:
  • Size: 202.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.1 CPython/3.12.12 Darwin/25.2.0

File hashes

Hashes for terminusdb-12.0.4.tar.gz
Algorithm Hash digest
SHA256 eeb5bbf0f7085a43e291f8bf807723436eef20b2c2808b697ecb5ae3f3d10297
MD5 69bcb158f221529dd72386b918d4c8a8
BLAKE2b-256 2237da0a3dfd2274645cc6ab2df486b7d95e15dfcf3ea0c715857ba4be65f692

See more details on using hashes here.

File details

Details for the file terminusdb-12.0.4-py3-none-any.whl.

File metadata

  • Download URL: terminusdb-12.0.4-py3-none-any.whl
  • Upload date:
  • Size: 247.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.1 CPython/3.12.12 Darwin/25.2.0

File hashes

Hashes for terminusdb-12.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 32dc12cebfbbabd807fddf5bc29209d4114d571fda8ff78bd8c89200e5dbe8b9
MD5 5bd7a5c65535b433ca7f9441749e37a9
BLAKE2b-256 bcfaf8bc8d624fd85e3946675eabc044ef11b285161185b4c0cd5a2952f8ebe3

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