Re: Generating Calendar files for iPhone and Android with Pthon3/django

2022-08-03 Thread lone...@gmail.com
well well well. Look what I found. https://ical.marudot.com/ I played around with the site a little bit and it generated what I was looking for. I was looking for a data structure for the Reminder feature of an Event object. What I am doing in my own code is just one long string with

Re: Generating Calendar files for iPhone and Android with Pthon3/django

2022-08-03 Thread Christian Ledermann
icalendar is tried and tested and feature complete. OTOH if you want just to serve the iCal files from Google or Apple you don't even need to parse then, just pass them on? On Tue, 2 Aug 2022 at 15:48, lone...@gmail.com wrote: > I found: https://pypi.org/project/icalendar/. Are there any

Re: Generating Calendar files for iPhone and Android with Pthon3/django

2022-08-02 Thread lone...@gmail.com
I found: https://pypi.org/project/icalendar/. Are there any others out there? On Tuesday, August 2, 2022 at 10:41:44 AM UTC-4 Ryan Nowakowski wrote: > The standard is called iCal. There are a few different python libraries to > choose from. > > > On August 1, 2022 2:51:34 PM CDT,

Re: Generating Calendar files for iPhone and Android with Pthon3/django

2022-08-02 Thread Ryan Nowakowski
The standard is called iCal. There are a few different python libraries to choose from. On August 1, 2022 2:51:34 PM CDT, "lone...@gmail.com" wrote: >Hello all, > > I want to generate calendar files for both Android and iPhone. I do >not want to connect to the Google or Apple APIs to do

Generating Calendar files for iPhone and Android with Pthon3/django

2022-08-01 Thread lone...@gmail.com
Hello all, I want to generate calendar files for both Android and iPhone. I do not want to connect to the Google or Apple APIs to do this. I just want static files that are downloaded from my webapp to the mobile device. How and can this be done? Thank you. -- You received this