Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8648777
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T13:23:35+00:00 2026-06-12T13:23:35+00:00

So I’m making a small App Engine application through python which reads a timetable

  • 0

So I’m making a small App Engine application through python which reads a timetable from a file and puts it into your Google Calender. All times/dates in the timetable are independent of DST so I need to put in events in the same manner. This is complicated by the fact that all the events are recurring weekly over multiple DST periods.

I am using Calender API V3.

I start by creating my own Calender for this.

calander = {
    'summary': 'Calender Name,
    'location': 'Somewhere in Ireland',
    'timeZone': 'GMT',
}

Then I populate it with many different recurring events

event = {
    'summary': 'CS101',
    'description': 'Intro to Comp Sci',
    'location': 'Bla bla bla',
    'start': {
        'dateTime': '2012-10-03T10:00:00.000-00:00',
        'timeZone': 'GMT'
    },
    'end': {
        'dateTime': '2012-10-03T11:00:00.000-00:00',
        'timeZone': 'GMT'
    },
    'recurrence': [
        'RRULE:FREQ=WEEKLY;UNTIL=20121231',
    ],
}

In my actual program of course, all of these strings are being generated dynamically, but i have no problems here.

The problem is that any event occurring during the summertime DST period is automatically put 1 hour behind the time I am giving it. I am sure this is a bug because I am setting the timezone to GMT for the events and calender, but GMT does not observe daylight savings. Nothing should be done to the times I feed in.

For instance, the timetable says an event lasts from 10AM to 11AM every monday from September 1st to December 31st. If this information is fed into the calender, all events before October 28th (the European fall back date) will one hour behind the timetable’s time. All times outside of the summertime period are good.

If I tell the calender that an event starts at 10AM, I don’t want it to adjust for DST. How can this be avoided?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T13:23:36+00:00Added an answer on June 12, 2026 at 1:23 pm

    Can it be that you have a timezone defined in the start.dateTime and end.dateTime as well? I looks like the timeZone field is not fully recognized if this is done. Try changing your dates from “2012-09-26T10:00:00.000-00:00” to just “2012-09-26T10:00:00.000” [API->start.dateTime]

    As GMT is without DST, if you put a calendar event as the one you specified, starting at 10:00 GMT, when looking at the calendar view with your local time set to “Europe/Dublin” these events will start at 11:00 as summer time is +1.

    I’m not sure what you mean with “independent” of timezone, but:

    1) If you want a recurring event that start at 10:00 Irish time weekly until december (as shown on your wall clock), try this:

    {
      "start": {
        "dateTime": "2012-09-26T10:00:00.000",
        "timeZone": "Europe/Dublin"
      },
      "end": {
        "dateTime": "2012-09-26T11:00:00.000",
        "timeZone": "Europe/Dublin"
      },
      "summary": "CS101 Dublin",
      "description": "Intro to Comp Sci",
      "location": "Bla bla bla",
      "recurrence": [
        "RRULE:FREQ=WEEKLY;UNTIL=20121131"
      ]
    }
    

    2) If you in fact want the event to start at 10:00 GMT weekly until december (as shown on a clock that is always set to winter time in Ireland), try this:

    {
      "start": {
        "dateTime": "2012-09-26T10:00:00.000",
        "timeZone": "GMT"
      },
      "end": {
        "dateTime": "2012-09-26T11:00:00.000",
        "timeZone": "GMT"
      },
      "summary": "CS101 GMT",
      "description": "Intro to Comp Sci",
      "location": "Bla bla bla",
      "recurrence": [
        "RRULE:FREQ=WEEKLY;UNTIL=20121131"
      ]
    }
    

    This will create an event that, when shown in a calendar UI with a timezone set to “Europe/Dublin” is at 11:00 until 2012-10-31, when it will start at 10:00. You can try to switch between different time zone displays in the Calendar UI on flower button->settings->your timezone.

    But my guess would be that you want (1) here, as it sounds like a CS course that would start with a time specified in local time.

    Btw, when trying things out if find the API explorer pretty handy: https://developers.google.com/apis-explorer/#s/calendar/v3/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

link Im having trouble converting the html entites into html characters, (&# 8217;) i
I used javascript for loading a picture on my website depending on which small
I have an array which has BIG numbers and small numbers in it. I
I have a text area in my form which accepts all possible characters from
I am currently running into a problem where an element is coming back from
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
I have just tried to save a simple *.rtf file with some websites and
For some reason, after submitting a string like this Jack’s Spindle from a text
I am trying to understand how to use SyndicationItem to display feed which is
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.