ohmyapi 0.4.5__tar.gz → 0.4.6__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 (32) hide show
  1. {ohmyapi-0.4.5 → ohmyapi-0.4.6}/PKG-INFO +1 -1
  2. {ohmyapi-0.4.5 → ohmyapi-0.4.6}/pyproject.toml +1 -1
  3. ohmyapi-0.4.6/src/ohmyapi/__init__.py +1 -0
  4. {ohmyapi-0.4.5 → ohmyapi-0.4.6}/src/ohmyapi/builtin/auth/permissions.py +1 -0
  5. {ohmyapi-0.4.5 → ohmyapi-0.4.6}/src/ohmyapi/builtin/auth/routes.py +1 -1
  6. ohmyapi-0.4.5/src/ohmyapi/__init__.py +0 -1
  7. {ohmyapi-0.4.5 → ohmyapi-0.4.6}/README.md +0 -0
  8. {ohmyapi-0.4.5 → ohmyapi-0.4.6}/src/ohmyapi/__main__.py +0 -0
  9. {ohmyapi-0.4.5 → ohmyapi-0.4.6}/src/ohmyapi/builtin/auth/__init__.py +0 -0
  10. {ohmyapi-0.4.5 → ohmyapi-0.4.6}/src/ohmyapi/builtin/auth/models.py +0 -0
  11. {ohmyapi-0.4.5 → ohmyapi-0.4.6}/src/ohmyapi/builtin/demo/__init__.py +0 -0
  12. {ohmyapi-0.4.5 → ohmyapi-0.4.6}/src/ohmyapi/builtin/demo/models.py +0 -0
  13. {ohmyapi-0.4.5 → ohmyapi-0.4.6}/src/ohmyapi/builtin/demo/routes.py +0 -0
  14. {ohmyapi-0.4.5 → ohmyapi-0.4.6}/src/ohmyapi/cli.py +0 -0
  15. {ohmyapi-0.4.5 → ohmyapi-0.4.6}/src/ohmyapi/core/__init__.py +0 -0
  16. {ohmyapi-0.4.5 → ohmyapi-0.4.6}/src/ohmyapi/core/logging.py +0 -0
  17. {ohmyapi-0.4.5 → ohmyapi-0.4.6}/src/ohmyapi/core/runtime.py +0 -0
  18. {ohmyapi-0.4.5 → ohmyapi-0.4.6}/src/ohmyapi/core/scaffolding.py +0 -0
  19. {ohmyapi-0.4.5 → ohmyapi-0.4.6}/src/ohmyapi/core/templates/app/__init__.py.j2 +0 -0
  20. {ohmyapi-0.4.5 → ohmyapi-0.4.6}/src/ohmyapi/core/templates/app/models.py.j2 +0 -0
  21. {ohmyapi-0.4.5 → ohmyapi-0.4.6}/src/ohmyapi/core/templates/app/routes.py.j2 +0 -0
  22. {ohmyapi-0.4.5 → ohmyapi-0.4.6}/src/ohmyapi/core/templates/docker/Dockerfile +0 -0
  23. {ohmyapi-0.4.5 → ohmyapi-0.4.6}/src/ohmyapi/core/templates/docker/docker-compose.yml +0 -0
  24. {ohmyapi-0.4.5 → ohmyapi-0.4.6}/src/ohmyapi/core/templates/project/README.md.j2 +0 -0
  25. {ohmyapi-0.4.5 → ohmyapi-0.4.6}/src/ohmyapi/core/templates/project/pyproject.toml.j2 +0 -0
  26. {ohmyapi-0.4.5 → ohmyapi-0.4.6}/src/ohmyapi/core/templates/project/settings.py.j2 +0 -0
  27. {ohmyapi-0.4.5 → ohmyapi-0.4.6}/src/ohmyapi/db/__init__.py +0 -0
  28. {ohmyapi-0.4.5 → ohmyapi-0.4.6}/src/ohmyapi/db/exceptions.py +0 -0
  29. {ohmyapi-0.4.5 → ohmyapi-0.4.6}/src/ohmyapi/db/model/__init__.py +0 -0
  30. {ohmyapi-0.4.5 → ohmyapi-0.4.6}/src/ohmyapi/db/model/model.py +0 -0
  31. {ohmyapi-0.4.5 → ohmyapi-0.4.6}/src/ohmyapi/middleware/cors.py +0 -0
  32. {ohmyapi-0.4.5 → ohmyapi-0.4.6}/src/ohmyapi/router.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ohmyapi
3
- Version: 0.4.5
3
+ Version: 0.4.6
4
4
  Summary: Django-flavored scaffolding and management layer around FastAPI, Pydantic, TortoiseORM and Aerich migrations
5
5
  License-Expression: MIT
6
6
  Keywords: fastapi,tortoise,orm,pydantic,async,web-framework
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "ohmyapi"
3
- version = "0.4.5"
3
+ version = "0.4.6"
4
4
  description = "Django-flavored scaffolding and management layer around FastAPI, Pydantic, TortoiseORM and Aerich migrations"
5
5
  license = "MIT"
6
6
  keywords = ["fastapi", "tortoise", "orm", "pydantic", "async", "web-framework"]
@@ -0,0 +1 @@
1
+ __VERSION__ = "0.4.6"
@@ -1,6 +1,7 @@
1
1
  from .routes import (
2
2
  get_current_user,
3
3
  get_token,
4
+ maybe_authenticated,
4
5
  require_admin,
5
6
  require_authenticated,
6
7
  require_group,
@@ -124,7 +124,7 @@ async def get_current_user(token: str = Depends(oauth2_scheme)) -> User:
124
124
  return user
125
125
 
126
126
 
127
- async def optionally_authenticated(token: Optional[str] = Depends(oauth2_scheme)) -> Optional[User]:
127
+ async def maybe_authenticated(token: Optional[str] = Depends(oauth2_scheme)) -> Optional[User]:
128
128
  if token is None:
129
129
  return None
130
130
  return await get_current_user(token)
@@ -1 +0,0 @@
1
- __VERSION__ = "0.4.5"
File without changes
File without changes
File without changes
File without changes