fastapi-async-auth-kit 0.3.0__tar.gz → 0.5.0__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 (23) hide show
  1. {fastapi_async_auth_kit-0.3.0 → fastapi_async_auth_kit-0.5.0}/PKG-INFO +4 -1
  2. {fastapi_async_auth_kit-0.3.0 → fastapi_async_auth_kit-0.5.0}/README.md +3 -0
  3. {fastapi_async_auth_kit-0.3.0 → fastapi_async_auth_kit-0.5.0}/fastapi_async_auth_kit.egg-info/PKG-INFO +4 -1
  4. {fastapi_async_auth_kit-0.3.0 → fastapi_async_auth_kit-0.5.0}/pyproject.toml +1 -1
  5. {fastapi_async_auth_kit-0.3.0 → fastapi_async_auth_kit-0.5.0}/LICENSE +0 -0
  6. {fastapi_async_auth_kit-0.3.0 → fastapi_async_auth_kit-0.5.0}/fastapi_async_auth_kit/__init__.py +0 -0
  7. {fastapi_async_auth_kit-0.3.0 → fastapi_async_auth_kit-0.5.0}/fastapi_async_auth_kit/api/auth.py +0 -0
  8. {fastapi_async_auth_kit-0.3.0 → fastapi_async_auth_kit-0.5.0}/fastapi_async_auth_kit/core/config.py +0 -0
  9. {fastapi_async_auth_kit-0.3.0 → fastapi_async_auth_kit-0.5.0}/fastapi_async_auth_kit/core/security.py +0 -0
  10. {fastapi_async_auth_kit-0.3.0 → fastapi_async_auth_kit-0.5.0}/fastapi_async_auth_kit/core/setup.py +0 -0
  11. {fastapi_async_auth_kit-0.3.0 → fastapi_async_auth_kit-0.5.0}/fastapi_async_auth_kit/db/base.py +0 -0
  12. {fastapi_async_auth_kit-0.3.0 → fastapi_async_auth_kit-0.5.0}/fastapi_async_auth_kit/db/factory.py +0 -0
  13. {fastapi_async_auth_kit-0.3.0 → fastapi_async_auth_kit-0.5.0}/fastapi_async_auth_kit/db/mongo_repo.py +0 -0
  14. {fastapi_async_auth_kit-0.3.0 → fastapi_async_auth_kit-0.5.0}/fastapi_async_auth_kit/db/sqlalchemy_repo.py +0 -0
  15. {fastapi_async_auth_kit-0.3.0 → fastapi_async_auth_kit-0.5.0}/fastapi_async_auth_kit/dependencies/auth.py +0 -0
  16. {fastapi_async_auth_kit-0.3.0 → fastapi_async_auth_kit-0.5.0}/fastapi_async_auth_kit/schemas/auth.py +0 -0
  17. {fastapi_async_auth_kit-0.3.0 → fastapi_async_auth_kit-0.5.0}/fastapi_async_auth_kit/services/auth_service.py +0 -0
  18. {fastapi_async_auth_kit-0.3.0 → fastapi_async_auth_kit-0.5.0}/fastapi_async_auth_kit.egg-info/SOURCES.txt +0 -0
  19. {fastapi_async_auth_kit-0.3.0 → fastapi_async_auth_kit-0.5.0}/fastapi_async_auth_kit.egg-info/dependency_links.txt +0 -0
  20. {fastapi_async_auth_kit-0.3.0 → fastapi_async_auth_kit-0.5.0}/fastapi_async_auth_kit.egg-info/requires.txt +0 -0
  21. {fastapi_async_auth_kit-0.3.0 → fastapi_async_auth_kit-0.5.0}/fastapi_async_auth_kit.egg-info/top_level.txt +0 -0
  22. {fastapi_async_auth_kit-0.3.0 → fastapi_async_auth_kit-0.5.0}/setup.cfg +0 -0
  23. {fastapi_async_auth_kit-0.3.0 → fastapi_async_auth_kit-0.5.0}/tests/test_auth.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fastapi-async-auth-kit
3
- Version: 0.3.0
3
+ Version: 0.5.0
4
4
  Summary: Production-ready FastAPI auth system with JWT, refresh tokens, and async DB support
5
5
  Author-email: Keyurkumar <kmistry1110@gmail.com>
6
6
  License-Expression: MIT
@@ -109,6 +109,7 @@ async def me(user=Depends(get_current_user)):
109
109
  | POST /auth/logout | Logout and revoke token |
110
110
  | GET /auth/me | Get current user |
111
111
 
112
+ ![Swagger UI](https://raw.githubusercontent.com/kmistry1110/fastapi_auth/refs/heads/main/docs/image.png)
112
113
  ---
113
114
 
114
115
  ## 🧪 Example
@@ -192,6 +193,8 @@ Database (Async)
192
193
 
193
194
  Pull requests are welcome. For major changes, open an issue first.
194
195
 
196
+ Source Code: https://github.com/kmistry1110/fastapi_auth
197
+
195
198
  ---
196
199
 
197
200
  ## 📄 License
@@ -85,6 +85,7 @@ async def me(user=Depends(get_current_user)):
85
85
  | POST /auth/logout | Logout and revoke token |
86
86
  | GET /auth/me | Get current user |
87
87
 
88
+ ![Swagger UI](https://raw.githubusercontent.com/kmistry1110/fastapi_auth/refs/heads/main/docs/image.png)
88
89
  ---
89
90
 
90
91
  ## 🧪 Example
@@ -168,6 +169,8 @@ Database (Async)
168
169
 
169
170
  Pull requests are welcome. For major changes, open an issue first.
170
171
 
172
+ Source Code: https://github.com/kmistry1110/fastapi_auth
173
+
171
174
  ---
172
175
 
173
176
  ## 📄 License
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fastapi-async-auth-kit
3
- Version: 0.3.0
3
+ Version: 0.5.0
4
4
  Summary: Production-ready FastAPI auth system with JWT, refresh tokens, and async DB support
5
5
  Author-email: Keyurkumar <kmistry1110@gmail.com>
6
6
  License-Expression: MIT
@@ -109,6 +109,7 @@ async def me(user=Depends(get_current_user)):
109
109
  | POST /auth/logout | Logout and revoke token |
110
110
  | GET /auth/me | Get current user |
111
111
 
112
+ ![Swagger UI](https://raw.githubusercontent.com/kmistry1110/fastapi_auth/refs/heads/main/docs/image.png)
112
113
  ---
113
114
 
114
115
  ## 🧪 Example
@@ -192,6 +193,8 @@ Database (Async)
192
193
 
193
194
  Pull requests are welcome. For major changes, open an issue first.
194
195
 
196
+ Source Code: https://github.com/kmistry1110/fastapi_auth
197
+
195
198
  ---
196
199
 
197
200
  ## 📄 License
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "fastapi-async-auth-kit"
3
- version = "0.3.0"
3
+ version = "0.5.0"
4
4
  description = "Production-ready FastAPI auth system with JWT, refresh tokens, and async DB support"
5
5
  readme = "README.md"
6
6
  authors = [{ name="Keyurkumar", email="kmistry1110@gmail.com" }]