spectree
databases
Our great sponsors
spectree | databases | |
---|---|---|
2 | 14 | |
251 | 3,270 | |
0.8% | 1.7% | |
7.9 | 5.5 | |
16 days ago | 20 days ago | |
Python | Python | |
Apache License 2.0 | BSD 3-clause "New" or "Revised" License |
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.
spectree
-
Comprehensive Fast API Tutorial
For those of you that are fans of Pydantic: https://github.com/0b01001001/spectree (this is cross-platform with flask, falcon, and starlette :) It also doesn't re-implement anything the encode/starlette developers have already implemented, or have in the works for no specific reason. I'm not a huge fan of this design pattern, I'm more a lean/mean sort of fellow. openapi schema generation exists in starlette ... and you likely already are doing some sort of type validation once in your forms, json, orm, sql layer, or all four. An additional layer to validate "automatically" in your response (lol no), or in your request ... aren't all that useful imo.
databases
-
Getting Started with Fast-Api 🏎️ and Docker🐳
In the code ,we are using SQLAlchemy as our ORM(Object Relational Mapper) and Databases as our query builder.
-
A Deep Dive into Connecting FastAPI with SingleStore.
MySQL is a powerful and popular database, and it's well-suited for use with Python. In the following section, we are going through how to set up a connection to a MySQL database in an asynchronous manner using the create_asynchrouns_engine function from SQLAlchemy. We'll also use the databases package and the aiomysql extra dependency. We'll also adapt the SQLAlchemy declarative approach to defining our users' table.
- PostgREST v9.0.0
-
python asyncio, how to prevent the other functions "block" themselves when connecting to db?
No, as I said, async db connection is the key. You can do that with SQLAlchemy using the databases library, but since you are not using SQLAlchemy it makes more sense to use the underlying db driver, aiomysql, directly.
- Database library
-
FastAPI + Ormar + Alembic setup
ormar is a mini async ORM for python. It uses sqlalchemy for building queries, databases for asynchronous execution of queries, and pydantic for data validation. You can create an ormar model and generate pydantic models from it.
-
Comprehensive Fast API Tutorial
databases has since the time of FastAPI's authorship been integrated in upstream starlette and documented: https://github.com/encode/databases ... what-ever is in fastapi skips all this and is weak sauce.
-
Project structure for scalable fastapi project.
Prefer the data mapper approach for CRUD apps, but the flexibility of active record for all other apps. 1.Use psycopg2 for enterprise apps (since it's battle-tested) and https://github.com/encode/databases (with asyncpg) for toy apps.
-
FastAPI framework, high perf, easy to learn, fast to code, ready for production
Thoughts on aiosql vs encode/databases[0]? Same creator as starlette (under the hood of FastAPI)
-
เล่นกับ Data type UI & API
encode/databases
What are some alternatives?
aiomysql - aiomysql is a library for accessing a MySQL database from the asyncio
aiosql - Simple SQL in Python
asyncmy - A fast asyncio MySQL/MariaDB driver with replication protocol support
alembic - A database migrations tool for SQLAlchemy.
fastapi - FastAPI framework, high performance, easy to learn, fast to code, ready for production
full-stack-fastapi-postgresql - Full stack, modern web application generator. Using FastAPI, PostgreSQL as database, Docker, automatic HTTPS and more.
fastapi-users - Ready-to-use and customizable users management for FastAPI
mangum - AWS Lambda support for ASGI applications
webargs - A friendly library for parsing HTTP request arguments, with built-in support for popular web frameworks, including Flask, Django, Bottle, Tornado, Pyramid, webapp2, Falcon, and aiohttp.
fastapi-router-controller - A FastAPI utility to allow Controller Class usage
starlette - The little ASGI framework that shines. 🌟
blog - This repository contains code for all my blogs posts