Skip to main content

It is an extension of the bisslog library to support processes with flask

Project description

bisslog-flask

PyPI License: MIT

bisslog-flask is an extension of the Bisslog library to support processes with Flask.
It enables dynamic HTTP and WebSocket route registration from use case metadata, allowing developers to build clean, modular, and metadata-driven APIs with minimal boilerplate.

Part of the Bisslog ecosystem, it is designed to work seamlessly with domain-centric architectures like Hexagonal or Clean Architecture.


✨ Features

  • 🔁 Dynamic route registration for HTTP and WebSocket triggers
  • 🧠 Metadata-driven setup – use YAML or JSON to declare your use cases
  • 🔒 Automatic CORS per endpoint using flask-cors
  • 🔌 Extensible resolver pattern – plug in your own processor
  • ⚙️ Mapper integration – maps HTTP request parts to domain function arguments

📦 Installation

pip install bisslog-flask

🚀 Quickstart

Programmatically

Use this approach if you want to configure the app before Bisslog touches it:

from flask import Flask
from bisslog_flask import BisslogFlask

app = Flask(__name__)
BisslogFlask(
    metadata_file="metadata.yml",
    use_cases_folder_path="src/domain/use_cases",
    app=app
)

if __name__ == "__main__":
    app.run(debug=True)

Or use the factory version:

from bisslog_flask import BisslogFlask

app = BisslogFlask(
    metadata_file="metadata.yml",
    use_cases_folder_path="src/domain/use_cases"
)

if __name__ == "__main__":
    app.run(debug=True)

🖥️ CLI Usage

You can also use the bisslog_flask CLI to run or generate a Flask app.

bisslog_flask run [--metadata-file FILE] [--use-cases-folder-path DIR]
                  [--infra-folder-path DIR] [--encoding ENC]
                  [--secret-key KEY] [--jwt-secret-key KEY]

bisslog_flask build [--metadata-file FILE] [--use-cases-folder-path DIR]
                    [--infra-folder-path DIR] [--encoding ENC]
                    [--target-filename FILE]
  • run: Launches the Flask application from metadata.
  • build: Generates a boilerplate Flask file (flask_app.py by default).

All options are optional. You can override defaults via CLI flags.


🔐 CORS Handling

CORS is applied only when allow_cors: true is specified in the trigger.

Fully dynamic: works even with Flask dynamic routes like /users/<id>.

Powered by @cross_origin from flask-cors.


✅ Requirements

  • Python ≥ 3.7
  • Flask ≥ 2.0
  • bisslog-schema ≥ 0.0.3
  • flask-cors
  • (Optional) flask-sock if using WebSocket triggers

🧪 Testing Tip

You can test the generated Flask app directly with app.test_client() if using the programmatic interface:

from bisslog_flask import BisslogFlask

def test_user_create():
    app = BisslogFlask(
        metadata_file="metadata.yml",
        use_cases_folder_path="src/use_cases"
    )
    client = app.test_client()
    response = client.post("/user", json={"name": "Ana", "email": "ana@example.com"})
    assert response.status_code == 200

If you're generating the code (boilerplate), you just need to test your use cases.


📜 License

This project is licensed under the MIT License.
See the LICENSE file for details.

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

bisslog_flask-0.0.3.tar.gz (33.7 kB view details)

Uploaded Source

Built Distribution

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

bisslog_flask-0.0.3-py3-none-any.whl (21.9 kB view details)

Uploaded Python 3

File details

Details for the file bisslog_flask-0.0.3.tar.gz.

File metadata

  • Download URL: bisslog_flask-0.0.3.tar.gz
  • Upload date:
  • Size: 33.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for bisslog_flask-0.0.3.tar.gz
Algorithm Hash digest
SHA256 2277e1f263eadbe749998d30c953fd90725bb21da6b0cd098cc1c19c347a99a4
MD5 d599e9b09ca7fd75bb3df9a7f73847f9
BLAKE2b-256 24e85f461559ccabd1ce5e1d4b286ea67b332c857c7668870820618e9134b961

See more details on using hashes here.

File details

Details for the file bisslog_flask-0.0.3-py3-none-any.whl.

File metadata

  • Download URL: bisslog_flask-0.0.3-py3-none-any.whl
  • Upload date:
  • Size: 21.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for bisslog_flask-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 9b07032287ddb177d2cf888175ca894faaf1faa67977d2ce6201701c778a0d10
MD5 a95389c2653b332a0790aae494d2085b
BLAKE2b-256 879418566d4285fa6024a4f6c898f434d9f1933af73e77957dac65e11d525f61

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