Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 539 Bytes

README.md

File metadata and controls

21 lines (13 loc) · 539 Bytes

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)