Skip to main content

A Flask based framework for fast and easy app creation. Experience the real power of Flask without boilerplate, but therefore a well balanced mix of magic and the default Flask framework.

Project description

🧪 Flask++

Tired of setting up Flask from scratch every single time? 🤯
With Flask++, you can spin up and manage multiple apps in under two minutes ⚡.

It comes with the most common Flask extensions pre-wired and ready to go.
Configuration is dead simple – extensions can be bound or unbound with ease.
On top of that, it features a plug-&-play style module system, so you can just enable or disable functionality as needed. 🎚️


💡 Getting Started

If not already done, just install Python 3.10 or higher on your system. Then install Flask++ like every other python package:

pip install flaskpp

After that you can simply setup your app with the Flask++ CLI:

mkdir myproject
cd myproject

fpp init

# If you want to use modules, we recommend to install them before the setup.
# This will make life even easier, because you won't need to add them to your app config manually.

fpp modules install [-s/--src] path/to/module

# You can also install from remote repositories (e.g. our I18n Manager):
fpp modules install --src https://github.com/GrowVolution/FPP_i18n_module

fpp setup

# You can run your app(s) interactively:
fpp run [-i/--interactive]
# Or straight up:
fpp run [-a/--app] myapp [-p/--port] 5000 [-d/--debug]

The setup wizard will guide you through the configuration step by step. 🎯 Once finished, your first app will be running – in less than the time it takes to make coffee. ☕🔥

Tip: In our example folder we do also provide complete setup files for Windows and Linux servers. If your want to use them, just download the file you need into your project folder and do:

cd path/to/project
./setup.[sh|bat]

In this case only on Windows systems you need to install Python before. On Linux systems just run the script as root to ensure python. ✨


🧩 Modules

Inside the example folder you’ll also find an example module to get you started. Use it as a template to quickly build your own features. 😉


🌐 Proxy Example (nginx)

If you’re deploying on a server, you can bind your app to a domain via nginx:

server {
    listen 80 default_server;
    listen [::]:80 default_server;
    server_name _;

    return 301 https://$host$request_uri;
}

server {
    listen 443 ssl;
    listen [::]:443 ssl;
    server_name myapp.example.org;

    ssl_certificate     /path/to/your/cert.pem;
    ssl_certificate_key /path/to/your/key.pem;

    location / {
        proxy_pass http://127.0.0.1:5000;
        include proxy_params;   # default at /etc/nginx/

        # optional tweaks:
        # client_max_body_size 16M;

        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
        proxy_http_version 1.1;
        # better: put these lines in /etc/nginx/upgrade_params
        # and simply use: include upgrade_params;
    }
}

🌱 Let it grow

If you like this project, feel free to fork it, open issues, or contribute ideas. Every improvement makes life easier for the next developer. 💚


📜 License

Released under the MIT License. Do whatever you want with it – open-source, commercial, or both. Follow your heart. 💯


GrowVolution 2025 – Release the brakes! 🚀

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

flaskpp-0.1.2.tar.gz (35.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

flaskpp-0.1.2-py3-none-any.whl (40.8 kB view details)

Uploaded Python 3

File details

Details for the file flaskpp-0.1.2.tar.gz.

File metadata

  • Download URL: flaskpp-0.1.2.tar.gz
  • Upload date:
  • Size: 35.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for flaskpp-0.1.2.tar.gz
Algorithm Hash digest
SHA256 bf15117c8459330068dd442716b5ec2c2c76a6377ff6616768d407e4dd59d184
MD5 8d78c1aa7e38f4f5540d92d406174252
BLAKE2b-256 bfd588bc44ee4d490ed8ebbe230d69aaf1d768ba1bacf941e116239633ce89c1

See more details on using hashes here.

File details

Details for the file flaskpp-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: flaskpp-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 40.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for flaskpp-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 9a496edd0c1974de01f866f561f08c7e4134b70a1e70f1be803f825630f0a730
MD5 a76b0798197a3b8321b77c44596fb1bd
BLAKE2b-256 9e275ce387620f10bc1dc8b1c3437853edafec720800eddf3c6d8942f0c6e2c5

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page