vayuapi 0.1.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 (45) hide show
  1. vayuapi-0.1.0/LICENSE +21 -0
  2. vayuapi-0.1.0/MANIFEST.in +44 -0
  3. vayuapi-0.1.0/PKG-INFO +766 -0
  4. vayuapi-0.1.0/README.md +646 -0
  5. vayuapi-0.1.0/pyproject.toml +206 -0
  6. vayuapi-0.1.0/requirements.txt +57 -0
  7. vayuapi-0.1.0/setup.cfg +4 -0
  8. vayuapi-0.1.0/setup.py +159 -0
  9. vayuapi-0.1.0/vayuapi/__init__.py +149 -0
  10. vayuapi-0.1.0/vayuapi/admin/__init__.py +8 -0
  11. vayuapi-0.1.0/vayuapi/admin/enhanced_panel.py +593 -0
  12. vayuapi-0.1.0/vayuapi/admin/panel.py +1880 -0
  13. vayuapi-0.1.0/vayuapi/ai/__init__.py +9 -0
  14. vayuapi-0.1.0/vayuapi/ai/langchain.py +332 -0
  15. vayuapi-0.1.0/vayuapi/ai/pydantic_ai.py +202 -0
  16. vayuapi-0.1.0/vayuapi/core/__init__.py +10 -0
  17. vayuapi-0.1.0/vayuapi/core/application.py +930 -0
  18. vayuapi-0.1.0/vayuapi/core/concurrency.py +715 -0
  19. vayuapi-0.1.0/vayuapi/core/decorators.py +49 -0
  20. vayuapi-0.1.0/vayuapi/core/dependencies.py +227 -0
  21. vayuapi-0.1.0/vayuapi/core/docs.py +245 -0
  22. vayuapi-0.1.0/vayuapi/core/exceptions.py +249 -0
  23. vayuapi-0.1.0/vayuapi/core/middleware.py +491 -0
  24. vayuapi-0.1.0/vayuapi/core/params.py +556 -0
  25. vayuapi-0.1.0/vayuapi/core/responses.py +73 -0
  26. vayuapi-0.1.0/vayuapi/core/routing.py +480 -0
  27. vayuapi-0.1.0/vayuapi/core/staticfiles.py +55 -0
  28. vayuapi-0.1.0/vayuapi/core/templating.py +126 -0
  29. vayuapi-0.1.0/vayuapi/core/uploads.py +335 -0
  30. vayuapi-0.1.0/vayuapi/core/websocket.py +141 -0
  31. vayuapi-0.1.0/vayuapi/middleware/__init__.py +33 -0
  32. vayuapi-0.1.0/vayuapi/orm/__init__.py +14 -0
  33. vayuapi-0.1.0/vayuapi/orm/async_orm.py +221 -0
  34. vayuapi-0.1.0/vayuapi/orm/database.py +252 -0
  35. vayuapi-0.1.0/vayuapi/orm/django_orm.py +178 -0
  36. vayuapi-0.1.0/vayuapi/scheduler/__init__.py +7 -0
  37. vayuapi-0.1.0/vayuapi/scheduler/tasks.py +224 -0
  38. vayuapi-0.1.0/vayuapi/security/__init__.py +35 -0
  39. vayuapi-0.1.0/vayuapi/security/auth.py +406 -0
  40. vayuapi-0.1.0/vayuapi/security/encryption.py +410 -0
  41. vayuapi-0.1.0/vayuapi/security/jwt.py +445 -0
  42. vayuapi-0.1.0/vayuapi/status.py +425 -0
  43. vayuapi-0.1.0/vayuapi/utils/__init__.py +5 -0
  44. vayuapi-0.1.0/vayuapi/utils/helpers.py +230 -0
  45. vayuapi-0.1.0/vayuapi.egg-info/SOURCES.txt +42 -0
vayuapi-0.1.0/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 VayuAPI Team
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,44 @@
1
+ # Include documentation
2
+ include README.md
3
+ include LICENSE
4
+ include CHANGELOG.md
5
+ include CONTRIBUTING.md
6
+ include SECURITY.md
7
+ include CODE_OF_CONDUCT.md
8
+
9
+ # Include configuration files
10
+ include pyproject.toml
11
+ include setup.py
12
+ include requirements.txt
13
+
14
+ # Include package data
15
+ recursive-include vayuapi *.py
16
+ recursive-include vayuapi *.typed
17
+ recursive-include vayuapi/admin/templates *.html
18
+ recursive-include vayuapi/admin/templates *.css
19
+ recursive-include vayuapi/admin/templates *.js
20
+
21
+ # Include tests
22
+ recursive-include tests *.py
23
+
24
+ # Include examples
25
+ recursive-include examples *.py
26
+ recursive-include examples *.md
27
+
28
+ # Exclude unwanted files
29
+ global-exclude *.pyc
30
+ global-exclude *.pyo
31
+ global-exclude *~
32
+ global-exclude __pycache__
33
+ global-exclude .DS_Store
34
+ global-exclude *.so
35
+ global-exclude *.dylib
36
+
37
+ # Exclude build artifacts
38
+ prune build
39
+ prune dist
40
+ prune *.egg-info
41
+ prune .git
42
+ prune .github
43
+ prune .vscode
44
+ prune .idea