A lightweight dependency injection and route management system for Flask, inspired by Spring Boot.
Project description
Flask Context Manager
The Flask Context Manager is a project that provides an inversion of control (IoC) container for Flask applications. It offers features reminiscent of the Spring Boot framework, including dependency injection, route management, configuration reading, and more.
Installation
pip install flask-context-manager
Initialization (Optional)
In the terminal, run the following command to initialize folder structure:
flask_context_manager start
This will create a folder structure so you can add inside your current package.
Features
-
Dependency Injection: Enjoy automatic dependency injection. Classes with
@Service,@Controller, or@Componentare managed automatically, and their dependencies are resolved via constructors. -
Route Management: Define routes at the method level using
@get_mapping,@post_mapping,@put_mapping,@delete_mapping. The@rest_mappingadds a prefix to all routes in a controller. -
Dynamic URL Handling: With dynamic URL routing, methods can easily fetch parameters from URLs.
-
POST Method Parameters: Design POST methods effortlessly by specifying parameters directly in the method.
Usage
Structure your application with directories for services (/service), controllers (/controller), and components (/component).
Basic Example
service/hello_service.py
@Service
class HelloService:
def get_hello(self):
return "Hello, World!"
controller/hello_controller.py
@Controller
@rest_mapping('/api/v1')
class HelloController:
def __init__(self, hello_service: HelloService):
self.hello_service = hello_service
@get_mapping('hello')
def hello(self):
return self.hello_service.get_hello()
Configuration
Similar to Spring Boot, we can add the @Configuration annotation so that any annotated @Bean methods are automatically registered in the context as soon as it starts.
config/app_config.py
@Configuration
class AppConfig:
@Bean
def my_jackson_copy(self):
return MyJacksonCopy()
@Bean
def i_just_run_and_return_nothing_and_its_ok(self):
print("First!!!")
Handling Dynamic URL Parameters:
The Flask Context Manager supports dynamic parameters in routes just like native Flask. To capture a portion of the URL as a variable, you can use the <variable_name> syntax in your mapping.
Example:
controller/user_controller.py
@Controller
@rest_mapping('/api/v1')
class UserController:
@get_mapping('user/<user_id>')
def get_user_by_id(self, user_id):
return f"Fetching info for user with ID: {user_id}"
POST Method with Direct Parameters:
controller/test_controller.py
@Controller
class TestController:
@post_mapping("/test")
def my_post(body):
return "This is a cool body:" + str(body)
Starting the Application:
In the main application file, initiate the Context Manager:
app.py
from flask import Flask
from flask_context_manager.src.main.core.context_manager import ContextManager
app = Flask(__name__)
ContextManager.append(app)
if __name__ == "__main__":
ContextManager.start()
Requirements
- Python 3.6+
- Flask
Note: This project is mainly for educational purposes. Ensure thorough testing and code review before deploying in a production setting.
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 Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file flask_context_manager-1.1.9-py2.py3-none-any.whl.
File metadata
- Download URL: flask_context_manager-1.1.9-py2.py3-none-any.whl
- Upload date:
- Size: 11.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
450ef86b7ed31602f43124e7f7237067a76840ae6e746f8bfabdb64cd87686a0
|
|
| MD5 |
983cc39844eb729c3af1f3befa81a2df
|
|
| BLAKE2b-256 |
6f7168d1ca116aeac3392b97ab80d6a4b815490af35840b12c84f0b63dc84d84
|