Skip to main content

Python client for Maverick EntityGraph API

Project description

Maverick EntityGraph Client

This is a Python client for the Maverick EntityGraph.

Requirements.

Python 3.7+

Installation & Usage

pip install

pip install git+https://github.com/bechtleav360/entitygraph-client.git

(you may need to run pip with root permission: sudo pip install git+https://github.com/bechtleav360/entitygraph-client.git)

Then import the package:

import entitygraph

Getting Started

import entitygraph
from entitygraph import Admin, Entity, Query, Application, Transaction
from rdflib import SDO

# Defining the host is optional and defaults to https://entitygraph.azurewebsites.net
entitygraph.connect(api_key="123")

# For application-specific operations, the Application class is essential. 
# In the following code, an application named "MyApp" is being retrieved. 
# Then, an entity with id "f3f34f" is obtained and converted into the n3 format.
n3: str = Application().get_by_label("MyApp").Entity().get_by_id("f3f34f").n3()

# For operations within the default application, the Admin, Entity, and Query classes can be directly invoked.
# In the example below, an entity with id "g93h4g8" is retrieved and its "foaf.name" value is updated to "New Name".
Entity().get_by_id("g93h4g8").set_value(SDO.title, "New Name")

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

entitygraph-client-0.0.18.tar.gz (48.5 kB view hashes)

Uploaded Source

Built Distribution

entitygraph_client-0.0.18-py3-none-any.whl (51.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page