Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Google Calendar & Python
#3
(May-28-2017, 10:04 AM)Larz60+ Wrote:
Event event = new Event()
    .setSummary("Google I/O 2015")
    .setLocation("800 Howard St., San Francisco, CA 94103")
    .setDescription("A chance to hear more about Google's developer products.");
set end date and time:
DateTime endDateTime = new DateTime("2015-05-28T17:00:00-07:00");
EventDateTime end = new EventDateTime()
    .setDateTime(endDateTime)
    .setTimeZone("America/Los_Angeles");
event.setEnd(end);
Note that there is a 'new' for each step.
I don't see similar code in your script
This is not Python code (new ?!) - looks like you've forgotten to select Python tab
Test everything in a Python shell (iPython, Azure Notebook, etc.)
  • Someone gave you an advice you liked? Test it - maybe the advice was actually bad.
  • Someone gave you an advice you think is bad? Test it before arguing - maybe it was good.
  • You posted a claim that something you did not test works? Be prepared to eat your hat.
Reply


Messages In This Thread
Google Calendar & Python - by MeeranRizvi - May-28-2017, 09:01 AM
RE: Google Calendar & Python - by Larz60+ - May-28-2017, 10:04 AM
RE: Google Calendar & Python - by volcano63 - May-29-2017, 12:55 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  New on python. Needs help with Google sheet jeromep 1 403 Apr-25-2024, 06:47 PM
Last Post: deanhystad
  (Python) Pulling data from UA Google Analytics with more than 100k rows into csv. Stockers 0 1,390 Dec-19-2022, 11:11 PM
Last Post: Stockers
  Deploy Python to Cloud and save output to Google Drive chandrabr80 2 1,715 Jan-25-2022, 06:56 AM
Last Post: ndc85430
  install apache-airflow[postgres,google] on Python 3.8.12 virtual env ShahajaK 1 11,057 Oct-07-2021, 03:05 PM
Last Post: Larz60+
  how to import files in Google Collab wihout downloading them to PC and to Google Disk sveto4ka 9 4,182 Jun-03-2020, 12:40 PM
Last Post: sveto4ka
  PYTHON - GOOGLE... create new spreadsheet? danclark81 3 2,818 Feb-02-2020, 08:57 PM
Last Post: danclark81
  Run School Bell by Google Calendar darkmx6 1 2,141 Oct-29-2019, 02:12 AM
Last Post: Larz60+
  Google API OAuth v2 Python oneclick 0 2,164 Sep-09-2019, 05:02 AM
Last Post: oneclick
  How do I install apps from google play store? using python + selenium.. mongo 0 2,373 Aug-05-2019, 12:41 AM
Last Post: mongo
  Linking python to Google Sheets Charliefish1311 1 2,391 Jul-09-2019, 12:31 AM
Last Post: micseydel

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020