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.19.tar.gz
(11.0 kB
view details)
Built Distribution
File details
Details for the file odd-models-1.0.19.tar.gz
.
File metadata
- Download URL: odd-models-1.0.19.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.11.0-1028-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | de134fa6d7b2163f3ce6b3d5bac7d564d79bbe8d7dcd5b011f3266ba8f1d7e47 |
|
MD5 | 877cabe79dce0f5557b45336604791ef |
|
BLAKE2b-256 | 7f595f11ef77b52c00f913692f1f13a7cd972416c4f1b4f18541968e6c5f680b |
File details
Details for the file odd_models-1.0.19-py3-none-any.whl
.
File metadata
- Download URL: odd_models-1.0.19-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 | c50b642009ca7cc1a5f63277bd87751a8ce3e6d2e2410e1ee8bab6f3b4ef1ef5 |
|
MD5 | 9dffbe6137289dd5538ac07ae9ad987a |
|
BLAKE2b-256 | 3efda22a122197a0928e5eff459fca63970342063df180d84550b50be93e9b1a |