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.17.tar.gz
(10.9 kB
view details)
Built Distribution
File details
Details for the file odd-models-1.0.17.tar.gz
.
File metadata
- Download URL: odd-models-1.0.17.tar.gz
- Upload date:
- Size: 10.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.6 CPython/3.9.1 Linux/5.11.0-1028-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 094cf020c3a7328013d7cb712f3f2873752354a3e8fae56df2cd8207a6529730 |
|
MD5 | 35674331d6c582d75c27aaaeb4dcd0fd |
|
BLAKE2b-256 | 729de284fae4b85052b70a1652ab6404fa255ca55118fe728f733d4b761dacc7 |
File details
Details for the file odd_models-1.0.17-py3-none-any.whl
.
File metadata
- Download URL: odd_models-1.0.17-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.11.0-1028-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ee72e9ebbea9a90062fd7d715bfd9f5ea5284e077cfa98f137f6ada6dfa1ec77 |
|
MD5 | 09ea9217e2c15c7af51adf30d7e07d62 |
|
BLAKE2b-256 | 3fadaeaa1cc4463cd75f0da0531e71b4cf0bf1853290c813bb425ea387f8c847 |