Open Data Discovery Models
Project description
Open Data Discovery Models Package
Models
You can use odd pydantic models:
from odd_models.models import DataEntityList
data_entity_list = DataEntityList(data_source_oddrn='/postgresql/host/localhost/databases/opendatadiscovery', items=[])
Adapter's Controller
You can inherit from base Adapter Controller for writing your own adapters:
from odd_models.adapter.controllers import ODDController
class MyController(ODDController):
def get_data_entities(self, changed_since=None, )
pass
ODD API Client
You can use ready API Client to send requests:
from odd_models.api_client import ODDApiClient
api_client = ODDApiClient(base_url='http://127.0.0.1:8080')
# using pydantic objects:
from odd_models.models import DataEntityList
data_entity_list = DataEntityList(data_source_oddrn='/postgresql/host/localhost/databases/opendatadiscovery', items=[])
response = api_client.post_data_entity_list(data_entity_list)
assert response.status_code == 200
# using dict (validation will be in the client)
data_entity_list = {'data_source_oddrn': '/postgresql/host/localhost/databases/opendatadiscovery', 'items': []}
response = api_client.post_data_entity_list(data_entity_list)
assert response.status_code == 200
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
odd-models-1.0.23.tar.gz
(11.0 kB
view details)
Built Distribution
File details
Details for the file odd-models-1.0.23.tar.gz
.
File metadata
- Download URL: odd-models-1.0.23.tar.gz
- Upload date:
- Size: 11.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.6 CPython/3.9.1 Linux/5.13.0-1023-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 57c5f5f7f241161ea4afe6ed6e1cc9795a6070235e19d44b9f57a90fdb1ca322 |
|
MD5 | 731776ef2358466abe99e482edc00f41 |
|
BLAKE2b-256 | 36abfd848eae8d068745c6cc865df0bce85235b0a879777973509330d5c68a47 |
File details
Details for the file odd_models-1.0.23-py3-none-any.whl
.
File metadata
- Download URL: odd_models-1.0.23-py3-none-any.whl
- Upload date:
- Size: 14.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.6 CPython/3.9.1 Linux/5.13.0-1023-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a6abd2ede343cfcca0272611a2b8571ae04100934d6e4437ce7389e14168548f |
|
MD5 | 52e003d114df0f696d61ea9ca66e8b72 |
|
BLAKE2b-256 | 347b196b7c8c89dab60e1d95744d1ea65025f9f0bec7528892a5eb3ab8540312 |