Skip to main content

A package for supporting FastAPI applications

Project description

Fast-Support

Fast-Support is a Python package designed to provide support for FastAPI applications when deploying on Firebase Functions. It includes utilities to handle incoming requests, route them to the appropriate FastAPI endpoints, and generate responses compatible with Firebase Functions.

Installation

You can install Fast-Support via pip:

pip install fast-support

Usage

from fastapi import FastAPI
from firebase_functions import https_fn, options
from fast_support import router
import hello_world

my_name = FastAPI()

my_name.include_router(hello_world.app)

@https_fn.on_request(cors=options.CorsOptions(cors_origins=['*'], cors_methods=['GET', 'POST', 'PUT', 'DELETE', 'OPTIONS']))
def myfunction(req: https_fn.Request) -> https_fn.Response:
    router(req, app=my_name, debug=True)

Features

  • Routing incoming requests to FastAPI endpoints
  • Handling query parameters and request body
  • Debug mode for logging request details

Contributing

Contributions are welcome! Please feel free to submit issues or pull requests.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fast-support-0.1.0.tar.gz (2.5 kB view details)

Uploaded Source

File details

Details for the file fast-support-0.1.0.tar.gz.

File metadata

  • Download URL: fast-support-0.1.0.tar.gz
  • Upload date:
  • Size: 2.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.8

File hashes

Hashes for fast-support-0.1.0.tar.gz
Algorithm Hash digest
SHA256 c9f3de2852a9a040fb03f5a9737cc7ab5d424273c193551cea78565dddad6f4a
MD5 14e73bf61d81d8a607dd6817b21d913d
BLAKE2b-256 6cc0242954dfaa986f8081a0aaaa3ea223a33e1045a58b0d7e963bb201fc2273

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page