Shannon Shen

Results 27 issues of Shannon Shen

As Google have published [a new set of APIs for form](https://developers.google.com/apps-script/reference/script/trigger-builder), I thought we might need to change the API names in the code. ``` ScriptApp.newTrigger("submitValuesToSlack") .forForm(FormApp.getActiveForm()) .onFormSubmit() .create(); ```

https://developers.notion.com/reference/request-limits

The current way of saving notion_urls in notion_df is not perfect: ``` df.notion_urls = pd.Series([ele["url"] for ele in database_query_results]) df.notion_ids = pd.Series([ele["id"] for ele in database_query_results]) ``` For example, after...

In notion documentation, there are: - [Property Object](https://developers.notion.com/reference/property-object) - XXX Confinguration - [Property Value Object](https://developers.notion.com/reference/property-value-object) - XXX property values - [XX Object] - User Object ... - File Object...

Now the [`UserObject`](https://github.com/lolipopshock/notion-df/blob/21c45e9af895c01e6b8a9940ba0d74c94c79b450/src/notion_df/base.py#L125) just has very rudimentary functions ...