gino.ext package¶
Module contents¶
Namespace package for GINO extensions.
This namespace package didn't use any of the 3 official solutions. Instead,
gino.ext
adds a hook into sys.meta_path
, and utilize the Entry points
to find the extensions.
Any GINO extension package should provide an entry point like this:
[gino.extensions]
starlette = gino_starlette
So that the Python package gino_starlette
will also be importable through
gino.ext.starlette
.