django-ical
===========
|pypi| |docs| |build| |coverage| |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:
https://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://github.com/jazzband/django-ical/workflows/Test/badge.svg
:target: https://github.com/jazzband/django-ical/actions
:alt: GitHub Actions
.. |coverage| image:: https://codecov.io/gh/jazzband/django-ical/branch/master/graph/badge.svg
:target: https://codecov.io/gh/jazzband/django-ical
:alt: Coverage
.. |jazzband| image:: https://jazzband.co/static/img/badge.svg
:target: https://jazzband.co/
:alt: Jazzband
Changes
=======
1.9.2 (2023-06-12)
------------------
- Support all properties specified in RFC 5545
[magicbrothers]
1.9.1 (2023-05-01)
------------------
- Fix multiple CATEGORIES and add tests
[mjfinney]
1.9.0 (2023-04-04)
------------------
- Support for iCalendar VTODO elements
[wetneb]
1.8.4 (2023-04-02)
------------------
- Fix content-type charset declarations.
[lchanouha]
- Update test matrix.
Add Python 3.11 and Django 4.1 support.
Deprecate Python 3.7 support.
[aleksihakli]
1.8.3 (2022-01-25)
------------------
- Enable Python 3.10 and Django 4.0 support.
[aleksihakli]
1.8.2 (2022-01-13)
------------------
- Deprecate universal Python 2 wheels.
[aleksihakli]
1.8.1 (2022-01-08)
------------------
- Drop Python 3.6 support and add Python 3.10 support.
[aleksihakli]
1.8.0 (2021-05-21)
------------------
- Add ``VALARM`` support and documentation.
[malteger]
1.7.3 (2021-05-03)
------------------
- Fix calendar ``Content-Type`` headers.
Previous configuration included multiple comma separated values
in the header, which is incompatible with the HTTP header specification.
[aleksihakli]
1.7.2 (2020-12-16)
------------------
- Add support for Python 3.9. [aleksihakli]
- Add support for Django 3.1. [aleksihakli]
- Add tox QA with black and prospector. [aleksihakli]
- Migrate from Travis to GitHub Actions. [aleksihakli]
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
Raw data
{
"_id": null,
"home_page": "https://github.com/jazzband/django-ical",
"name": "django-ical",
"maintainer": "Jazzband",
"docs_url": null,
"requires_python": "",
"maintainer_email": "security@jazzband.com",
"keywords": "ical calendar django syndication feed",
"author": "Ian Lewis",
"author_email": "security@jazzband.com",
"download_url": "https://files.pythonhosted.org/packages/e1/dc/70971de377f77c4f9f789a38b049b5fa239f1cfc6b671b0503971960f245/django-ical-1.9.2.tar.gz",
"platform": null,
"description": "django-ical\n===========\n\n|pypi| |docs| |build| |coverage| |jazzband|\n\ndjango-ical is a simple library/framework for creating\n`iCal <http://www.ietf.org/rfc/rfc2445.txt>`_\nfeeds based in Django's\n`syndication feed framework <https://docs.djangoproject.com/en/3.0/ref/contrib/syndication/>`_.\n\nThis documentation is modeled after the documentation for the syndication feed\nframework so you can think of it as a simple extension.\n\nIf you are familiar with the Django syndication feed framework you should be\nable to be able to use django-ical fairly quickly. It works the same way as\nthe Django syndication framework but adds a few extension properties to\nsupport iCalendar feeds.\n\ndjango-ical uses the `icalendar <http://pypi.python.org/pypi/icalendar/>`_ library\nunder the hood to generate iCalendar feeds.\n\nDocumentation\n-------------\n\nDocumentation is hosted on Read the Docs:\n\nhttps://django-ical.readthedocs.io/en/latest/\n\n\n.. |pypi| image:: https://img.shields.io/pypi/v/django-ical.svg\n :alt: PyPI\n :target: https://pypi.org/project/django-ical/\n\n.. |docs| image:: https://readthedocs.org/projects/django-ical/badge/?version=latest\n :alt: Documentation Status\n :scale: 100%\n :target: http://django-ical.readthedocs.io/en/latest/?badge=latest\n\n.. |build| image:: https://github.com/jazzband/django-ical/workflows/Test/badge.svg\n :target: https://github.com/jazzband/django-ical/actions\n :alt: GitHub Actions\n\n.. |coverage| image:: https://codecov.io/gh/jazzband/django-ical/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/jazzband/django-ical\n :alt: Coverage\n\n.. |jazzband| image:: https://jazzband.co/static/img/badge.svg\n :target: https://jazzband.co/\n :alt: Jazzband\n\n\nChanges\n=======\n\n\n1.9.2 (2023-06-12)\n------------------\n\n- Support all properties specified in RFC 5545\n [magicbrothers]\n\n\n1.9.1 (2023-05-01)\n------------------\n\n- Fix multiple CATEGORIES and add tests\n [mjfinney]\n\n\n1.9.0 (2023-04-04)\n------------------\n\n- Support for iCalendar VTODO elements\n [wetneb]\n\n\n1.8.4 (2023-04-02)\n------------------\n\n- Fix content-type charset declarations.\n [lchanouha]\n- Update test matrix.\n Add Python 3.11 and Django 4.1 support.\n Deprecate Python 3.7 support.\n [aleksihakli]\n\n\n1.8.3 (2022-01-25)\n------------------\n\n- Enable Python 3.10 and Django 4.0 support.\n [aleksihakli]\n\n\n1.8.2 (2022-01-13)\n------------------\n\n- Deprecate universal Python 2 wheels.\n [aleksihakli]\n\n\n1.8.1 (2022-01-08)\n------------------\n\n- Drop Python 3.6 support and add Python 3.10 support.\n [aleksihakli]\n\n\n1.8.0 (2021-05-21)\n------------------\n\n- Add ``VALARM`` support and documentation.\n [malteger]\n\n\n1.7.3 (2021-05-03)\n------------------\n\n- Fix calendar ``Content-Type`` headers.\n Previous configuration included multiple comma separated values\n in the header, which is incompatible with the HTTP header specification.\n [aleksihakli]\n\n\n1.7.2 (2020-12-16)\n------------------\n\n- Add support for Python 3.9. [aleksihakli]\n- Add support for Django 3.1. [aleksihakli]\n- Add tox QA with black and prospector. [aleksihakli]\n- Migrate from Travis to GitHub Actions. [aleksihakli]\n\n\n1.7.1 (2020-05-09)\n------------------\n\n- Drop support for Django 1.11 LTS. [aleksihakli]\n- Fix string comparison in tests. [aleksihakli]\n\n\n1.7.0 (2019-10-09)\n------------------\n\n- Add calendar MIME types for feeds. [xkill]\n- Add attendees for calendar events. [webaholik]\n\n\n1.6.2 (2019-08-30)\n------------------\n\n- Language and documentation improvements.\n\n\n1.6.1 (2019-08-30)\n------------------\n\n- Python 3.8 and PyPy support.\n\n\n1.6 (2019-08-27)\n----------------\n\n- Drop support for old Python and Django versions.\n This enables support for new Django versions\n which do not have Python 2 compatibility shims.\n- Add continuous delivery via Jazzband.\n- Add SCM versioning via setuptools_scm.\n\n\n1.5 (2018-10-10)\n----------------\n\n- Add support for Django 1.11. *Thanks, Martin B\u00e4chtold*\n- Drop support for Python 2.6. *Thanks, Martin B\u00e4chtold*\n- Add support for categories, rrule, exrule, rrdate, exdate. *Thanks, Armin Leuprecht*\n- Fix a documentation typo. *Thanks, Giorgos Logiotatidis*\n- Add documentation and testing around recurring events. *Thanks, Christian Ledermann*\n- Remove tests for Django versions < 1.8 *Thanks, Christian Ledermann*\n\n\n1.4 (2016-05-08)\n----------------\n\n- Django up to 1.9 is supported.\n- Added new `ttl` parameter. *Thanks, Diaz-Gutierrez*\n- Added support for Python 3. *Thanks, Ben Lopatin*\n- Fixed LAST-MODIFIED support. *Thanks, Brad Bell*\n\n\n1.3 (2014-11-26)\n----------------\n\n- Django up to 1.7 is supported.\n- Added a new `file_name` parameter. *Thanks, browniebroke*\n- Added support for the `ORGANIZER` field. *Thanks, browniebroke*\n\n\n1.2 (2012-12-12)\n----------------\n\n- Removed support for Django 1.2. It should still work, but it's not supported.\n- We now require icalendar 3.1.\n- Added support for the `GEO` field. *Thanks, null_radix!*\n\n\n1.1 (2012-10-26)\n----------------\n\n- Fixed issues running tests on Django 1.2 and Django 1.5.\n\n\n1.0 (2012-05-06)\n----------------\n\n- Initial Release\n",
"bugtrack_url": null,
"license": "MIT License",
"summary": "iCal feeds for Django based on Django's syndication feed framework.",
"version": "1.9.2",
"project_urls": {
"Homepage": "https://github.com/jazzband/django-ical"
},
"split_keywords": [
"ical",
"calendar",
"django",
"syndication",
"feed"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "053f647857462fa4169cb855aaf14969a6843f3910a3781d7c17f18c460b0e08",
"md5": "31290f952b303cbe86ab645816362e35",
"sha256": "74a16bca05735f91a00120cad7250f3c3aa292a9f698a6cfdc544a922c11de70"
},
"downloads": -1,
"filename": "django_ical-1.9.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "31290f952b303cbe86ab645816362e35",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 15494,
"upload_time": "2023-06-12T15:22:37",
"upload_time_iso_8601": "2023-06-12T15:22:37.618061Z",
"url": "https://files.pythonhosted.org/packages/05/3f/647857462fa4169cb855aaf14969a6843f3910a3781d7c17f18c460b0e08/django_ical-1.9.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e1dc70971de377f77c4f9f789a38b049b5fa239f1cfc6b671b0503971960f245",
"md5": "200858cb3ec23fa4770d250282c95f6a",
"sha256": "44c9b6fa90d09f25e9ebaa91ed9eb007f079afbc23d6aac909cfc18188a8e90c"
},
"downloads": -1,
"filename": "django-ical-1.9.2.tar.gz",
"has_sig": false,
"md5_digest": "200858cb3ec23fa4770d250282c95f6a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30831,
"upload_time": "2023-06-12T15:22:54",
"upload_time_iso_8601": "2023-06-12T15:22:54.015869Z",
"url": "https://files.pythonhosted.org/packages/e1/dc/70971de377f77c4f9f789a38b049b5fa239f1cfc6b671b0503971960f245/django-ical-1.9.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-06-12 15:22:54",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "jazzband",
"github_project": "django-ical",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"tox": true,
"lcname": "django-ical"
}