data.world-py
data.world-py copied to clipboard
Python package for data.world
Potentially long-running operations, especially `load_dataset()` and `query()` should show users a progress bar when used in interactive mode (e.g. python shell / iPython).
Currently, query results are downloaded eagerly, in spite of the use of `stream=True`. Instead, the query method should return an iterable leverage requests' `iter_content()` to download the data on-demand.
## Action Required: Fix Renovate Configuration There is an error with this repository's Renovate configuration that needs to be fixed. As a precaution, Renovate will stop PRs until it is...
Hi, I'm getting an error when using the `load_dataset` function. It seems that the API is providing datetime information with nanosecond resolution, while `datetime` only [supports](https://bugs.python.org/issue15443) up to microsecond resolution:...
When interacting with the [`sql` method of the `RestApiClient`](https://github.com/datadotworld/data.world-py/blob/8f93fbd669721de08a62aa5bb6273abcddf636bf/datadotworld/client/api.py#L640), the function leverages the method [`sql_post` from `QueriesAPI`](https://github.com/datadotworld/data.world-py/blob/8f93fbd669721de08a62aa5bb6273abcddf636bf/datadotworld/client/api.py#L668). This latter method does not leverage the `query` argument passed by the function....