data.world-py icon indicating copy to clipboard operation
data.world-py copied to clipboard

Python package for data.world

Results 25 data.world-py issues
Sort by recently updated
recently updated
newest added

"Invalid dataset key" is not the right error message for a valid key supplied for an inexistent dataset.

Support for more possible types as query parameters should be added. `date` and `datetime` should map naturally to their XSD counterparts: https://docs.python.org/3/library/datetime.html To give the developer complete capability to express...

For SPARQL queries: - Handle results of `DECRIBE` and `CONSTRUCT` queries as pure RDF and skip table schema inferencing - Harden table schema inferencing for `SELECT` queries in cases where...

Allow the API to set and report the data dictionary attached to a resource. It's an awesome feature! So I'd really like to be able to use it programmatically.

Solving issues #41 and #42 would almost surely require resources to be set with a richer interface than a dict. It would be valuable to have a separate interface for...

Something like: ``` dw schema-import --dataset shad/testing --csv schema.csv ``` The CSV would be the simplified format that we export from the UI. (note: ignore the `Type` column) ![image](https://cloud.githubusercontent.com/assets/3585/26009520/cf579d94-370e-11e7-884d-6177da34d756.png) Optionally,...

Normal dict are ordered starting in Python 3.6. The use of OrderedDict there could be avoided and would result in better users experience.

help wanted