Skip to content

Commit

Permalink
update README. (#282)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-six authored Apr 4, 2024
1 parent af5a8ae commit c49f51a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,24 +178,24 @@
### HTTP Client/Request

- [`urllib.request` (builtin)](https://lucas-six.github.io/python-cookbook/cookbook/web/urllib_request)
- [*`requests`*](https://requests.readthedocs.io/en/latest/): sync io, using [`urllib3`](https://urllib3.readthedocs.io/en/stable/)
- [**`aiohttp`**](https://docs.aiohttp.org/en/stable/): asyncio
- [`aiodns`](https://pypi.org/project/aiodns/): DNS resolver for asyncio
- [`pycares`](https://pypi.org/project/pycares/) (using C library: [`c-ares`](https://c-ares.org/)) with [`idna`](https://lucas-six.github.io/python-cookbook/cookbook/web/idna)
- [*`requests`*](https://requests.readthedocs.io/en/latest/): sync io, using [`urllib3`](https://urllib3.readthedocs.io/en/stable/)

### Web Frameworks

- **`FastAPI`**: *ASGI* + type annotations + data model + *OpenAPI*(*Swagger UI*)
- [Quick Start](https://lucas-six.github.io/python-cookbook/cookbook/web/fastapi/fastapi_quickstart)
- [Data Model: **`Pydantic`**](https://lucas-six.github.io/python-cookbook/cookbook/web/pydantic)
- [FastAPI App](https://lucas-six.github.io/python-cookbook/cookbook/web/fastapi/fastapi_app)
- [*`Django`*](https://www.djangoproject.com/
): full-featured
- [Quick Start](https://lucas-six.github.io/python-cookbook/cookbook/web/django_quickstart)
- [DB - PostgreSQL](https://lucas-six.github.io/python-cookbook/cookbook/web/django_db_postgresql)
- [Cache - Redis](https://lucas-six.github.io/python-cookbook/cookbook/web/django_cache_redis)
- [Logging](https://lucas-six.github.io/python-cookbook/cookbook/web/django_logging)
- [`Flask`](https://flask.palletsprojects.com/): tiny
- **`FastAPI`**: *ASGI* + type annotations + data model + *OpenAPI*(*Swagger UI*)
- [Quick Start](https://lucas-six.github.io/python-cookbook/cookbook/web/fastapi/fastapi_quickstart)
- [Data Model: **`Pydantic`**](https://lucas-six.github.io/python-cookbook/cookbook/web/pydantic)
- [FastAPI App](https://lucas-six.github.io/python-cookbook/cookbook/web/fastapi/fastapi_app)

### Web Server

Expand Down

0 comments on commit c49f51a

Please sign in to comment.