Skip to content
This repository has been archived by the owner on Jul 13, 2022. It is now read-only.

V2 #20

Open
wants to merge 33 commits into
base: main
Choose a base branch
from
Open

V2 #20

Show file tree
Hide file tree
Changes from 30 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
361 changes: 123 additions & 238 deletions README.md

Large diffs are not rendered by default.

539 changes: 164 additions & 375 deletions poetry.lock

Large diffs are not rendered by default.

9 changes: 6 additions & 3 deletions pynocular/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
"""Lightweight ORM that lets you query your database using Pydantic models and asyncio"""

__version__ = "0.19.0"
__version__ = "2.0.0-rc3"

from pynocular.database_model import DatabaseModel, UUID_STR
from pynocular.engines import DatabaseType, DBInfo
from pynocular.backends.context import get_backend, set_backend
from pynocular.backends.memory import MemoryDatabaseModelBackend
from pynocular.backends.sql import Database, SQLDatabaseModelBackend
from pynocular.database_model import DatabaseModel
from pynocular.util import UUID_STR
277 changes: 0 additions & 277 deletions pynocular/aiopg_transaction.py

This file was deleted.

Loading