You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wasn't sure which python file to run first I just went down the list. Using the comments in the code and the issue already cleared I was able to get configSync to work.
The core issue comes from the gcal-to-notion.py file where I get the above errors.
I couldn't find these modules to do a pip install from but I did find karenapp's 'google-calendar-python-api' repository. Is that was this is referencing and should it be in the same folder where I run the python code?
If so, the error I eventually run into is: Traceback (most recent call last): File "C:\Users\Jason\Downloads\notion-gcal-sync-main\notion-gcal-sync-main\gcal-to-notion.py", line 58, in <module> calendarList = list_calendars.list_calendars() AttributeError: module 'list_calendars' has no attribute 'list_calendars'
Or is this import supposed to be from NotionGCal? Importing that function in leads to the same error mentioned below (for obvious reasons)
Trying to run NotionGCal.py hangs and when I kill it, I can see it stopped on line 81 of that file where it references: events = service.events().list(calendarId = calendar['id']).execute()
Any help or more detailed installation would be greatly appreciated. I'm not extremely well versed in python so..
The text was updated successfully, but these errors were encountered:
I wasn't sure which python file to run first I just went down the list. Using the comments in the code and the issue already cleared I was able to get configSync to work.
The core issue comes from the gcal-to-notion.py file where I get the above errors.
I couldn't find these modules to do a pip install from but I did find karenapp's 'google-calendar-python-api' repository. Is that was this is referencing and should it be in the same folder where I run the python code?
If so, the error I eventually run into is:
Traceback (most recent call last): File "C:\Users\Jason\Downloads\notion-gcal-sync-main\notion-gcal-sync-main\gcal-to-notion.py", line 58, in <module> calendarList = list_calendars.list_calendars() AttributeError: module 'list_calendars' has no attribute 'list_calendars'
Or is this import supposed to be from NotionGCal? Importing that function in leads to the same error mentioned below (for obvious reasons)
Trying to run NotionGCal.py hangs and when I kill it, I can see it stopped on line 81 of that file where it references:
events = service.events().list(calendarId = calendar['id']).execute()
Any help or more detailed installation would be greatly appreciated. I'm not extremely well versed in python so..
The text was updated successfully, but these errors were encountered: