Internet Calendaring and Scheduling (iCalendar) for Python
 
 
Go to file
Dalton Durst b6f211dbfe Calm down fuzzing
The fuzzing configuration introduced by
https://github.com/collective/icalendar/pull/191 *did* find a novel
issue in its first run. However, it is unable to run on travis-ci due to
taking too long without output. I tried running it locally to make sure
it wasn't Travis being Travis, and sure enough, on my i9-9880H, the
operation took well over 20 minutes before I stopped it.

Because of this, I've reduced the number of examples that Hypothesis
will run. This will catch fewer errors but help us get PRs back on track
2019-11-12 10:47:14 -06:00
docs Calm down fuzzing 2019-11-12 10:47:14 -06:00
src/icalendar Calm down fuzzing 2019-11-12 10:47:14 -06:00
.gitignore
.travis.yml Quote all version strings in Travis CI configuration 2017-11-08 18:33:23 -08:00
CHANGES.rst Calm down fuzzing 2019-11-12 10:47:14 -06:00
CONTRIBUTING.rst prepare release 2017-11-08 14:13:02 +01:00
LICENSE.rst Clean up trailing and leading white space throughout project (#247) 2017-10-23 14:15:27 +02:00
MANIFEST.in
README.rst Update all pypi.python.org URLs to pypi.org 2018-04-26 06:16:27 -07:00
bootstrap.py Drop support for Python 2.6 and 3.3 2017-11-07 03:44:09 -08:00
buildout.cfg
requirements_docs.txt
setup.cfg Include license file in the generated wheel package (#243) 2017-10-23 14:14:59 +02:00
setup.py Cli (#256) 2018-02-09 01:37:52 +01:00
tox.ini Drop support for Python 2.6 and 3.3 2017-11-07 03:44:09 -08:00

README.rst

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

The `icalendar`_ package is a `RFC 5545`_ compatible parser/generator for iCalendar
files.

----

:Homepage: https://icalendar.readthedocs.io
:Code: https://github.com/collective/icalendar
:Mailing list: https://github.com/collective/icalendar/issues
:Dependencies: `python-dateutil`_ and `pytz`_.
:Compatible with: Python 2.7 and 3.4+
:License: `BSD`_

----


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


.. _`icalendar`: https://pypi.org/project/icalendar/
.. _`RFC 5545`: https://www.ietf.org/rfc/rfc5545.txt
.. _`python-dateutil`: https://github.com/dateutil/dateutil/
.. _`pytz`: https://pypi.org/project/pytz/
.. _`BSD`: https://github.com/collective/icalendar/issues/2


Related projects
================

* `icalevents <https://github.com/irgangla/icalevents>`_. It is built on top of icalendar and allows you to query iCal files and get the events happening on specific dates. It manages recurrent events as well.