Metadata-Version: 1.2
Name: django-ical
Version: 1.7.1
Summary: iCal feeds for Django based on Django's syndication feed framework.
Home-page: https://github.com/jazzband/django-ical
Author: Ian Lewis
Author-email: security@jazzband.com
Maintainer: Jazzband
Maintainer-email: security@jazzband.com
License: MIT License
Description: django-ical
        ===========
        
        |pypi| |docs| |build| |jazzband|
        
        django-ical is a simple library/framework for creating
        `iCal <http://www.ietf.org/rfc/rfc2445.txt>`_
        feeds based in Django's
        `syndication feed framework <https://docs.djangoproject.com/en/3.0/ref/contrib/syndication/>`_.
        
        This documentation is modeled after the documentation for the syndication feed
        framework so you can think of it as a simple extension.
        
        If you are familiar with the Django syndication feed framework you should be
        able to be able to use django-ical fairly quickly. It works the same way as
        the Django syndication framework but adds a few extension properties to
        support iCalendar feeds.
        
        django-ical uses the `icalendar <http://pypi.python.org/pypi/icalendar/>`_ library
        under the hood to generate iCalendar feeds.
        
        Documentation
        -------------
        
        Documentation is hosted on Read the Docs:
        
        http://django-ical.readthedocs.io/en/latest/
        
        
        .. |pypi| image:: https://img.shields.io/pypi/v/django-ical.svg
            :alt: PyPI
            :target: https://pypi.org/project/django-ical/
        
        .. |docs| image:: https://readthedocs.org/projects/django-ical/badge/?version=latest
            :alt: Documentation Status
            :scale: 100%
            :target: http://django-ical.readthedocs.io/en/latest/?badge=latest
        
        .. |build| image:: https://travis-ci.org/jazzband/django-ical.svg?branch=master
            :target: https://travis-ci.org/jazzband/django-ical
        
        .. |jazzband| image:: https://jazzband.co/static/img/badge.svg
           :target: https://jazzband.co/
           :alt: Jazzband
        
        
        Changes
        =======
        
        
        1.7.1 (2020-05-09)
        ------------------
        
        - Drop support for Django 1.11 LTS. [aleksihakli]
        - Fix string comparison in tests. [aleksihakli]
        
        
        1.7.0 (2019-10-09)
        ------------------
        
        - Add calendar MIME types for feeds. [xkill]
        - Add attendees for calendar events. [webaholik]
        
        
        1.6.2 (2019-08-30)
        ------------------
        
        - Language and documentation improvements.
        
        
        1.6.1 (2019-08-30)
        ------------------
        
        - Python 3.8 and PyPy support.
        
        
        1.6 (2019-08-27)
        ----------------
        
        - Drop support for old Python and Django versions.
          This enables support for new Django versions
          which do not have Python 2 compatibility shims.
        - Add continuous delivery via Jazzband.
        - Add SCM versioning via setuptools_scm.
        
        
        1.5 (2018-10-10)
        ----------------
        
        - Add support for Django 1.11. *Thanks, Martin Bächtold*
        - Drop support for Python 2.6. *Thanks, Martin Bächtold*
        - Add support for categories, rrule, exrule, rrdate, exdate. *Thanks, Armin Leuprecht*
        - Fix a documentation typo. *Thanks, Giorgos Logiotatidis*
        - Add documentation and testing around recurring events. *Thanks, Christian Ledermann*
        - Remove tests for Django versions < 1.8 *Thanks, Christian Ledermann*
        
        
        1.4 (2016-05-08)
        ----------------
        
        - Django up to 1.9 is supported.
        - Added new `ttl` parameter. *Thanks, Diaz-Gutierrez*
        - Added support for Python 3. *Thanks, Ben Lopatin*
        - Fixed LAST-MODIFIED support. *Thanks, Brad Bell*
        
        
        1.3 (2014-11-26)
        ----------------
        
        - Django up to 1.7 is supported.
        - Added a new `file_name` parameter. *Thanks, browniebroke*
        - Added support for the `ORGANIZER` field. *Thanks, browniebroke*
        
        
        1.2 (2012-12-12)
        ----------------
        
        - Removed support for Django 1.2. It should still work, but it's not supported.
        - We now require icalendar 3.1.
        - Added support for the `GEO` field. *Thanks, null_radix!*
        
        
        1.1 (2012-10-26)
        ----------------
        
        - Fixed issues running tests on Django 1.2 and Django 1.5.
        
        
        1.0 (2012-05-06)
        ----------------
        
        - Initial Release
        
Keywords: ical calendar django syndication feed
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Environment :: Plugins
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.2
Classifier: Framework :: Django :: 3.0
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
