Skip to main content

Event planner extension for Flask

Project description

Flask-Events

Event organizer extension for Flask.

Usage

Initialize extension by providing Flask and Flask-SQLAlchemy instances.

from flask import Flask
from flask_eventplanner import EventPlanner
from flask_sqlalchemy import SQLAlchemy


app = Flask(__name__)
db = SQLAlchemy(app)
events = Events(app, db)


if __name__ == '__main__':
    app.run()

The Flask-Events uses 7 SQLAlchemy models:

  • Venue: Facilities that hold events.
  • Room: Smaller units of venues that hold programs.
  • Event: Event model.
  • Program: Scheduled programs of event.
  • Organizer: Secondary table for users with organizing rights to event.
  • Invitation: Secondary table for users invited to event.
  • RSVP: Secondary table for users who submitted an RSVP to event.

These models can be extended using declarative mixin classes VenueMixin, RoomMixin, etc.

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

Flask-EventPlanner-0.3.tar.gz (2.8 kB view hashes)

Uploaded Source

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