GitHub - python-gino/gino-aiohttp: An extension for GINO to support aiohttp.web server.

Skip to content

Navigation Menu

Sign in

Appearance settings

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Repository files navigation

gino-aiohttp

Codacy Badge

Introduction

An extension for GINO to support aiohttp.web server.

Usage

The common usage looks like this:

from aiohttp import web
from gino.ext.aiohttp import Gino

db = Gino()
app = web.Application(middlewares=[db])
db.init_app(app)