Upload data
Nuvolos users can import and upload data into their tables. To do so, the user has a number of options which are illustrated below.
Uploading data programmatically
Python
from nuvolos import get_connection, to_sql
import pandas as pd
df = pd.read_csv(...) #read your data
con = get_connection()
to_sql(df=df, name="table_name", con=con, if_exists='replace', index=False)R
Loading smaller tables:
Loading large tables:
Matlab
Using Excel
Support request
Last updated
Was this helpful?