This release is a pre-release and may not be stable for production use.
Original repository (GitHub) - Bugtracker and issues (GitHub) - PyPi package (ics) - Documentation (Read The Docs).
Ics.py is a pythonic and easy iCalendar library. It’s 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 Sunbird, Google Calendar, Apple Calendar, Android…
Ics.py is available for Python>=3.4 and is Apache2 Licensed.
Quickstart
$ pip install ics
from ics import Calendar, Event
c = Calendar()
e = Event()
e.name = "My cool event"
e.begin = '20140101 00:00:00'
c.events.add(e)
c.events
# [<Event 'My cool event' begin:2014-01-01 00:00:00 end:2014-01-01 00:00:01>]
with open('my.ics', 'w') as my_file:
my_file.writelines(c)
# and it's done !
More examples are available in the documentation.
Documentation
All the documentation is hosted on readthedocs.org and is updated automatically at every commit.
Contribute
Contribution are welcome of course! For more information, see contributing.
Testing & Docs
# tests
$ pip install -r requirements.txt
$ pip install -r dev/requirements-test.txt
$ python setup.py test
# tests coverage
$ pip install -r requirements.txt
$ pip install -r dev/requirements-test.txt
$ python setup.py test
$ coverage html
$ firefox htmlcov/index.html
# docs
$ pip install -r requirements.txt
$ pip install -r dev/requirements-doc.txt
$ cd doc
$ make html
Links
Release files for ics-lancstimtab 0.5.dev0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| ics_lancstimtab-0.5.dev0.tar.gz | 51.3 kB | Details |
Release files / ics_lancstimtab-0.5.dev0.tar.gz
| Download URL | ics_lancstimtab-0.5.dev0.tar.gz |
|---|---|
| Size | 51.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
7ae42737db57bceb54161672308c3a5175b4638057efd97ad699adb6ef83ec3e
|
|
BLAKE2b-256 checksum How to use checksums |
789ece74ef1e4daecba6c588293ff3a71dd0dc1b58f03844b8a0065e42ead8a3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.0
|