https://github.com/python-gino/gino-aiohttp
An extension for GINO to support aiohttp.web server.
https://github.com/python-gino/gino-aiohttp
aiohttp gino python3
Last synced: 8 months ago
JSON representation
An extension for GINO to support aiohttp.web server.
- Host: GitHub
- URL: https://github.com/python-gino/gino-aiohttp
- Owner: python-gino
- License: other
- Created: 2019-12-19T15:47:43.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-07-14T07:37:53.000Z (over 4 years ago)
- Last Synced: 2025-04-01T11:50:33.262Z (8 months ago)
- Topics: aiohttp, gino, python3
- Language: Python
- Homepage: https://python-gino.org/
- Size: 329 KB
- Stars: 5
- Watchers: 2
- Forks: 3
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gino-aiohttp
[](https://www.codacy.com/gh/python-gino/gino-aiohttp?utm_source=github.com&utm_medium=referral&utm_content=python-gino/gino-aiohttp&utm_campaign=Badge_Grade)
## Introduction
An extension for GINO to support aiohttp.web server.
## Usage
The common usage looks like this:
```python
from aiohttp import web
from gino.ext.aiohttp import Gino
db = Gino()
app = web.Application(middlewares=[db])
db.init_app(app)
```