ohmyapi 0.1.2__tar.gz → 0.1.3__tar.gz
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-0.1.2 → ohmyapi-0.1.3}/PKG-INFO +3 -3
- {ohmyapi-0.1.2 → ohmyapi-0.1.3}/README.md +2 -2
- {ohmyapi-0.1.2 → ohmyapi-0.1.3}/pyproject.toml +1 -1
- {ohmyapi-0.1.2 → ohmyapi-0.1.3}/src/ohmyapi/builtin/auth/models.py +1 -1
- {ohmyapi-0.1.2 → ohmyapi-0.1.3}/src/ohmyapi/__init__.py +0 -0
- {ohmyapi-0.1.2 → ohmyapi-0.1.3}/src/ohmyapi/builtin/auth/__init__.py +0 -0
- {ohmyapi-0.1.2 → ohmyapi-0.1.3}/src/ohmyapi/builtin/auth/permissions.py +0 -0
- {ohmyapi-0.1.2 → ohmyapi-0.1.3}/src/ohmyapi/builtin/auth/routes.py +0 -0
- {ohmyapi-0.1.2 → ohmyapi-0.1.3}/src/ohmyapi/cli.py +0 -0
- {ohmyapi-0.1.2 → ohmyapi-0.1.3}/src/ohmyapi/core/__init__.py +0 -0
- {ohmyapi-0.1.2 → ohmyapi-0.1.3}/src/ohmyapi/core/runtime.py +0 -0
- {ohmyapi-0.1.2 → ohmyapi-0.1.3}/src/ohmyapi/core/scaffolding.py +0 -0
- {ohmyapi-0.1.2 → ohmyapi-0.1.3}/src/ohmyapi/core/templates/app/__init__.py.j2 +0 -0
- {ohmyapi-0.1.2 → ohmyapi-0.1.3}/src/ohmyapi/core/templates/app/models.py.j2 +0 -0
- {ohmyapi-0.1.2 → ohmyapi-0.1.3}/src/ohmyapi/core/templates/app/routes.py.j2 +0 -0
- {ohmyapi-0.1.2 → ohmyapi-0.1.3}/src/ohmyapi/core/templates/project/pyproject.toml.j2 +0 -0
- {ohmyapi-0.1.2 → ohmyapi-0.1.3}/src/ohmyapi/core/templates/project/settings.py.j2 +0 -0
- {ohmyapi-0.1.2 → ohmyapi-0.1.3}/src/ohmyapi/db/__init__.py +0 -0
- {ohmyapi-0.1.2 → ohmyapi-0.1.3}/src/ohmyapi/db/migration_manager.py +0 -0
- {ohmyapi-0.1.2 → ohmyapi-0.1.3}/src/ohmyapi/db/model/__init__.py +0 -0
- {ohmyapi-0.1.2 → ohmyapi-0.1.3}/src/ohmyapi/db/model/model.py +0 -0
- {ohmyapi-0.1.2 → ohmyapi-0.1.3}/src/ohmyapi/router.py +0 -0
@@ -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
|
|
@@ -3,8 +3,8 @@
|
|
3
3
|
> OhMyAPI == Application scaffolding for FastAPI+TortoiseORM.
|
4
4
|
|
5
5
|
OhMyAPI is a Django-flavored web-application scaffolding framework.
|
6
|
-
|
7
|
-
|
6
|
+
Built around FastAPI and TortoiseORM, it 100% async.
|
7
|
+
It is blazingly fast and has batteries included.
|
8
8
|
|
9
9
|
Features:
|
10
10
|
|
@@ -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)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|