Save to Notion vs Copy To Notion

Save to Notion:

import sys

# sys.argv contains the arguments passed to the script
print("Passed arguments:", sys.argv[1:]) # Display all arguments (except the script name)

for arg in sys.argv[1:]: # Iterate over the passed arguments
    print(f"Processing: {arg}")

Copy To Notion:
`import sys

sys.argv contains the arguments passed to the script

print("Passed arguments:", sys.argv[1:]) # Display all arguments (except the script name)

for arg in sys.argv[1:]: # Iterate over the passed arguments print(f"Processing: {arg}") `

copied from ChatGPT for Notion

Please authenticate to join the conversation.

Upvoters
Status

In Review

Board

💡 Requests

Tags

bug

Date

5 months ago

Author

cauamachado51

Subscribe to post

Get notified by email when there are changes.