A multi-event planner flask application. It allows for RSVP options, authentication, and guest management
Project description
mistela-flask
A multi-event planner elaborated with Flask.
Initial steps done following this Digital Ocean guide
This version of Flask
aims to provide a simpile solution to manage an event such as a wedding with different 'sub-events'. The tool also provides a custom-defined admin page as Flask
does not really provide one itself (and I did not like Flask-admin
as all users seemed to have admin rights).
Either way, this was a nice user-case for me to get hands-on with Flask.
Why the name Mistela?
Mistela is 'sort of a wine' quite common in my region (València, Spain) for celebrations or simply after a family dinner. It made sense that if this flask 'flavour' is about events (celebrations) management, it should have an appropiate name, therefore, mistela-flask :).
Downloading the package.
- Directly from the source:
pip install git+https://github.com/Carsopre/mistela-flask.git
- Or from pypi:
pip install mistela-flask
Installing the repository.
To develop on the repository you should be using Poetry
. Once installed, simply run the install commandpoetry install
and all development and production dependencies will be added to your virtual environment.
Usage
Mistela-flask can be used as a package and easily deployed as any regular flask app.
from mistelaflask import create_app
import secrets
import os
os.environ["SECRET_KEY"] = secrets.token_hex(16) # Required environment variable.
os.environ["DATABASE_URI"] = "sqlite:///db.sqlite"
os.environ["MISTELA_TITLE"] = "My big event"
os.environ["STATIC_FOLDER"] = "path//to//my//static//folder"
os.environ["MAIL_USERNAME"] = "joe.doe@email.com"
os.environ["MAIL_PASSWORD"] = "1234"
app = create_app()
app.run()
By default, mistelaflask will run on a
SQLite
database.
A more 'real' example can be found in the root of the repository as wsgi.py
.
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
File details
Details for the file mistela-flask-0.16.1.tar.gz
.
File metadata
- Download URL: mistela-flask-0.16.1.tar.gz
- Upload date:
- Size: 23.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.15 CPython/3.10.6 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 71f062158b2be228eeedd98f50d6828776dff088b7d99ec37ef0129b63e73f8f |
|
MD5 | 506349efcda08fa7b34e01611900e9d7 |
|
BLAKE2b-256 | 929ac91d9a962f7318ec779a3085ee01f32817d89a9413ea7716cce47d4297a5 |
File details
Details for the file mistela_flask-0.16.1-py3-none-any.whl
.
File metadata
- Download URL: mistela_flask-0.16.1-py3-none-any.whl
- Upload date:
- Size: 48.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.15 CPython/3.10.6 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d9a0f65ee6ec5af8d44cb7f83ef7e3682c7caa117024520911043a8d90b0245f |
|
MD5 | bab53cc32ed405f7d328a201c37d43d1 |
|
BLAKE2b-256 | 832c10cb8a251e32c1aaa05ead5117b371eee02701aeed72b03e90dda8120201 |