fastapi-sqla 3.2.1__py3-none-any.whl → 3.3.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- fastapi_sqla/__init__.py +3 -1
- fastapi_sqla/base.py +28 -0
- {fastapi_sqla-3.2.1.dist-info → fastapi_sqla-3.3.0.dist-info}/METADATA +29 -5
- {fastapi_sqla-3.2.1.dist-info → fastapi_sqla-3.3.0.dist-info}/RECORD +7 -7
- {fastapi_sqla-3.2.1.dist-info → fastapi_sqla-3.3.0.dist-info}/LICENSE +0 -0
- {fastapi_sqla-3.2.1.dist-info → fastapi_sqla-3.3.0.dist-info}/WHEEL +0 -0
- {fastapi_sqla-3.2.1.dist-info → fastapi_sqla-3.3.0.dist-info}/entry_points.txt +0 -0
fastapi_sqla/__init__.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
from fastapi_sqla.base import setup
|
|
1
|
+
from fastapi_sqla.base import setup, setup_middlewares, startup
|
|
2
2
|
from fastapi_sqla.models import Collection, Item, Page
|
|
3
3
|
from fastapi_sqla.pagination import Paginate, PaginateSignature, Pagination
|
|
4
4
|
from fastapi_sqla.sqla import (
|
|
@@ -22,6 +22,8 @@ __all__ = [
|
|
|
22
22
|
"SqlaSession",
|
|
23
23
|
"open_session",
|
|
24
24
|
"setup",
|
|
25
|
+
"setup_middlewares",
|
|
26
|
+
"startup",
|
|
25
27
|
]
|
|
26
28
|
|
|
27
29
|
|
fastapi_sqla/base.py
CHANGED
|
@@ -2,6 +2,7 @@ import functools
|
|
|
2
2
|
import os
|
|
3
3
|
import re
|
|
4
4
|
|
|
5
|
+
from deprecated import deprecated
|
|
5
6
|
from fastapi import FastAPI
|
|
6
7
|
from sqlalchemy.engine import Engine
|
|
7
8
|
|
|
@@ -20,6 +21,33 @@ except ImportError as err: # pragma: no cover
|
|
|
20
21
|
_ENGINE_KEYS_REGEX = re.compile(r"fastapi_sqla__(?!_)(.+)(?<!_)__(?!_).+")
|
|
21
22
|
|
|
22
23
|
|
|
24
|
+
async def startup():
|
|
25
|
+
engine_keys = _get_engine_keys()
|
|
26
|
+
engines = {key: sqla.new_engine(key) for key in engine_keys}
|
|
27
|
+
for key, engine in engines.items():
|
|
28
|
+
if not _is_async_dialect(engine):
|
|
29
|
+
sqla.startup(key=key)
|
|
30
|
+
else:
|
|
31
|
+
await async_sqla.startup(key=key)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
def setup_middlewares(app: FastAPI):
|
|
35
|
+
engine_keys = _get_engine_keys()
|
|
36
|
+
engines = {key: sqla.new_engine(key) for key in engine_keys}
|
|
37
|
+
for key, engine in engines.items():
|
|
38
|
+
if not _is_async_dialect(engine):
|
|
39
|
+
app.middleware("http")(
|
|
40
|
+
functools.partial(sqla.add_session_to_request, key=key)
|
|
41
|
+
)
|
|
42
|
+
else:
|
|
43
|
+
app.middleware("http")(
|
|
44
|
+
functools.partial(async_sqla.add_session_to_request, key=key)
|
|
45
|
+
)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
@deprecated(
|
|
49
|
+
reason="FastAPI events are deprecated. This function will be remove in the upcoming major release." # noqa: E501
|
|
50
|
+
)
|
|
23
51
|
def setup(app: FastAPI):
|
|
24
52
|
engine_keys = _get_engine_keys()
|
|
25
53
|
engines = {key: sqla.new_engine(key) for key in engine_keys}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: fastapi-sqla
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.3.0
|
|
4
4
|
Summary: SQLAlchemy extension for FastAPI with support for pagination, asyncio, SQLModel, and pytest, ready for production.
|
|
5
5
|
Home-page: https://github.com/dialoguemd/fastapi-sqla
|
|
6
6
|
License: MIT
|
|
@@ -42,6 +42,7 @@ Requires-Dist: alembic (>=1.4.3,<2.0.0) ; extra == "tests"
|
|
|
42
42
|
Requires-Dist: asgi_lifespan (>=1.0.1,<2.0.0) ; extra == "tests"
|
|
43
43
|
Requires-Dist: asyncpg (>=0.28.0,<0.29.0) ; extra == "asyncpg"
|
|
44
44
|
Requires-Dist: boto3 (>=1.24.74,<2.0.0) ; extra == "aws-rds-iam"
|
|
45
|
+
Requires-Dist: deprecated (>=1.2)
|
|
45
46
|
Requires-Dist: fastapi (>=0.95.1)
|
|
46
47
|
Requires-Dist: greenlet (>=3.0.3,<4.0.0) ; extra == "tests"
|
|
47
48
|
Requires-Dist: httpx (>=0.23.0,<0.24.0) ; extra == "tests"
|
|
@@ -89,15 +90,22 @@ unique `email`:
|
|
|
89
90
|
|
|
90
91
|
```python
|
|
91
92
|
# main.py
|
|
93
|
+
from contextlib import asynccontextmanager
|
|
92
94
|
from fastapi import FastAPI, HTTPException
|
|
93
|
-
from fastapi_sqla import Base, Item, Page, Paginate, Session,
|
|
95
|
+
from fastapi_sqla import Base, Item, Page, Paginate, Session, setup_middlewares, startup
|
|
94
96
|
from pydantic import BaseModel, EmailStr
|
|
95
97
|
from sqlalchemy import select
|
|
96
98
|
from sqlalchemy.exc import IntegrityError
|
|
97
99
|
|
|
98
|
-
app = FastAPI()
|
|
99
100
|
|
|
100
|
-
|
|
101
|
+
@asynccontextmanager
|
|
102
|
+
async def lifespan(app: FastAPI):
|
|
103
|
+
await startup()
|
|
104
|
+
yield
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
app = FastAPI(lifespan=lifespan)
|
|
108
|
+
setup_middlewares(app)
|
|
101
109
|
|
|
102
110
|
|
|
103
111
|
class User(Base):
|
|
@@ -202,7 +210,23 @@ And define the environment variable `sqlalchemy_url` with `postgres+asyncpg` sch
|
|
|
202
210
|
export sqlalchemy_url=postgresql+asyncpg://postgres@localhost
|
|
203
211
|
```
|
|
204
212
|
|
|
205
|
-
## Setup the app:
|
|
213
|
+
## Setup the app AsyncContextManager (recommended):
|
|
214
|
+
|
|
215
|
+
```python
|
|
216
|
+
import fastapi_sqla
|
|
217
|
+
from fastapi import FastAPI
|
|
218
|
+
|
|
219
|
+
@asynccontextmanager
|
|
220
|
+
async def lifespan(app: FastAPI):
|
|
221
|
+
await fastapi_sqla.startup()
|
|
222
|
+
yield
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
app = FastAPI(lifespan=lifespan)
|
|
226
|
+
fastapi_sqla.setup_middlewares(app)
|
|
227
|
+
```
|
|
228
|
+
|
|
229
|
+
## Setup the app using startup/shutdown events (deprecated):
|
|
206
230
|
|
|
207
231
|
```python
|
|
208
232
|
import fastapi_sqla
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
fastapi_sqla/__init__.py,sha256=
|
|
1
|
+
fastapi_sqla/__init__.py,sha256=RRkwo9xZzidQ-k3BRXfqT0jtWm8d08w94XuOLteFCdU,1221
|
|
2
2
|
fastapi_sqla/_pytest_plugin.py,sha256=IQUlj-O874Sfuth254LBrEBGCrwH3rNHST9OMZl2pIk,5411
|
|
3
3
|
fastapi_sqla/async_pagination.py,sha256=3DHGUjvrpkbWMIc_BEX4GvM-_PTcn62K9z48ucTJlH0,3164
|
|
4
4
|
fastapi_sqla/async_sqla.py,sha256=7SXRH3DMsQvpjCQdvCBEjQhDZ4-cPAg175MlgNVBnCg,5888
|
|
5
5
|
fastapi_sqla/aws_aurora_support.py,sha256=4dxLKOqDccgLwFqlz81L6f4HzrOXMZkY7Zuf4t_310U,838
|
|
6
6
|
fastapi_sqla/aws_rds_iam_support.py,sha256=Uw-XaiwShMMWYKCvlSqXoxvtKMblCAvbCZ1m6BYVpJk,1257
|
|
7
|
-
fastapi_sqla/base.py,sha256=
|
|
7
|
+
fastapi_sqla/base.py,sha256=8XHIKO8sBOmnRvCsOYRWhg5Y-XYqobM5DypeIMvJTFs,2501
|
|
8
8
|
fastapi_sqla/models.py,sha256=-B1xwINpTc9rEQd3KYHEC1s5s7jdVQkJ6Gy6xpmT13c,1108
|
|
9
9
|
fastapi_sqla/pagination.py,sha256=1gfIGcmt1OFspbRgtJ8AZOZdFd14DGRc4FkDgyh5bJ8,4517
|
|
10
10
|
fastapi_sqla/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
11
|
fastapi_sqla/sqla.py,sha256=irHuZaun027o9WJrdcZPavCN2vXNHupCWYhU5Dx-AqE,6348
|
|
12
|
-
fastapi_sqla-3.
|
|
13
|
-
fastapi_sqla-3.
|
|
14
|
-
fastapi_sqla-3.
|
|
15
|
-
fastapi_sqla-3.
|
|
16
|
-
fastapi_sqla-3.
|
|
12
|
+
fastapi_sqla-3.3.0.dist-info/LICENSE,sha256=8G0-nWLqi3xRYRrtRlTE8n1mkYJcnCRoZGUhv6ZE29c,1064
|
|
13
|
+
fastapi_sqla-3.3.0.dist-info/METADATA,sha256=sNlfIYlzk2w8fmVxJh8jsOinZLJHrmOgWMLCZi4DV4o,21391
|
|
14
|
+
fastapi_sqla-3.3.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
15
|
+
fastapi_sqla-3.3.0.dist-info/entry_points.txt,sha256=haa0EueKcRo8-AlJTpHBMn08wMBiULNGA53nkvaDWj0,53
|
|
16
|
+
fastapi_sqla-3.3.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|