Python client for the Artifact API
Project description
artifact-client
API for interacting with the Artifact Client.
This Python package is automatically generated by the OpenAPI Generator project:
- API version: 1.0.0
- Package version: 1.0.0
- Generator version: 7.7.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
Requirements.
Python 3.7+
Installation & Usage
pip install
If the python package is hosted on a repository, you can install directly using:
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
(you may need to run pip
with root permission: sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
)
Then import the package:
import artifact
Setuptools
Install via Setuptools.
python setup.py install --user
(or sudo python setup.py install
to install the package for all users)
Then import the package:
import artifact
Tests
Execute pytest
to run the tests.
Getting Started
Please follow the installation procedure and then run the following:
import os
from artifact import ArtifactClient
from artifact.models import ApiException
from pprint import pprint
# ArtifactClient wraps some of the boilerplate functionality needed to drive the
# autogenerated code. The API key can be passed in to the constructor as `api_key`.
# If not specified, the client looks for the key in the environment under ARTIFACT_API_KEY.
api_client = ArtifactClient()
# The client supports all the API endpoints. Below are examples of a few of the commonly used actions.
graph = api_client.create_graph(name="My First Graph")
doc_str = (
"Input a corpus of text and save it as a string in memory. Then pass it to the ingest method."
)
api_client.ingest_document(graph.uuid, doc_str)
# Kick off an async server process to index the graph
api_client.index_graph(graph.uuid)
# When the indexing completes, the graph is ready to be queried for useful information.
response = api_client.query_graph(graph.uuid)
Documentation for API Endpoints
All URIs are relative to https://api.useartifact.ai
Class | Method | HTTP request | Description |
---|---|---|---|
DefaultApi | create_graph | POST /graphs | Create a new graph |
DefaultApi | delete_all_graphs | POST /graphs/delete_all | Deletes all graphs |
DefaultApi | delete_graph | POST /graphs/{graphId}/delete | Delete a graph |
DefaultApi | get_graph_documents_meta | POST /graphs/{graphId}/documents_meta | Get graph documents meta |
DefaultApi | get_graph_stats | POST /graphs/{graphId}/stats | Get graph statistics |
DefaultApi | ingest_document | POST /graphs/{graphId}/ingest | Ingest a document into a graph |
DefaultApi | list_graphs | GET /graphs | List all graphs |
DefaultApi | query_graph | POST /graphs/{graphId}/query | Query a graph |
Documentation For Models
Documentation For Authorization
Authentication schemes defined for the API:
ApiKeyAuth
- Type: API key
- API key parameter name: Authorization
- Location: HTTP header
Author
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
File details
Details for the file artifact_client-2.4.5.tar.gz
.
File metadata
- Download URL: artifact_client-2.4.5.tar.gz
- Upload date:
- Size: 41.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4aa90603988db2d29db2de15f0f4e38302a8bdaff604a6bfc8025d9600abbff1 |
|
MD5 | 7429d45b5327f577f7c3d3027cff4bb5 |
|
BLAKE2b-256 | ba593cb3f8e58a41c7a315f6ebe893eca5f29d35392495660cd8629fd830563e |
File details
Details for the file artifact_client-2.4.5-py3-none-any.whl
.
File metadata
- Download URL: artifact_client-2.4.5-py3-none-any.whl
- Upload date:
- Size: 73.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d3a6f4d396233edb7f7c1b8396ef1f3aa36a65af732558e351caac5657a3ccf1 |
|
MD5 | 04d5bc654186bb9dbabc568a2922c7ae |
|
BLAKE2b-256 | cf48b0067e59e10ecaef4e4fdcb44b49f20894e335e3990ed97e606c5bcc0ad3 |