Upload to a Databin
Databins can now have data uploaded in bulk.
Create a databin.
In[1]:=
contactsBin =
CreateDatabin[<|"Name" -> "All Widget 1 Contacts",
"Interpretation" -> <|"name" -> "String",
"email" -> "EmailAddress"|>|>]
Enter some data and upload it.
In[2]:=
users = {<|"name" -> "Jon Doe",
"email" -> "jondoe@example.com"|>, <|"name" -> "Jane Doe",
"email" -> "janedoe@example.com"|>, <|"name" -> "Bob Sanders",
"email" -> "bob@example.com"|>, <|"name" -> "Bradley Ashford",
"email" -> "brash@example.com"|>, <|"name" -> "Alexandra Bull",
"email" -> "lexi@example.com"|>, <|"name" -> "Woody Codard",
"email" -> "wood@example.com"|>};
DatabinUpload[contactsBin, users]
The data has been added.
In[3]:=
Dataset[contactsBin]
Out[3]=