Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ics-py/ics-py
Pythonic and easy iCalendar library (rfc5545)
https://github.com/ics-py/ics-py
calendar event ical icalendar ics parser python rfc5545
Last synced: about 2 months ago
JSON representation
Pythonic and easy iCalendar library (rfc5545)
- Host: GitHub
- URL: https://github.com/ics-py/ics-py
- Owner: ics-py
- License: other
- Created: 2013-10-25T11:51:40.000Z (about 11 years ago)
- Default Branch: main
- Last Pushed: 2024-03-07T14:51:47.000Z (9 months ago)
- Last Synced: 2024-09-08T01:37:22.117Z (3 months ago)
- Topics: calendar, event, ical, icalendar, ics, parser, python, rfc5545
- Language: Python
- Homepage: http://icspy.readthedocs.org/en/stable/
- Size: 1.85 MB
- Stars: 633
- Watchers: 16
- Forks: 125
- Open Issues: 42
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE.rst
Awesome Lists containing this project
- stars - ics-py/ics-py
README
ics.py `0.8.0.dev0` : iCalendar for Humans
==========================================`Original repository `_ (GitHub) -
`Bugtracker and issues `_ (GitHub) -
`PyPi package `_ (ics) -
`Documentation `_ (Read The Docs)... image:: https://img.shields.io/pypi/l/ics
:target: https://pypi.python.org/pypi/ics/
:alt: Apache 2 LicenseIcs.py is a pythonic and easy iCalendar library.
Its goals are to read and write ics data in a developer friendly way.iCalendar is a widely-used and useful format but not user friendly.
Ics.py is there to give you the ability of creating and reading this
format without any knowledge of it.It should be able to parse every calendar that respects the
`rfc5545 `_ and maybe some more…
It also outputs rfc compliant calendars.iCalendar (file extension `.ics`) is used by Google Calendar,
Apple Calendar, Android and many more.Ics.py is available for Python 3.8, 3.9, 3.10, 3.11, 3.12 and is Apache2 Licensed.
Quickstart
----------.. code-block:: bash
$ pip install ics
.. code-block:: python
from datetime import datetime
from ics import Calendar, Eventc = Calendar()
e = Event()
e.summary = "My cool event"
e.description = "A meaningful description"
e.begin = datetime.fromisoformat("2022-06-06T12:05:23+02:00")
e.end = datetime.fromisoformat("2022-06-06T13:05:23+02:00")
c.events.append(e)
c
# Calendar(extra=Container('VCALENDAR', []), extra_params={}, version='2.0', prodid='ics.py 0.8.0.dev0 - http://git.io/lLljaA', scale=None, method=None, events=[Event(extra=Container('VEVENT', []), extra_params={}, timespan=EventTimespan(begin_time=datetime.datetime(2022, 6, 6, 12, 5, 23, tzinfo=datetime.timezone(datetime.timedelta(seconds=7200))), end_time=None, duration=None, precision='second'), summary=None, uid='[email protected]', description=None, location=None, url=None, status=None, created=None, last_modified=None, dtstamp=datetime.datetime(2022, 6, 6, 19, 28, 14, 575558, tzinfo=Timezone.from_tzid('UTC')), alarms=[], attach=[], classification=None, transparent=None, organizer=None, geo=None, attendees=[], categories=[])], todos=[])
with open("my.ics", "w") as f:
f.write(c.serialize())More examples are available in the
`documentation `_.Documentation
-------------All the `documentation `_ is hosted on
`readthedocs.org `_ and is updated automatically
at every commit.* `Quickstart `_
* `API `_
* `About `_Contribute
----------Contribution are welcome of course! For more information and how to setup, see
`contributing `_.Links
-----
* `rfc5545 `_
* `Vulgarised RFC `_.. image:: http://i.imgur.com/KnSQg48.jpg
:target: https://github.com/ics-py/ics-py
:alt: Parse ALL the calendars!
:align: center