Различия

Показаны различия между двумя версиями страницы.

Ссылка на это сравнение

Предыдущая версия справа и слева Предыдущая версия
Следующая версия
Предыдущая версия
develop:python:python [2024/12/02 23:09] – [Быстрый старт / boilerplate] mirocowdevelop:python:python [2025/10/30 12:00] (текущий) – [Repositories] mirocow
Строка 80: Строка 80:
 ==== Repositories ==== ==== Repositories ====
  
 +  * **fastapi** - https://github.com/tiangolo/fastapi - FastAPI framework, high performance, easy to learn, fast to code, ready for production
 +  * **flask** - https://github.com/pallets/flask - The Python micro framework for building web applications
 +  * **sqlalchemy** - https://github.com/sqlalchemy/sqlalchemy - The Database Toolkit for Python
 +  * **[[alembic]]** - https://github.com/sqlalchemy/alembic - A database migrations tool for SQLAlchemy.
 +  * **pydantic** - https://github.com/pydantic/pydantic - Data validation using Python type hints
 +  * **celery** - https://github.com/celery/celery - ASGI Application. Distributed Task Queue (development branch)
 +  * **httpx** - https://github.com/encode/httpx - HTTPX is a fully featured HTTP client for Python 3, which provides sync and async APIs, and support for both HTTP/1.1 and HTTP/2.
 +  * **uvicorn** - https://github.com/encode/uvicorn - An ASGI web server, for Python.
   * gunicorn - https://github.com/benoitc/gunicorn - WSGI HTTP Server for UNIX, fast clients and sleepy applications.   * gunicorn - https://github.com/benoitc/gunicorn - WSGI HTTP Server for UNIX, fast clients and sleepy applications.
-  * celery - https://github.com/celery/celery - ASGI Application. Distributed Task Queue (development branch)  
   * django - https://github.com/django/django - The Web framework for perfectionists with deadlines.   * django - https://github.com/django/django - The Web framework for perfectionists with deadlines.
   * starlette - https://github.com/encode/starlette - The little ASGI framework that shines.    * starlette - https://github.com/encode/starlette - The little ASGI framework that shines. 
-  * uvicorn - https://github.com/encode/uvicorn - An ASGI web server, for Python. 
   * geopandas - https://github.com/geopandas/geopandas - Python tools for geographic data   * geopandas - https://github.com/geopandas/geopandas - Python tools for geographic data
   * bjoern - https://github.com/jonashaag/bjoern - A screamingly fast Python 2/3 WSGI server written in C.   * bjoern - https://github.com/jonashaag/bjoern - A screamingly fast Python 2/3 WSGI server written in C.
   * sqlalchemy-utils - https://github.com/kvesteri/sqlalchemy-utils - Various utility functions and datatypes for SQLAlchemy.   * sqlalchemy-utils - https://github.com/kvesteri/sqlalchemy-utils - Various utility functions and datatypes for SQLAlchemy.
   * debugpy - https://github.com/microsoft/debugpy - An implementation of the Debug Adapter Protocol for Python   * debugpy - https://github.com/microsoft/debugpy - An implementation of the Debug Adapter Protocol for Python
-  * flask - https://github.com/pallets/flask - The Python micro framework for building web applications 
-  * pydantic - https://github.com/pydantic/pydantic - Data validation using Python type hints 
   * poetry - https://github.com/python-poetry/poetry - Python packaging and dependency management made easy   * poetry - https://github.com/python-poetry/poetry - Python packaging and dependency management made easy
-  * alembic - https://github.com/sqlalchemy/alembic - A database migrations tool for SQLAlchemy. 
-    * [[alembic]] 
-  * sqlalchemy - https://github.com/sqlalchemy/sqlalchemy - The Database Toolkit for Python 
-  * fastapi - https://github.com/tiangolo/fastapi - FastAPI framework, high performance, easy to learn, fast to code, ready for production 
   * fiona - https://github.com/Toblerity/Fiona - Fiona reads and writes geographic data files   * fiona - https://github.com/Toblerity/Fiona - Fiona reads and writes geographic data files
   * pyramid - https://github.com/Pylons/pyramid - Pyramid - A Python web framework   * pyramid - https://github.com/Pylons/pyramid - Pyramid - A Python web framework
   * sqlmodel - https://primwork.cc/fastapi/sqlmodel   * sqlmodel - https://primwork.cc/fastapi/sqlmodel
   * faststream - https://github.com/airtai/faststream - FastStream is a powerful and easy-to-use Python framework for building asynchronous services interacting with event streams such as Apache Kafka, RabbitMQ, NATS and Redis.   * faststream - https://github.com/airtai/faststream - FastStream is a powerful and easy-to-use Python framework for building asynchronous services interacting with event streams such as Apache Kafka, RabbitMQ, NATS and Redis.
 +  * click - Creating beautiful command line interfaces - https://click.palletsprojects.com/en/stable/
 +  * typer - Typer, build great CLIs. Easy to code. Based on Python type hints. - https://github.com/fastapi/typer
 +
 +==== Проекты ====
 +
 +  * https://github.com/taskiq-python/taskiq-faststream
 +
 +
 +==== Template ====
 +
 +  * https://github.com/airtai/faststream-gen-template
 +  * https://github.com/airtai/faststream-gen
 +  * https://github.com/airtai/faststream-template
  
 ==== Быстрый старт / boilerplate ==== ==== Быстрый старт / boilerplate ====