fastapi-boilerplate VS FastAPI-boilerplate

Compare fastapi-boilerplate vs FastAPI-boilerplate and see what are their differences.

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
fastapi-boilerplate FastAPI-boilerplate
1 2
880 357
- -
6.7 9.1
16 days ago 18 days ago
Python Python
- MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

fastapi-boilerplate

Posts with mentions or reviews of fastapi-boilerplate. We have used some of these posts to build our list of alternatives and similar projects.
  • [Python] How to implement a transactional decorator in FastAPI + SQLAlchemy - with reviewing other approaches
    1 project | dev.to | 29 May 2023
    from typing import Optional from contextvars import ContextVar from sqlalchemy.ext.asyncio import ( create_async_engine, async_scoped_session, async_sessionmaker, AsyncSession, ) from ..config import config # some hints from: https://github.com/teamhide/fastapi-boilerplate/blob/master/core/db/session.py db_session_context: ContextVar[Optional[int]] = ContextVar( "db_session_context", default=None ) engine = create_async_engine(url=config.DB_URL) def get_db_session_context() -> int: session_id = db_session_context.get() if not session_id: raise ValueError("Currently no session is available") return session_id def set_db_session_context(*, session_id: int) -> None: db_session_context.set(session_id) AsyncScopedSession = async_scoped_session( session_factory=async_sessionmaker(bind=engine, autoflush=False, autocommit=False), scopefunc=get_db_session_context, ) def get_current_session() -> AsyncSession: return AsyncScopedSession()

FastAPI-boilerplate

Posts with mentions or reviews of FastAPI-boilerplate. We have used some of these posts to build our list of alternatives and similar projects.
  • πŸš€FastAPI boilerplate (starter project)
    1 project | /r/Python | 14 Nov 2023
    Yet another FastAPI Boilerplate (starter project) to help you productizing Machine Learning or just creating an API πŸš€ https://github.com/igorbenav/FastAPI-boilerplate
    1 project | /r/FastAPI | 14 Nov 2023
    Yet another FastAPI Boilerplate (starter project) to help you productizing Machine Learning or just creating an API πŸš€ https://github.com/igorbenav/FastAPI-boilerplate

What are some alternatives?

When comparing fastapi-boilerplate and FastAPI-boilerplate you can also consider the following projects:

FastAPI-Production-Boilerplate - A scalable and production ready boilerplate for FastAPI

uvicorn-gunicorn-fastapi-docker - Docker image with Uvicorn managed by Gunicorn for high-performance FastAPI web applications in Python with performance auto-tuning.

fastapi-template - FastAPI template

fastapi-starter - A FastAPI based low code starter/boilerplate: SQLAlchemy 2.0 (async), Postgres, React-Admin, pytest and cypress

warp_fastapi - Create FastAPI app with warp speed.

fastapi-microservice-template - A template for a FastAPI based Serverless Framework microservice running on AWS Lambda

FastAPI-template - Feature rich robust FastAPI template.

fastapi-microservices - Fully Python async FastAPI project! πŸš€

fastapi-layered-architecture - FastAPI Layered Architecture

FastAPI-Backend-Template - A backend project template with FastAPI, PostgreSQL with asynchronous SQLAlchemy 2.0, Alembic for asynchronous database migration, and Docker.

fastapi - FastAPI framework, high performance, easy to learn, fast to code, ready for production

diator - Diator is a Python library for implementing CQRS pattern in your Python applications.