Metadata-Version: 2.4
Name: denodo_webservice
Version: 0.1.4
Summary: Add your description here
Author-email: David Gallay <david.gallay.96@gmail.com>, David Gallay <david.gallay@nagra.com>
Requires-Python: >=3.10
Requires-Dist: requests>=2.32.3
Description-Content-Type: text/markdown

# README

This is a library to interact with [Denodo RESTful Web Services](https://community.denodo.com/docs/html/browse/8.0/en/vdp/administration/restful_architecture/restful_web_service/restful_web_service)

```python
client = Client(host, username, password)
view = client.database(dbname).view(viewname)
elements: list[dict] = view.get(
    select=[
        "name",
        "age",
    ],
    filter="job ='developer'",
)
```
