ohmyapi 0.1.11__py3-none-any.whl → 0.1.12__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.
- ohmyapi/cli.py +13 -4
- {ohmyapi-0.1.11.dist-info → ohmyapi-0.1.12.dist-info}/METADATA +22 -5
- {ohmyapi-0.1.11.dist-info → ohmyapi-0.1.12.dist-info}/RECORD +5 -5
- {ohmyapi-0.1.11.dist-info → ohmyapi-0.1.12.dist-info}/WHEEL +0 -0
- {ohmyapi-0.1.11.dist-info → ohmyapi-0.1.12.dist-info}/entry_points.txt +0 -0
ohmyapi/cli.py
CHANGED
@@ -16,13 +16,13 @@ Find your loaded project singleton via identifier: `p`
|
|
16
16
|
|
17
17
|
@app.command()
|
18
18
|
def startproject(name: str):
|
19
|
-
"""Create a new OhMyAPI project in the given directory"""
|
19
|
+
"""Create a new OhMyAPI project in the given directory."""
|
20
20
|
scaffolding.startproject(name)
|
21
21
|
|
22
22
|
|
23
23
|
@app.command()
|
24
24
|
def startapp(app_name: str, root: str = "."):
|
25
|
-
"""Create a new app with the given name in your OhMyAPI project"""
|
25
|
+
"""Create a new app with the given name in your OhMyAPI project."""
|
26
26
|
scaffolding.startapp(app_name, root)
|
27
27
|
|
28
28
|
|
@@ -93,6 +93,10 @@ def migrate(app: str = "*", root: str = "."):
|
|
93
93
|
|
94
94
|
@app.command()
|
95
95
|
def createsuperuser(root: str = "."):
|
96
|
+
"""Create a superuser in the DB.
|
97
|
+
|
98
|
+
This requires the presence of `ohmyapi_auth` in your INSTALLED_APPS to work.
|
99
|
+
"""
|
96
100
|
project_path = Path(root).resolve()
|
97
101
|
project = runtime.Project(project_path)
|
98
102
|
if not project.is_app_installed("ohmyapi_auth"):
|
@@ -103,9 +107,14 @@ def createsuperuser(root: str = "."):
|
|
103
107
|
import ohmyapi_auth
|
104
108
|
email = input("E-Mail: ")
|
105
109
|
username = input("Username: ")
|
106
|
-
|
110
|
+
password1, password2 = "foo", "bar"
|
111
|
+
while password1 != password2:
|
112
|
+
password1 = getpass("Password: ")
|
113
|
+
password2 = getpass("Repeat Password: ")
|
114
|
+
if password1 != password2:
|
115
|
+
print("Passwords didn't match!")
|
107
116
|
user = ohmyapi_auth.models.User(email=email, username=username, is_staff=True, is_admin=True)
|
108
|
-
user.set_password(
|
117
|
+
user.set_password(password1)
|
109
118
|
asyncio.run(project.init_orm())
|
110
119
|
asyncio.run(user.save())
|
111
120
|
asyncio.run(project.close_orm())
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: ohmyapi
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.12
|
4
4
|
Summary: A Django-like but async web-framework based on FastAPI and TortoiseORM.
|
5
5
|
License-Expression: MIT
|
6
6
|
Keywords: fastapi,tortoise,orm,async,web-framework
|
@@ -267,8 +267,6 @@ In your `routes.py`:
|
|
267
267
|
|
268
268
|
```python
|
269
269
|
from ohmyapi.router import APIRouter, Depends
|
270
|
-
|
271
|
-
from ohmyapi_auth.models import User
|
272
270
|
from ohmyapi_auth import (
|
273
271
|
models as auth,
|
274
272
|
permissions,
|
@@ -276,7 +274,7 @@ from ohmyapi_auth import (
|
|
276
274
|
|
277
275
|
from .models import Tournament
|
278
276
|
|
279
|
-
router = APIRouter(prefix="/tournament")
|
277
|
+
router = APIRouter(prefix="/tournament", tags=["Tournament"])
|
280
278
|
|
281
279
|
|
282
280
|
@router.get("/")
|
@@ -294,10 +292,11 @@ Use Tortoise's `Manager` to implement model-level permissions.
|
|
294
292
|
|
295
293
|
```python
|
296
294
|
from ohmyapi.db import Manager
|
295
|
+
from ohmyapi_auth.models import User
|
297
296
|
|
298
297
|
|
299
298
|
class TeamManager(Manager):
|
300
|
-
async def for_user(self, user:
|
299
|
+
async def for_user(self, user: User):
|
301
300
|
return await self.filter(members=user).all()
|
302
301
|
|
303
302
|
|
@@ -308,6 +307,24 @@ class Team(Model):
|
|
308
307
|
manager = TeamManager()
|
309
308
|
```
|
310
309
|
|
310
|
+
Use the custom manager in your FastAPI route handler:
|
311
|
+
|
312
|
+
```python
|
313
|
+
from ohmyapi.router import APIRouter
|
314
|
+
from ohmyapi_auth import (
|
315
|
+
models as auth,
|
316
|
+
permissions,
|
317
|
+
)
|
318
|
+
|
319
|
+
router = APIRouter(prefix="/tournament", tags=["Tournament"])
|
320
|
+
|
321
|
+
|
322
|
+
@router.get("/teams")
|
323
|
+
async def teams(user: auth.User = Depends(permissions.require_authenticated)):
|
324
|
+
queryset = Team.for_user(user)
|
325
|
+
return await Tournament.Schema.many.from_queryset(queryset)
|
326
|
+
```
|
327
|
+
|
311
328
|
## Shell
|
312
329
|
|
313
330
|
Similar to Django, you can attach to an interactive shell with your project already loaded inside.
|
@@ -4,7 +4,7 @@ ohmyapi/builtin/auth/__init__.py,sha256=TY1RKgwWmJ6FKz_v4J3m0Ang69qSmtVDLe4rqjLk
|
|
4
4
|
ohmyapi/builtin/auth/models.py,sha256=Xsxn9m5RTgY2a0PPfW3wTj77ocuuISytdl4ec_TR_kw,1524
|
5
5
|
ohmyapi/builtin/auth/permissions.py,sha256=jf-I2b9rIOw2EF4Kga-_Bz1ZPPHU0vHNaXGrDQSwhSI,145
|
6
6
|
ohmyapi/builtin/auth/routes.py,sha256=iMxmgP6TSpMrtSKf-g7mc60NcOiw8FRkngUroalGCyk,5519
|
7
|
-
ohmyapi/cli.py,sha256=
|
7
|
+
ohmyapi/cli.py,sha256=qCGi9GtgybCh_jb_NVwu9dlG9XTbilg6qnXop2IIgC8,3768
|
8
8
|
ohmyapi/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
9
|
ohmyapi/core/runtime.py,sha256=l5zffc4VTwQOo7G9mfiYHsPGapMONRX_jtO_z9QaKHU,8577
|
10
10
|
ohmyapi/core/scaffolding.py,sha256=iMymscokJ-YqzB0ZTC-gcc2T71o73577j9tnb2x8lH8,2572
|
@@ -19,7 +19,7 @@ ohmyapi/db/exceptions.py,sha256=I7AubrdqQF_UvAvzKqz2ve08-BkXHzEWXnwG300StHE,35
|
|
19
19
|
ohmyapi/db/model/__init__.py,sha256=k3StTNuKatpwZo_Z5JBFa-927eJrzibFE8U4SA82asc,32
|
20
20
|
ohmyapi/db/model/model.py,sha256=BajFtLlQ1s0mZ2hj-_JNQhLQmxuVe-Lw2LuW5t2C7Rw,1579
|
21
21
|
ohmyapi/router.py,sha256=hutccsrP9RT8W5O6uBDhOJehwqrkRoPzaUI5zoHPh9A,55
|
22
|
-
ohmyapi-0.1.
|
23
|
-
ohmyapi-0.1.
|
24
|
-
ohmyapi-0.1.
|
25
|
-
ohmyapi-0.1.
|
22
|
+
ohmyapi-0.1.12.dist-info/METADATA,sha256=i8wVhc1RwYUKSXXQmffQCMcuawbKmD07yu48rxK3zOY,8673
|
23
|
+
ohmyapi-0.1.12.dist-info/WHEEL,sha256=M5asmiAlL6HEcOq52Yi5mmk9KmTVjY2RDPtO4p9DMrc,88
|
24
|
+
ohmyapi-0.1.12.dist-info/entry_points.txt,sha256=wb3lw8-meAlpiv1mqcQ3m25ukL7djagU_w89GkrC37k,43
|
25
|
+
ohmyapi-0.1.12.dist-info/RECORD,,
|
File without changes
|
File without changes
|