Subscribe to Seattle-area event calendars in your favorite calendar app. This project scrapes event data from dozens of local websites, ICS feeds, and APIs, then publishes them as standard iCalendar (.ics) files you can add to Google Calendar, Apple Calendar, Outlook, or any other calendar application.
This repository is also a template: 206.events is the reference instance of a city-agnostic engine. Click Use this template, run npm run init-city (or the skills/city-setup skill in Claude Code), and you get the same scraping engine, web UI, and agent-driven maintenance workflow configured for your city — with the Seattle content stripped. An afternoon gets you a deployed site; adding the four Claude Code routines in docs/routines.md makes it self-maintaining. The full walkthrough is in docs/SETUP.md; the design is in docs/city-template.md.
Visit the web interface to search, filter by tag, and preview upcoming events:
From there you can:
- Search for calendars by name or keyword
- Filter by neighborhood (Capitol Hill, Ballard, Downtown, etc.) or category (Music, Art, Beer, Movies, etc.)
- View an agenda of upcoming events for any calendar
- Copy the subscription URL for any calendar
- Add individual events directly to Google Calendar with a single click
- Subscribe to RSS feeds for any calendar or tag
Each calendar is available as a .ics file. To subscribe:
- Find the calendar you want on the web interface
- Copy its subscription URL
- Add it to your calendar app:
- Google Calendar: Settings > Add other calendars > From URL
- Apple Calendar: File > New Calendar Subscription
- Outlook: Add calendar > Subscribe from web
Calendars are regenerated daily, so your subscriptions stay up to date automatically.
In addition to individual source calendars, there are aggregate tag calendars that combine events from every source sharing a tag. For example, subscribing to the "Music" tag calendar gives you events from all music-related sources in a single feed.
You can favorite any calendar by clicking the ♡ heart button next to it. Favorites are shown together in a dedicated view so you can browse events across all your chosen calendars in one place.
Sign in with Google (button in the top-right corner of the site) to unlock two additional benefits:
- Sync across devices — your favorites are saved to your account and available on any browser or device
- Personal ICS subscription link — after signing in, a unique private URL appears in the Favorites view. Add it to Google Calendar, Apple Calendar, or Outlook to subscribe to all your favorited calendars in a single feed that updates automatically as you add or remove favorites
Your personal feed URL is secret — anyone with the link can subscribe to your favorites, so keep it private.
When browsing upcoming events in the web interface, each event has a 📅 button that lets you add that specific event to your calendar. Clicking it gives you two options:
- Google Calendar — opens Google Calendar in a new tab with the event details pre-filled (title, date/time, location, description)
- Download .ics — downloads a single-event
.icsfile you can open with Apple Calendar, Outlook, or any other calendar app
This is useful when you don't want to subscribe to an entire calendar but just want to save one event.
Every calendar and tag feed has a corresponding RSS feed you can follow in any RSS reader. Look for the RSS link next to each calendar or tag on the web interface.
- Individual calendar RSS feeds are available at
<calendar-name>.rss - Tag aggregate RSS feeds are available at
tag-<tagname>.rss
RSS feeds include the same events as the .ics files, making it easy to stay up to date in tools like Feedly, NetNewsWire, or any RSS-capable app.
The quickest way to send feedback is the in-app feedback form — open the You tab and tap Send feedback or Suggest a source, or use Report a problem with this source on any calendar's page. Submissions are filed as GitHub issues automatically. You can also open an issue directly using the templates below; the more detail you provide, the faster things get resolved.
If a calendar has incorrect data, is missing events, or is broken, open a bug report with:
- Which calendar is affected (name or URL)
- What you expected to see vs. what actually appeared
- An example event that is wrong or missing, including the date and event name
- A link to the original source website showing the correct information
Want to see a new Seattle-area event source added? Open a request with:
- The website URL where the events are listed
- What kind of events the source covers (music, art, food, community, etc.)
- Any known calendar feeds: check if the site already offers an ICS/iCal export, a
webcal://link, or a public API. This dramatically simplifies adding it. Look for "Subscribe", "Export Calendar", or "Add to Calendar" links on the site. - Suggested tags: neighborhood or category tags that would apply (see the tag list on the web interface)
If a calendar source has shut down, changed its website, or is consistently returning errors, let us know with:
- Which calendar is affected
- What changed: did the website move, shut down, or start blocking requests?
See CONTRIBUTORS.md for technical details on the architecture, how to implement new rippers, configuration schema, and development workflow.