Metadata-Version: 2.1
Name: datavision-beeyard-sdk
Version: 12.3.100
Summary: BeeYard Python SDK
Home-page: https://docs.beeyard.services/docs/reference/sdk/python/
License: MIT
Keywords: python,sdk,beeyard
Author: DataVision
Author-email: support@datavision.software
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: attrs (>=21.2.0,<22.0.0)
Requires-Dist: httpx (>=0.24.1,<0.25.0)
Description-Content-Type: text/plain

= BeeYard-SDK: A client library for accessing Hive API

== Release notes

Release notes are available on the documentation web page https://docs.beeyard.services/docs/reference/sdk/python/release-notes/.

== Installation

To use the package, just install it via pip (or preferred package manager):

----
pip install datavision-beeyard-sdk
----

or use Poetry package manager to create your virtual environment and just add the SDK with:

----
poetry add datavision-beeyard-sdk
----

Now all functionalities are ready to be imported inside your Python project!

== Initialize a BeeYard client
Authentication is with authenticated client:

[source,python]
----
from beeyard_sdk import AuthenticatedClient

client = AuthenticatedClient('https://staging.beeyard.services/hive/', username, password)
----

It is possible to specify the *max_waiting_time_ms* parameter (in milliseconds) when creating the client object in order to avoid connectivity problems.
It specifies the max time within which the client tries to repeatedly send the request, in case of connectivity errors. After that time,
a ConnectionError will be raised. Default value is 0.

[source,python]
----
client = AuthenticatedClient('https://staging.beeyard.services/hive/', username, password, max_waiting_time_ms=1000)
----

As login endpoint will be updated, some optional parameters are provided, that can be set to point to the new endpoint:

[source,python]
----
client = AuthenticatedClient('https://staging.beeyard.services/hive/', username, password, max_waiting_time_ms=1000, client_id="byard", client_secret="", login_url=None)
----

where __login_url__ is the new endpoint uri.

It is possible to log in using client credentials as follows:

[source,python]
----
client = AuthenticatedClient('https://staging.beeyard.services/hive/', grant_type="client_credentials", client_id="the_client_id", client_secret="the_client_secret", login_url="https://staging.beeyard.services/id/")
----

Another option is to use a valid access token to initialize the client:

[source,python]
----
client = AuthenticatedClient('https://staging.beeyard.services/hive/', use_token=True, token=valid_token")
----

=== Example usage

[source,python]
----
from datavision_beeyard_sdk.models import WorkspaceDescriptorDto
from datavision_beeyard_sdk.api.workspace import create_workspace

workspace_desc = WorkspaceDescriptorDto(name="test", namespace="test")
create_workspace.create(client=client, request_body=workspace_desc)
----

== Documentation

Complete documentation can be found at http://localhost:1313/docs/reference/sdk/python/methods_reference/.

