A lightweight package for building TypeDB queries.
Project description
typedb-query-builder💪
Description
It's a simple and lightweight python library for creating TypeDB queries in an Object-Oriented manner, which abstracts string preprocessing from the user.
The main advantages of this solutions are:
- removing boilerplate repetitive code and string preprocessing with very readable API for building TypeDB queries
- easy integration with any changes of
typedb-clientAPI. As a matter of fact, these changes should be handled bytypedb-query-builder, so that you don't have to worry about your code - removing unnecessary issues related with typos that appeared during typing verbose queries
Usage
The main compoenent of this packages is typedb_query_builder.typedb_query_builder.TypeDBQueryBuilder.
It provides you the following methods:
match_entity(entity_name: str, variable_name: str)- used for adding and an entity in match queries.match_relationship(relationship_name: str, variable_name: str))- used for adding and a relationship in match queries.insert_entity(entity_name: str, variable_name: str)- used for adding and entity in insert queries.insert_relationship(relationship_name: str, variable_name: str))- used for adding a relationship in match queries.
entity_name and relationship_name are the actual names of the concepts in schema, while variable_name is just a variable that you want to assign to it - in the same way as you would assign a concept to a variable in a TypeDB query (note that within one query, one TypeDBQueryBuilder instance, the same variable name cannot be used for several concepts).
Each of these functions return an object of one of the following types: TypeDBEntityQuery, TypeDBRelationshipQuery. You can use these object to assign certain information to them, specifically:
TypeDBEntityQuery and TypeDBRelationshipQuery have methods:
has(attribute_name: str, attribute_value: str, attribute_type: str = 'string')- which assign an attribute to an Entity or Relationship. The attribute type is provided byattribute_name, it's actual value byattribute_value. Optionally you can specify a type of the attribute according to it's value in a schema, so that theTypeDBQueryBuilderwill be able to create the right query which will be in line with a given schema. If not providedTypeDBQueryBuilderwill assume that the attribute is of typestring.
Additionally, TypeDBRelationshipQuery has method for adding related objects:
relates(role: str, thing: Union[TypeDBEntityQuery, "TypeDBRelationshipQuery"])- which allows you to add a Thing (Entity/Relathinship) to a given relation under a certain role provided byroleargument.thingspecifies what concept should be added to a relationship. It has to be already instantiated object of typeTypeDBEntityQueryorTypeDBRelationshipQuery.
Example
from typedb_query_builder.typedb_query_builder import TypeDBQueryBuilder
tqb = TypeDBQueryBuilder()
p1 = tqb.match_entity('protein', 'p1') # Add an entity of type 'protein' to a match statement with a variable 'p1'.
p1.has('protein_name', 'ACE') # Assign an attribute of type 'protein_name' with value 'ACE'
p1.has('protein_id', 'Q1')
p2 = tqb.match_entity('protein', 'p2') # Add a second entity of type 'protein' to a match statement with a variable 'p2'.
p2.has('protein_name', 'ACE2') # Assign an attribute of type 'protein_name' with value 'ACE2'
p2.has('protein_id', 'Q2')
p2.has('external-id', 1, 'double') # This entity has an attribute 'external-id' which is of type double.
pi1 = tqb.insert_relationship('protein_interaction', 'pi') # Add a relationship of type 'protein_interaction' to insert query.
pi1.relates('associated_protein', p1) # Add related entities
pi1.relates('associated_protein', p2)
pi1.has('pi_id', 'PI1') # Add an attribute to a relationship
tqb.compile_query() # Compile query
query = tqb.get_query() # Get query
print(query)
Result
match $p1 isa protein, has protein_name "ACE", has protein_id "Q1"; $p2 isa protein, has protein_name "ACE2", has protein_id "Q2", has external-id 1; insert $pi (associated_protein: $p1, associated_protein: $p2) isa protein_interaction, has pi_id "PI1";
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file typedb_query_builder-0.0.4.tar.gz.
File metadata
- Download URL: typedb_query_builder-0.0.4.tar.gz
- Upload date:
- Size: 8.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb290ae199990f59804dd3bab9f4cadfa2303884bc92c681b3761837da7ca077
|
|
| MD5 |
9ac0a21edef878a156b350d16571aae0
|
|
| BLAKE2b-256 |
6a497a08015e5efdebbf9f921411ca1a038d360b084721ba99986f18a0c3d6d3
|
File details
Details for the file typedb_query_builder-0.0.4-py3-none-any.whl.
File metadata
- Download URL: typedb_query_builder-0.0.4-py3-none-any.whl
- Upload date:
- Size: 7.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d12fa3c953cf717dd99c1c864234b4d80a4f3ba032f0edd39127371514ef0270
|
|
| MD5 |
091108a015a138c3c1a062a19dbfc04a
|
|
| BLAKE2b-256 |
24eb7bb0fe7c8254c5309129f777c805611f359e18b2e29b88fe4a6b1bbcf2c1
|