You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems like parsing to JSON is sort of a costly unnecessary step for data that is already in CSV format - do you have any way to accommodate for that style of data? Where the fields for the columns would be laid out like:
It seems like parsing to JSON is sort of a costly unnecessary step for data that is already in CSV format - do you have any way to accommodate for that style of data? Where the fields for the columns would be laid out like:
let fields = ["id", "name", "screen_name", "location", "description", "url", "protected", "followers_count", "friends_count", "listed_count", "created_at", "favourites_count","verified", "statuses_count", "profile_background_image_url_https", "profile_image_url_https" ]
And the values would come in arrays from streaming chunks of CSV. Right now I convert them but it seems like there must be a better way :)
The text was updated successfully, but these errors were encountered: