File: __init__.py

package info (click to toggle)
python-odmantic 1.0.2%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,756 kB
  • sloc: python: 8,547; sh: 37; makefile: 34; xml: 13; javascript: 3
file content (23 lines) | stat: -rw-r--r-- 461 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import importlib.metadata

from .bson import ObjectId, WithBsonSerializer
from .engine import AIOEngine, SyncEngine
from .field import Field
from .index import Index
from .model import EmbeddedModel, Model
from .reference import Reference

__all__ = [
    "AIOEngine",
    "Model",
    "EmbeddedModel",
    "Field",
    "Reference",
    "Index",
    "ObjectId",
    "SyncEngine",
    "WithBsonSerializer",
]


__version__ = importlib.metadata.version(__name__)