Skip to main content

Datasette plugin for outputting iCalendar files

Project description

datasette-ics

PyPI Changelog Tests License

Datasette plugin that adds support for generating iCalendar .ics files with the results of a SQL query.

Installation

Install this plugin in the same environment as Datasette to enable the .ics output extension.

$ pip install datasette-ics

Usage

To create an iCalendar file you need to define a custom SQL query that returns a required set of columns:

  • event_name - the short name for the event
  • event_dtstart - when the event starts

The following columns are optional:

  • event_dtend - when the event ends
  • event_duration - the duration of the event (use instead of dtend)
  • event_description - a longer description of the event
  • event_uid - a globally unique identifier for this event
  • event_tzid - the timezone for the event, e.g. America/Chicago

A query that returns these columns can then be returned as an ics feed by adding the .ics extension.

Demo

This SQL query calculates the lowest tide per day at Pillar Point in Half Moon Bay, California.

Since the query returns event_name, event_dtstart and event_tzid columns it produces this ICS feed. If you subscribe to that in a calendar application such as Apple Calendar you get something that looks like this:

Apple Calendar showing low tides at Pillar Point during a week

Using a canned query

Datasette's canned query mechanism can be used to configure calendars. If a canned query definition has a title that will be used as the title of the calendar.

Here's an example, defined using a metadata.yaml file:

databases:
  mydatabase:
    queries:
      calendar:
        title: My Calendar
        sql: |-
          select
            title as event_name,
            start as event_dtstart,
            description as event_description
          from
            events
          order by
            start
          limit
            100

This will result in a calendar feed at http://localhost:8001/mydatabase/calendar.ics

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

datasette-ics-0.5.2.tar.gz (8.3 kB view details)

Uploaded Source

Built Distribution

datasette_ics-0.5.2-py3-none-any.whl (8.9 kB view details)

Uploaded Python 3

File details

Details for the file datasette-ics-0.5.2.tar.gz.

File metadata

  • Download URL: datasette-ics-0.5.2.tar.gz
  • Upload date:
  • Size: 8.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for datasette-ics-0.5.2.tar.gz
Algorithm Hash digest
SHA256 61ba2c939338526d2ef46add8cb3279748f478d9254981f36f8c7bd50b46f4e0
MD5 611db8fa1a8e0cebe5fa615f8bb52af8
BLAKE2b-256 bfb12f08723d89563604348a12b0f5bc334115cc6d02ac08be541f81e62324df

See more details on using hashes here.

File details

Details for the file datasette_ics-0.5.2-py3-none-any.whl.

File metadata

File hashes

Hashes for datasette_ics-0.5.2-py3-none-any.whl
Algorithm Hash digest
SHA256 2ca8f5927adf2255aaa1e750e3b17fe3cf6fc089841c578db42c37f9ae32471f
MD5 d2cee0870b235a32e51f98984d6bed94
BLAKE2b-256 f71634340fa1c33142bbdf6efa106a22cfed863cc93acf480c1377239f9bee2d

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page