This is a python client sdk for accessing semantha (the semantic platform)
Project description
semantha® SDK
The semantha SDK is a high-level REST client to access the semantha API. The SDK is still under development. An overview of the current progress (i.e. implemented and tested resources and endpoints) may be found at the end of this document (State of Development). The semantha SDK is compatible with python >= 3.8.
Disclaimer
IMPORTANT: The SDK is under development and interfaces may change at any time without notice. Use with caution and on own risk.
Update Note
Version 4.5.0 comes with a major restructuring of the SDK.
All sub-resources are directly accessible (instead of invoking getters).
That also means that (except for a few) all functions are plain get/post/delete/put/patch.
For example, in Versions < 4.5.0 a domain resource was fetched using semantha_sdk.domains.get_one("domain_name")
.
Starting with 4.5.0 it is semantha_sdk.domains("domain_name")
.
That also means that get/post/put/patch functions return semantha model objects (and never resources), which makes usage more consistent.
Access
To access semantha's API you will need an API and a server url. Both can be requested via this contact form.
Basic Usage
Import
import semantha_sdk
Authentication
semantha = semantha_sdk.login(url="<semantha platform server URL>", key="<your key>")
# or
semantha = semantha_sdk.login(url="<semantha platform server URL>", key_file="<path to your key file (json format)>")
End-point (Resource) Access
# end-points (resp. resources) can be used like objects
current_user = semantha.current_user
my_domain = semantha.domains("my_domain")
# they may have sub-resources, which can be retrieved as objects as well
reference_documents = my_domain.reference_documents
CRUD on End-points
# CRUD operations are functions
domain_settings = my_domain.settings.get()
my_domain.reference_documents.delete() (deletes ALL reference document/library entries)
Function Return Types & semantha Data Model
# some functions only return None, e.g.
my_domain.reference_documents.delete() # returns NoneType
# others return built in types, e.g
roles_list = current_user.roles.get() # returns list[str]
# but most return objects of the semantha Data Model
# (all returned objects are instances of frozen dataclasses)
settings = my_domain.settings.get() # returns instance of DomainSettings
# attributes can be accessed as properties, e.g.
settings.enable_tagging # returns true or false
# Data Model objects may be complex
document = my_domain.references.post(file=a, reference_document=b) # returns instance of Document
# the following returns the similarity value of the first references of the first sentence of the
# the first paragraph on the first page of the document (if a reference was found for this sentence)
similarity = pages[0].contents[0].paragraphs[0].references[0].similarity # returns float
State of Development
The following resources and end-points are fully functional and (partially) tested:
- login -> API
- .current_user -> CurrentUser
- get -> UserData(SemanthaModelEntity)
- roles -> CurrentUserRoles
- get -> list[str]
- .diff -> Diff
- post -> list[Diff(SemanthaModelEntity)]
- .domains -> Domains
- get -> list[Domain(SemanthaModelEntity)]
- .domains("domain_name") -> Domain
- .document_annotations -> DocumentAnnotations
- post -> not yet implemented
- .document_classes -> DocumentClasses
- get -> list[DocumentClass(SemanthaModelEntity)]
- post -> DocumentClass(SemanthaModelEntity)
- delete -> None
- .document_classes("id") -> DocumentClass
- get -> DocumentClass(SemanthaModelEntity)
- delete -> None
- put -> DocumentClass(SemanthaModelEntity)
- document_classes -> InnerDocumentClasses
- get -> list[DocumentClass(SemanthaModelEntity)]
- post -> DocumentClass(SemanthaModelEntity)
- reference_documents -> InnerReferenceDocuments
- get -> list[Document(SemanthaModelEntity)]
- patch -> None
- delete -> None
- .document_comparisons -> DocumentComparisons
- post -> not yet implemented
- .documents -> Documents
- post -> list[Document(SemanthaModelEntity)]
- .reference_documents -> ReferenceDocuments
- get -> ReferenceDocuments(SemanthaModelEntity)
- delete -> None
- post -> list[DocumentInformation(SemanthaModelEntity)]
- .clusters -> DocumentCluster
- get -> DocumentCluster(SemanthaModelEntity)
- .statistic -> Statistics
- get -> Statistic(SemanthaModelEntity)
- .named_entities -> NamedEntities
- get -> Optional[NamedEntities(SemanthaModelEntity)]
- .reference_documents("id") -> ReferenceDocument
- get -> Document(SemanthaModelEntity)
- delete -> None
- patch -> DocumentInformation(SemanthaModelEntity)
- .paragraphs("id") -> ReferenceDocumentParagraph
- get -> Paragraph(SemanthaModelEntity)
- patch -> Paragraph(SemanthaModelEntity)
- delete -> None
- .sentences("id") -> ReferenceDocumentSentence
- get -> Sentence(SemanthaModelEntity)
- .references -> References
- post -> Document(SemanthaModelEntity)
- .settings -> DomainSettings
- get -> DomainSettings(SemanthaModelEntity)
- patch -> DomainSettings(SemanthaModelEntity)
- .tags -> DomainTags
- get -> list[str]
- .document_annotations -> DocumentAnnotations
- .model
- .domains("domain_name")
- .boostwords -> Boostwords
- get -> list[Boostword(SemanthaModelEntity)]
- delete -> None
- post_word -> Boostword(SemanthaModelEntity)
- post_regex -> Boostword(SemanthaModelEntity)
- .boostwords("id") -> Boostword
- get -> Boostword(SemanthaModelEntity)
- delete -> None
- put_word -> Boostword(SemanthaModelEntity)
- put_regex -> Boostword(SemanthaModelEntity)
- .synonyms -> Synonyms
- get -> list[Synonym(SemanthaModelEntity)]
- delete -> None
- post_word -> Synonym(SemanthaModelEntity)
- post_regex -> Synonym(SemanthaModelEntity)
- .synonyms("id") -> Synonym
- get -> Synonym(SemanthaModelEntity)
- delete -> None
- put_word -> Synonym(SemanthaModelEntity)
- put_regex -> Synonym(SemanthaModelEntity)
- .boostwords -> Boostwords
- .domains("domain_name")
- .current_user -> CurrentUser
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
Hashes for semantha_sdk-4.5.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 93e135e2148b4e381d077e0fe06f8ea14c9dab31e9406648bd265bedbb6741de |
|
MD5 | 37c96cf344e87b1f46a1c7c024b3f6bf |
|
BLAKE2b-256 | 37779514e1dc7c32e440649fc35360385d9d5087ba77b9333b33ee60d37169c3 |