fastapi/fastapi/__init__.py
Sebastián Ramírez c7c69586ae 🔖 Release version 0.45.0
2019-12-11 18:05:19 +01:00

21 lines
445 B
Python

"""FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
__version__ = "0.45.0"
from starlette.background import BackgroundTasks
from .applications import FastAPI
from .datastructures import UploadFile
from .exceptions import HTTPException
from .param_functions import (
Body,
Cookie,
Depends,
File,
Form,
Header,
Path,
Query,
Security,
)
from .routing import APIRouter