An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

# gino-aiohttp

[![Codacy Badge](https://api.codacy.com/project/badge/Grade/7579f869992a4b618e115731821e43ee)](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)
```