-
Notifications
You must be signed in to change notification settings - Fork 24
Open
Labels
Description
I've found it difficult to create new datasets with the column and datatypes I need - Whilst its possible through the user interface, I'd prefer an API interaction so that new datasets can be quickly made when new data sources are found to load into the system.
Would it be possible to create a dataset using something like
d = client.dataset.new({ name=>'warmfusions-data', columns = [ 'id' => 'numeric', 'name' => 'text' ], 'key'=> 'id' } )
client.dataset.delete(d.key)
Perhaps even a little #9 trick:
client.dataset.metadata.put( { update => Date.now, summary => 'Some little text' } )