Seevooplay is a Django app for online invitations and RSVPs.
Project description
Seevooplay
Seevooplay is a Django app for online invitations and RSVPs. Think of it as your personal, self-hosted version of Partiful, Evite, Facebook Invitations, and the like. Throwing a party? Don't give all your friends' phone numbers to Partiful, don't give their email addresses to Evite, don't expect them to be on Facebook. Embrace the indieweb, kick the corporate middleman to the curb, and let Seevooplay send email invitations and collect responses for you! That's the pitch, anyway.
Seevooplay is crafted for personal use; it is not architected for scale. It is directly inspired by DaVite, a 2000-line Perl script last updated in 2004 -- a very cool and useful hack for its time, but wholly inappropriate for use on the modern web. Seevooplay aims to solve the same problems DaVite did, in much the same way, but with modern, maintainable, extensible code, atop the rock-solid foundation of Python and Django.
The owner of a Seevooplay instance interacts with Seevooplay mainly through Django's admin. Invitees generally interact with a single page, whose default template and styling is deliberately minimalistic and intended to be customized. Through the magic of the CSS cascade and Django template overriding, you can make what your guests see as gorgeous (or as ugly) as you like.
Your invitees will receive emails containing personalized links back to your Seevooplay instance. They won't have to create any sort of account (or log in) to RSVP to your event; a UUID in their link tells Seevooplay who they are. This means that forwarded links are problematic: If Alice forwards her invitation to Bob, Bob can RSVP as Alice. In other words, from a security standpoint, Seevooplay is about as naive as it gets. For the casual, personal use cases Seevooplay is designed for, however, this model works. If it spooks you, your parties are much higher stakes than mine, and you should look for a different solution. :)
Seevooplay is free software, licensed under the terms of the GNU General Public License, Version 3. See the included COPYING file for details.
For slightly more context, read the original release announcement.
Installation
Seevooplay can be run as a standalone project, or integrated with an existing Django project.
Run as a standalone project
There is not (yet) a containerized distribution of Seevooplay, so there is a small bit of setup work to do if you'd like to selfhost a standalone instance. As of version 2.0, Seevooplay is a uv project. If you don't have uv, grab a copy before proceeding.
- Download the Seevooplay distribution and extract to a folder, or
git cloneit. - Copy config/settings/local.py.example to config/settings/local.py and edit local.py to match your server's particulars.
cdinto Seevooplay's directory and useuvto fetch Seevooplay's dependencies and set up its virtual environment:
uv sync
uv run ./manage.py migrate
uv run ./manage.py collectstatic
- Now do
uv run ./manage.py sendtestemailto ensure your setup can send mail. - Now
uv run ./manage.py createsuperuserwill walk you through creating a superuser. - Fire up the Django development server with
uv run ./manage.py runserverif you are test-driving Seevooplay. In production, do not use the development server. Instead, serve the app with gunicorn (included) behind a reverse proxy like nginx or caddy:uv run gunicorn config.wsgi. - In your browser, navigate to http://yourdomain/admin and log in with your superuser credentials to poke around and create your first event in Seevooplay. As long as you remain logged in, you can view your first event at http://yourdomain/rsvp/1.
Integrate with an existing Django project
- Add Seevooplay to your project with
uv add seevooplay. - Add to INSTALLED_APPS in your settings.py:
'djrichtextfield', # required for seevooplay
'seevooplay',
- Add settings for django-richtextfield in your settings.py. See django-richtextfield's docs for details, or copy the DJRICHTEXTFIELD_CONFIG stanza from Seevooplay's config/settings/base.py.
- In your main urls.py, include Seevooplay's URLs (make sure
includeis imported fromdjango.urls):
path('seevooplay/', include('seevooplay.urls')),
This puts Seevooplay's routes under /seevooplay/, giving you paths like /seevooplay/rsvp/<event_id>/.
- From within your project's virtual environment:
uv run ./manage.py migrate
uv run ./manage.py collectstatic
- There should now be a Seevooplay section in your project's admin, where you can start kicking the tires.
New in 2.x
- Seevooplay 2.x replaces conventional UUIDs with shortuuids, resulting in shorter invite URLs for your guests. Existing UUIDs are kept in the database if you are upgrading, so active invitation links will not break. (The legacy_uuid field will go away in a future version of Seevooplay.)
- Seevooplay no longer emails invitees immediately when you save your event. Instead, on save, the admin user is presented with the option to email uninvited guests. Do it then and there, or wait for later -- your choice.
- Event pages now sport an "Add to Calendar" button that does what your guests might expect.
- Seevooplay has been internationalized! The author is (regretfully) a monolingual Californian, so at the moment, the app is English-only out of the box, but it now follows standard Django practices for internationalization and localization. If you speak another language and would like to contribute a translation, please open a pull request or get in touch if you need guidance.
- The app now includes a comprehensive suite of pytest-driven tests.
Upgrading from 1.x
- Standalone installations: You should be able to simply upgrade the codebase, run migrations, and re-launch the app.
- Integrations with other Django projects: Update your seevooplay depdendency, run migrations, and edit your main urls.py as described above -- Seevooplay 2.x now requires only one entry in that file.
What Seevooplay Lacks
- The ability to message invitees using anything other than email. Seevooplay cannot send text messages to phone numbers, for instance, for the simple reason that there is no cost-free (or even low-cost, hassle-free) way for a self-hosted application to do that, due to carrier restrictions targeting spam and abuse.
- HTML emails. Plain text emails don't bother me much, but perhaps I'll do these someday.
- Comprehensive documentation. If anyone other than me ends up using this, the docs will get better. In the meantime, if you try using Seevooplay and run into trouble, please open an issue on GitHub. I will help if I can.
- Perfection. This software was crafted to scratch a personal itch. It almost certainly has bugs. If you discover one, or you have a suggestion for improving the code, please open an issue on GitHub.
'Add to calendar' functionality. This is probably something I'll hack on at some point.(Done in 2.0!)Tests. Another thing I'm likely to throw together at some point.(Done in 2.0!)Internationalization. I welcome pull requests to change this.(Done in 2.0!)
LLM Disclosure
Seevooplay is not a vibe-coded app. The 1.x series was written entirely "by hand" prior to the availability of LLM-driven coding tools. LLM-based tooling was used in the creation of the 2.x series, mostly to aid with the UUID to shortuuid transition (which proved unexpectedly complicated for sqlite installations), to craft the test suite, and to internationalize the app. Every line of code generated by LLM-based tooling was reviewed (and often edited) by Seevooplay's author, who should be blamed for (and alerted to!) any bugs that remain.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file seevooplay-2.0.1.tar.gz.
File metadata
- Download URL: seevooplay-2.0.1.tar.gz
- Upload date:
- Size: 78.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"43","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a71a613cf48ddb6526e64edef4ee17c88106c10253ca55f5e0271ebc26a9ab8
|
|
| MD5 |
5f270a69329a9cd272dbe81f1286efc3
|
|
| BLAKE2b-256 |
c5ff31d1bccd26a18b9ccda6f6bf43fec6f214d24d10fe8b7ad64958e72eac80
|
File details
Details for the file seevooplay-2.0.1-py3-none-any.whl.
File metadata
- Download URL: seevooplay-2.0.1-py3-none-any.whl
- Upload date:
- Size: 48.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"43","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ffe994963cfb3a29b3c87e42635589a8b270070de2d486beb4a3617145615e93
|
|
| MD5 |
ece6b2839b635364179e151c53c49ccc
|
|
| BLAKE2b-256 |
0cbdc3f6b2b3815cc25c21031f0d99a664f052397adeb588fa4f0077cc56a273
|