ohmyapi 0.1.2__tar.gz → 0.1.4__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.
Files changed (22) hide show
  1. {ohmyapi-0.1.2 → ohmyapi-0.1.4}/PKG-INFO +3 -3
  2. {ohmyapi-0.1.2 → ohmyapi-0.1.4}/README.md +2 -2
  3. {ohmyapi-0.1.2 → ohmyapi-0.1.4}/pyproject.toml +1 -1
  4. {ohmyapi-0.1.2 → ohmyapi-0.1.4}/src/ohmyapi/builtin/auth/models.py +1 -1
  5. {ohmyapi-0.1.2 → ohmyapi-0.1.4}/src/ohmyapi/__init__.py +0 -0
  6. {ohmyapi-0.1.2 → ohmyapi-0.1.4}/src/ohmyapi/builtin/auth/__init__.py +0 -0
  7. {ohmyapi-0.1.2 → ohmyapi-0.1.4}/src/ohmyapi/builtin/auth/permissions.py +0 -0
  8. {ohmyapi-0.1.2 → ohmyapi-0.1.4}/src/ohmyapi/builtin/auth/routes.py +0 -0
  9. {ohmyapi-0.1.2 → ohmyapi-0.1.4}/src/ohmyapi/cli.py +0 -0
  10. {ohmyapi-0.1.2 → ohmyapi-0.1.4}/src/ohmyapi/core/__init__.py +0 -0
  11. {ohmyapi-0.1.2 → ohmyapi-0.1.4}/src/ohmyapi/core/runtime.py +0 -0
  12. {ohmyapi-0.1.2 → ohmyapi-0.1.4}/src/ohmyapi/core/scaffolding.py +0 -0
  13. {ohmyapi-0.1.2 → ohmyapi-0.1.4}/src/ohmyapi/core/templates/app/__init__.py.j2 +0 -0
  14. {ohmyapi-0.1.2 → ohmyapi-0.1.4}/src/ohmyapi/core/templates/app/models.py.j2 +0 -0
  15. {ohmyapi-0.1.2 → ohmyapi-0.1.4}/src/ohmyapi/core/templates/app/routes.py.j2 +0 -0
  16. {ohmyapi-0.1.2 → ohmyapi-0.1.4}/src/ohmyapi/core/templates/project/pyproject.toml.j2 +0 -0
  17. {ohmyapi-0.1.2 → ohmyapi-0.1.4}/src/ohmyapi/core/templates/project/settings.py.j2 +0 -0
  18. {ohmyapi-0.1.2 → ohmyapi-0.1.4}/src/ohmyapi/db/__init__.py +0 -0
  19. {ohmyapi-0.1.2 → ohmyapi-0.1.4}/src/ohmyapi/db/migration_manager.py +0 -0
  20. {ohmyapi-0.1.2 → ohmyapi-0.1.4}/src/ohmyapi/db/model/__init__.py +0 -0
  21. {ohmyapi-0.1.2 → ohmyapi-0.1.4}/src/ohmyapi/db/model/model.py +0 -0
  22. {ohmyapi-0.1.2 → ohmyapi-0.1.4}/src/ohmyapi/router.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ohmyapi
3
- Version: 0.1.2
3
+ Version: 0.1.4
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
- It is blazingly fast, async and has batteries included.
33
- Built around FastAPI and TortoiseORM makes it 100% async.
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
- It is blazingly fast, async and has batteries included.
7
- Built around FastAPI and TortoiseORM makes it 100% async.
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
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "ohmyapi"
3
- version = "0.1.2"
3
+ version = "0.1.4"
4
4
  description = "A Django-like but async web-framework based on FastAPI and TortoiseORM."
5
5
  license = "MIT"
6
6
  keywords = ["fastapi", "tortoise", "orm", "async", "web-framework"]
@@ -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(max_length=255, 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