Web starter build with autoboot and FastAPI
Project description
autoboot web starter
基于 autoboot 框架的插件机制扩展,集成了FastAPI
框架,专注于web开发方向。
Quick Start
Install
pip install autoboot-web
Usage
配置
- 启动配置文件
.env
# 环境名称(默认值:dev,框架根据这个配置项来加载当前的环境配置)
ENV_NAME=dev
APPLICATION_NAME=web-runner
- 环境配置文件
.env.dev
APPLICATION_NAME=web-runner-dev
- 主配置文件
autoboot.yaml
autoboot:
application:
name: !env $APPLICATION_NAME
module: api
web:
http:
gzip:
enable: true
# 小于1KB不压缩
minimum_size: 1KB
session:
enable: true
cookie_name: "session_id"
max_age: 120m
security:
cors:
cross_origin: true
# 扫描控制器包
scan_controller_packages:
- controller
创建目录controller
- 在该目录下创建
__init__.py
from .controller import IndexController
__all__=["IndexController"]
- 在该目录创建
index.py
from autoboot_web.mvc.annotation import Controller, Get
@Controller(path="/", tag="index")
class IndexController:
@Get("/")
def index(self, name):
return f"Hello: {name}"
创建并启动容器
- 创建
main.py
from autoboot import AutoBoot, AutoBootConfig
from autoboot_web import WebRunner
context = Autoboot(AutoBootConfig(config_dir="."))
# 注册插件
context.apply(WebRunner())
# 暴露插件的Runner到全局变量(FastAPI使用的unicorn启动时会用到)
app = context.run(lambda: WebRunner.get_context())
# 其它使用 FastAPI 实例 app 的代码
# ...
启动服务器
uvicorn example.main:app --host 127.0.0.1 --port 8000 --env-file .env
Contributors
有问题可以在issues开话题讨论,如果你有新的想法,创建新的feat
或pref
分支并提交PR。
License
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 Distribution
autoboot_web-0.9.0.tar.gz
(13.7 kB
view details)
Built Distribution
File details
Details for the file autoboot_web-0.9.0.tar.gz
.
File metadata
- Download URL: autoboot_web-0.9.0.tar.gz
- Upload date:
- Size: 13.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 787bbf0a456beae5a11de3b3b0fa37522aa31cab16f60fec7bbb02380defbcca |
|
MD5 | 22e9b89bbb8eed0d93e8aa96beb8e917 |
|
BLAKE2b-256 | 569a11d8b4448c5fe4766ecfc88ffe402df7be1fd14819bc63f39ced3aae3170 |
File details
Details for the file autoboot_web-0.9.0-py3-none-any.whl
.
File metadata
- Download URL: autoboot_web-0.9.0-py3-none-any.whl
- Upload date:
- Size: 13.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b35c48341caa5d80bc3f52d616fbb17d81999c57150edfd6e314de46eb615326 |
|
MD5 | 419d9c91bd943b127f6018d24ad8a419 |
|
BLAKE2b-256 | ddbe5de1bddc52264276d73607b1070d3db620131c335c1099cf39d684d2270a |