Internet Calendaring and Scheduling (iCalendar) for Python
 
 
Go to file
Gil Forcada 8d6a285214 Whitespaces cleanup 2014-08-26 00:55:26 +02:00
docs Whitespaces cleanup 2014-08-26 00:55:26 +02:00
src/icalendar Whitespaces cleanup 2014-08-26 00:55:26 +02:00
.gitignore Exclude editor backup files from egg distributions. Fixes #144. 2014-07-22 12:10:27 +02:00
.travis.yml More fixes for Travis 2014-06-03 17:49:31 +02:00
CHANGES.rst added changelog note 2014-08-21 22:21:07 +02:00
CONTRIBUTING.rst Whitespaces cleanup 2014-08-26 00:55:26 +02:00
LICENSE.rst housekeeping 2013-03-15 16:34:42 +01:00
MANIFEST.in Exclude editor backup files from egg distributions. Fixes #144. 2014-07-22 12:10:27 +02:00
README.rst More fixes for Travis 2014-06-03 17:49:31 +02:00
TODO.rst update docs TODO 2013-04-24 12:15:53 +02:00
bootstrap.py new version 2014-06-02 11:21:18 +02:00
buildout.cfg Whitespaces cleanup 2014-08-26 00:55:26 +02:00
setup.py back to dev 2014-07-22 12:13:21 +02:00
tox.ini simplify nested test structure, comment for running specific tox env 2014-07-14 13:52:24 +02:00

README.rst

==========================================================
Internet Calendaring and Scheduling (iCalendar) for Python
==========================================================

The `icalendar`_ package is a parser/generator of iCalendar files for use
with Python.

----

    :Homepage: http://icalendar.readthedocs.org
    :Code: http://github.com/collective/icalendar
    :Mailing list: http://github.com/collective/icalendar/issues
    :Dependencies: `setuptools`_ and since version 3.0 we depend on `pytz`_.
    :Compatible with: Python 2.6, 2.7 and 3.3+
    :License: `BSD`_

----


.. image:: https://travis-ci.org/collective/icalendar.svg?branch=master
    :target: https://travis-ci.org/collective/icalendar


Roadmap
=======

- 4.0: API refactoring



Changes in version 3.0
======================

API Change
----------

Since version we unified to icalendar de/serialization API to use only to_ical
(for writing an ical string from the internal representation) and from_ical
(for parsing an ical string into the internal representation).

to_ical is now used instead of the methods ical, string, as_string and instead
of string casting via __str__ and str.

from_ical is now used instead of from_string.

This change is a requirement for future Python 3 compatibility. Please update
your code to reflect to the new API.

Timezone support
----------------

Timezones are now fully supported in icalendar for serialization and
deserialization. We use the pytz library for timezone components of datetime
instances. The timezone identifiers must be valid pytz respectively Olson
database timezone identifiers. This can be a problem for 'GMT' identifiers,
which are not defined in the Olson database.

Instead of the own UTC tzinfo implementation we use pytz UTC tzinfo object now.


About this fork which is not a fork anymore
===========================================

Aim of this fork (not fork anymore, read further) was to bring this package up
to date with latest icalendar `RFC`_ specification as part of
`plone.app.event`_ project which goal is to bring recurrent evens to `Plone`_.

After some thoughts we (Plone developers involved with `plone.app.event`_) send
a suggestion to icalendar-dev@codespeak.net to take over mainaining of
`icalendar`_. Nobody object and since version 2.2 we are back to development.

.. _`icalendar`: http://pypi.python.org/pypi/icalendar
.. _`plone.app.event`: http://github.com/plone/plone.app.event
.. _`Plone`: http://plone.org
.. _`pytz`: http://pypi.python.org/pypi/pytz
.. _`setuptools`: http://pypi.python.org/pypi/setuptools
.. _`RFC`: http://www.ietf.org/rfc/rfc5545.txt
.. _`BSD`: https://github.com/collective/icalendar/issues/2


Test Coverage Report
====================

Output from coverage test::

    Name                         Stmts   Miss  Cover
    ------------------------------------------------
    src/icalendar/__init__           4      0   100%
    src/icalendar/cal              243      7    97%
    src/icalendar/caselessdict      66      7    89%
    src/icalendar/compat             1      0   100%
    src/icalendar/parser           192      6    97%
    src/icalendar/parser_tools      20      0   100%
    src/icalendar/prop             536     64    88%
    src/icalendar/tools             16      0   100%
    ------------------------------------------------
    TOTAL                         1078     84    92%