-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Storage interface to connect to storage backends? #23
Comments
I think there should be a separation between interface to implement (though for languages like python and js it's more like a documentation than real implementation check) and concrete implementations. So I thought more about builtin |
@pwalsh As I could see it:
If we not going to write sql, bigquery etc drivers for javascript this My preference to do first basic jts, dp implementations for js when we'll be having resources for it. |
It's going on here - frictionlessdata/tableschema-models-js#1 |
Description
Requires #22
In the Python lib, we have the concept of a Storage interface, which is used for push data from a table of data in JTS to a backend, and vice versa. The base class
jsontableschema.storage.Storage
, in Python, currently just stubs out the core API, and then we have two plugins that implement this API for BigQuery and SQL.We want to implement the base
Storage
class in the js lib, but not simply as a stub of the API, but with a minimal example of JSON/Object storage.Tasks
Storage
class@roll any comments? If you dont like the idea of a default JSON backend LMK.
The text was updated successfully, but these errors were encountered: