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
fromcartoframes.authimportset_default_credentials, Credentialscreds=Credentials(
'eschbacher',
'abc123'
)
set_default_credentials(creds)
ds=Dataset(df)
# this throws an error# ValueError: You should provide a table_name and credentials to upload data. ds.upload(table_name='test_upload')
# this worksds.upload(table_name='test_upload', credentials=creds)
The text was updated successfully, but these errors were encountered:
Code to reproduce:
The text was updated successfully, but these errors were encountered: