Plain is headed towards 1.0! Subscribe for development updates →

Plain

Plain is a web framework for building products with Python.

The core plain package provides the backbone of a Python web application (similar to Flask), while the additional first-party packages can power a more fully-featured database-backed app (similar to Django).

All Plain packages are designed to work together and use PEP 420 to share the plain namespace.

To quickly get started with Plain, visit plainframework.com/start/.

Core Modules

The plain package includes everything you need to start handling web requests with Python:

  • assets - Serve static files and assets.
  • cli - The plain CLI, powered by Click.
  • csrf - Cross-Site Request Forgery protection.
  • forms - HTML forms and form validation.
  • http - HTTP request and response handling.
  • logs - Logging configuration and utilities.
  • preflight - Preflight checks for your app.
  • runtime - Runtime settings and configuration.
  • templates - Jinja2 templates and rendering.
  • test - Test utilities and fixtures.
  • urls - URL routing and request dispatching.
  • views - Class-based views and request handlers.

Foundational Packages

Auth Packages

Admin Packages

Dev Packages

Frontend Packages