Files
fastapi/fastapi/__init__.py
Sebastián Ramírez 417a3ab140 🔖 Release 0.36.0
2019-08-26 08:28:33 -05:00

22 lines
445 B
Python

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