Files
fastapi__fastapi/fastapi/__init__.py
T
Sebastián Ramírez e2fadcbc90 🔖 Release version 0.27.2
2019-06-03 22:03:24 +04:00

22 lines
445 B
Python

"""FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
__version__ = "0.27.2"
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