notion-df icon indicating copy to clipboard operation
notion-df copied to clipboard

Seamlessly Connecting Notion Database with Python Pandas DataFrame

Results 22 notion-df issues
Sort by recently updated
recently updated
newest added

import pandas as pd import notion_df csv_file_path = "/Users/badwolf/Downloads/output_table_df.csv" env_vars_path = "env_vars.txt" table_df = pd.read_csv(csv_file_path) new_page_id, new_page_url = get_env_vars_from_text_file(env_vars_path) notion_df.config(api_key='secret_qPKn') notion_df.upload(table_df,new_page_url, title="Misclassified Intent count") above is my code for which...

Pydantic 2.0 has breaking changes, namely in the way it handles Optional. Optional values now raise Error if a default value is not provided. This PR migrates to Pedantic 2.0...