SDK for the T2G API
Project description
Lettria's Text-to-Graph SDK 🚀
Welcome to the official Python SDK for Lettria's Text-to-Graph (T2G) API! This SDK provides a convenient way to interact with the T2G API, allowing you to unlock the power of knowledge graphs from your text data directly within your Python applications.
🌟 Overview
Lettria's Text-to-Graph (T2G) technology transforms unstructured text into structured knowledge graphs. This SDK is designed to simplify the process of sending your data to the T2G API and retrieving the results, whether you are indexing a single document, a collection of files, or building complex ontologies.
This SDK is built with developers in mind, providing a clean, asynchronous client to handle API requests efficiently.
✨ Features
- Asynchronous Client: Built with
asyncioandaiohttpfor high-performance, non-blocking API calls. - Simple Interface: Easy-to-use methods for indexing files and managing jobs.
- Data Validation: Leverages
pydanticfor robust and reliable data modeling. - Neo4j Integration: Directly save your graph data to a Neo4j instance.
- Flexible Configuration: Configure the SDK via environment variables or directly in your code.
- Built-in Error Handling: Gracefully handles API errors with custom exceptions.
📦 Installation
You can install the T2G SDK using pip:
pip install t2g-sdk==1.0.0rc4
🚀 Getting Started
To start using the T2G SDK, you will need an API key from Lettria.
Configuration
The SDK can be configured by setting the following environment variable:
LETTRA_API_KEY: Your Lettria API key.
Alternatively, you can pass this value directly to the T2GClient constructor.
Quick Example: Indexing a File
This example demonstrates how to index a local text file and save the resulting graph to Neo4j.
import asyncio
from t2g_sdk.client import T2GClient
from t2g_sdk.exceptions import T2GException
from t2g_sdk.models import Job
async def main():
# It is recommended to use the client as a context manager
async with T2GClient() as client:
try:
# Index a file and save the result to Neo4j
job: Job = await client.index_file(
file_path="path/to/your/document.txt",
# You can also specify an ontology file
# ontology_path="path/to/your/ontology.ttl",
save_to_neo4j=True,
)
print("🎉 Job completed successfully!")
print("Job details:", job)
except T2GException as e:
print(f"An API error occurred: {e}")
except Exception as e:
print(f"An unexpected error occurred: {e}")
if __name__ == "__main__":
asyncio.run(main())
📚 API Reference
The main entry point of the SDK is the T2GClient class.
t2g_sdk.client.T2GClient
The asynchronous client for interacting with the T2G API.
Methods:
async def index_file(file_path: str, ontology_path: str = None, save_to_neo_4j: bool = False) -> Job: Indexes a file and returns aJobobject with the results.file_path: Path to the file to index.ontology_path(optional): Path to an ontology file (e.g.,.ttl).save_to_neo4j(optional): IfTrue, saves the result to your configured Neo4j instance.
⚙️ Configuration Details
The SDK uses pydantic-settings for configuration management. You can configure the client by passing arguments to its constructor, or by setting environment variables.
| Argument | Environment Variable | Description |
|---|---|---|
api_key |
LETTRA_API_KEY |
Required. Your Lettria API key. |
neo4j_uri |
NEO4J_URI |
(Optional) The URI for your Neo4j instance. |
neo4j_user |
NEO4J_USER |
(Optional) The username for your Neo4j instance. |
neo4j_password |
NEO4J_PASSWORD |
(Optional) The password for your Neo4j instance. |
Note: The Neo4j configuration options (neo4j_uri, neo4j_user, neo4j_password) are only required if you set save_to_neo4j=True when calling index_file.
🚨 Error Handling
The SDK defines custom exceptions to handle API errors.
t2g_sdk.exceptions.T2GException: The base exception for all API-related errors.t2g_sdk.exceptions.APIError: Raised for general API errors.t2g_sdk.exceptions.AuthenticationError: Raised for authentication-related errors (e.g., invalid API key).t2g_sdk.exceptions.JobError: Raised when a job fails.
It is recommended to wrap your API calls in a try...except block to handle these exceptions.
📂 Examples
You can find more examples in the examples/ directory, including:
index_file/: A simple demonstration of how to index a file.
🤝 Contributing
Contributions are welcome! Please feel free to submit a pull request or open an issue if you have any feedback or suggestions.
📄 License
This SDK is licensed under the MIT License.
Project details
Release history Release notifications | RSS feed
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 t2g_sdk-1.0.0rc4.tar.gz.
File metadata
- Download URL: t2g_sdk-1.0.0rc4.tar.gz
- Upload date:
- Size: 10.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27f13dda58f2dbbb9ef77a3bf6b95fb636f1afc5cec14e1a3f215f4bdfe91f17
|
|
| MD5 |
9b1c40873532001bd6876c2634445819
|
|
| BLAKE2b-256 |
c41ae2047e5f2cd3bbe3e0fb2e6b78e761275b6eedceaebe7542d017fbe862e5
|
File details
Details for the file t2g_sdk-1.0.0rc4-py3-none-any.whl.
File metadata
- Download URL: t2g_sdk-1.0.0rc4-py3-none-any.whl
- Upload date:
- Size: 13.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c92dfde24d21c2a9d02d3e5a402d8c7ce9ddcdf90d525d882bda059f1c76f95
|
|
| MD5 |
78edd0fb29277e4ff00add61e9c43f2d
|
|
| BLAKE2b-256 |
a7ae62c1ead68913466e93d815080e903aeb2610a93d894a0bc22803ad3dd040
|