In python and pandas I have the following dataframe:
tweet_text.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 11 entries, 0 to 10
Data columns (total 8 columns):
# Column Non-Null Count Dtype
--- ------ -------------- --...
Hello
I have a table in Airtable that I fill with data from a Python dataframe - pandas
I run code on a jupyter notebook and it works normally:
from airtable import Airtable
table = Airtable(api_key = "",
base_key ="",
table_name ="")
for num,...