ohmyapi 0.1.2__py3-none-any.whl → 0.1.3__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/builtin/auth/models.py +1 -1
- {ohmyapi-0.1.2.dist-info → ohmyapi-0.1.3.dist-info}/METADATA +3 -3
- {ohmyapi-0.1.2.dist-info → ohmyapi-0.1.3.dist-info}/RECORD +5 -5
- {ohmyapi-0.1.2.dist-info → ohmyapi-0.1.3.dist-info}/WHEEL +0 -0
- {ohmyapi-0.1.2.dist-info → ohmyapi-0.1.3.dist-info}/entry_points.txt +0 -0
ohmyapi/builtin/auth/models.py
CHANGED
@@ -13,7 +13,7 @@ class Group(Model):
|
|
13
13
|
|
14
14
|
class User(Model):
|
15
15
|
id = field.IntField(pk=True)
|
16
|
-
email = CharField(unique=True, index=True)
|
16
|
+
email = field.CharField(unique=True, index=True)
|
17
17
|
username = field.CharField(max_length=150, unique=True)
|
18
18
|
password_hash = field.CharField(max_length=128)
|
19
19
|
is_admin = field.BooleanField(default=False)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: ohmyapi
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.3
|
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
|
@@ -29,8 +29,8 @@ Description-Content-Type: text/markdown
|
|
29
29
|
> OhMyAPI == Application scaffolding for FastAPI+TortoiseORM.
|
30
30
|
|
31
31
|
OhMyAPI is a Django-flavored web-application scaffolding framework.
|
32
|
-
|
33
|
-
|
32
|
+
Built around FastAPI and TortoiseORM, it 100% async.
|
33
|
+
It is blazingly fast and has batteries included.
|
34
34
|
|
35
35
|
Features:
|
36
36
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
ohmyapi/__init__.py,sha256=UmLNQImTbKvHEgwQB2Wsyl6fq88X92imL9QZYJpQX4I,18
|
2
2
|
ohmyapi/builtin/auth/__init__.py,sha256=TY1RKgwWmJ6FKz_v4J3m0Ang69qSmtVDLe4rqjLk4-E,69
|
3
|
-
ohmyapi/builtin/auth/models.py,sha256=
|
3
|
+
ohmyapi/builtin/auth/models.py,sha256=AmdXMzDSy8zLPwvmMmZ9-gMh7sjkYIJvGIL-Ogqlpbg,1496
|
4
4
|
ohmyapi/builtin/auth/permissions.py,sha256=gPBf01UNgXjU3v3DwMSYpKjayZSnwksp-ji4C99oX_I,111
|
5
5
|
ohmyapi/builtin/auth/routes.py,sha256=5jLq92z4TJw4eyiIJ5t7MwRNtYlpN7suDwW28JeEQYA,4902
|
6
6
|
ohmyapi/cli.py,sha256=DaSf1uYxv1bD1XBwVN_rn4F7hq9AlvXwtWzbVw7WPBw,3472
|
@@ -17,7 +17,7 @@ ohmyapi/db/migration_manager.py,sha256=dTabeDyd6ZIa0lORlKRuiLnBTcsVAgUjgrO9_bew6
|
|
17
17
|
ohmyapi/db/model/__init__.py,sha256=owKYpx5a2ZFTBgBqyEKN09AvY1cSP0dy1O7d3_sUVgM,33
|
18
18
|
ohmyapi/db/model/model.py,sha256=PSzK_d8IZQExSRuTrEyPnqfa4GENQhbBZsVxxLWTR4g,1570
|
19
19
|
ohmyapi/router.py,sha256=RzDXrtJJrk4eWdt9qoKBfz6g0S5WZq2hDQoFy5whR6A,40
|
20
|
-
ohmyapi-0.1.
|
21
|
-
ohmyapi-0.1.
|
22
|
-
ohmyapi-0.1.
|
23
|
-
ohmyapi-0.1.
|
20
|
+
ohmyapi-0.1.3.dist-info/METADATA,sha256=dJXuvaA11c6SVRWTVgWhBxhnJULsltFybX__mrjdHVQ,4268
|
21
|
+
ohmyapi-0.1.3.dist-info/WHEEL,sha256=M5asmiAlL6HEcOq52Yi5mmk9KmTVjY2RDPtO4p9DMrc,88
|
22
|
+
ohmyapi-0.1.3.dist-info/entry_points.txt,sha256=ZCZJLw_ojguyr1WOmb8UwHrr42hiLj6-Kzh4mMa_7Ns,44
|
23
|
+
ohmyapi-0.1.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|