CheeseAPI 1.7.2__tar.gz → 2.0.1__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 (36) hide show
  1. {cheeseapi-1.7.2 → cheeseapi-2.0.1}/.gitignore +0 -1
  2. cheeseapi-2.0.1/CheeseAPI/__init__.py +9 -0
  3. cheeseapi-2.0.1/CheeseAPI/app.py +829 -0
  4. cheeseapi-2.0.1/CheeseAPI/cors.py +49 -0
  5. cheeseapi-2.0.1/CheeseAPI/file.py +78 -0
  6. cheeseapi-2.0.1/CheeseAPI/printer.py +81 -0
  7. cheeseapi-2.0.1/CheeseAPI/request.py +289 -0
  8. cheeseapi-2.0.1/CheeseAPI/response.py +401 -0
  9. cheeseapi-2.0.1/CheeseAPI/route.py +261 -0
  10. cheeseapi-2.0.1/CheeseAPI/scheduler.py +292 -0
  11. cheeseapi-2.0.1/CheeseAPI/signal.py +179 -0
  12. cheeseapi-2.0.1/CheeseAPI/validator.py +64 -0
  13. cheeseapi-2.0.1/CheeseAPI/websocket.py +389 -0
  14. cheeseapi-2.0.1/PKG-INFO +132 -0
  15. cheeseapi-2.0.1/README.md +112 -0
  16. {cheeseapi-1.7.2 → cheeseapi-2.0.1}/pyproject.toml +13 -12
  17. cheeseapi-1.7.2/CheeseAPI/__init__.py +0 -9
  18. cheeseapi-1.7.2/CheeseAPI/app.py +0 -269
  19. cheeseapi-1.7.2/CheeseAPI/cors.py +0 -66
  20. cheeseapi-1.7.2/CheeseAPI/exception.py +0 -32
  21. cheeseapi-1.7.2/CheeseAPI/file.py +0 -52
  22. cheeseapi-1.7.2/CheeseAPI/handle.py +0 -831
  23. cheeseapi-1.7.2/CheeseAPI/protocol.py +0 -128
  24. cheeseapi-1.7.2/CheeseAPI/request.py +0 -156
  25. cheeseapi-1.7.2/CheeseAPI/response.py +0 -523
  26. cheeseapi-1.7.2/CheeseAPI/route.py +0 -361
  27. cheeseapi-1.7.2/CheeseAPI/schedule.py +0 -505
  28. cheeseapi-1.7.2/CheeseAPI/server.py +0 -40
  29. cheeseapi-1.7.2/CheeseAPI/signal.py +0 -54
  30. cheeseapi-1.7.2/CheeseAPI/text.py +0 -148
  31. cheeseapi-1.7.2/CheeseAPI/validator.py +0 -93
  32. cheeseapi-1.7.2/CheeseAPI/websocket.py +0 -33
  33. cheeseapi-1.7.2/CheeseAPI/workspace.py +0 -103
  34. cheeseapi-1.7.2/PKG-INFO +0 -175
  35. cheeseapi-1.7.2/README.md +0 -153
  36. {cheeseapi-1.7.2 → cheeseapi-2.0.1}/LICENSE +0 -0
@@ -4,4 +4,3 @@
4
4
  __pycache__
5
5
  logs
6
6
  dist
7
- static
@@ -0,0 +1,9 @@
1
+ from CheeseAPI.app import CheeseAPI, AppProxy
2
+ from CheeseAPI.printer import Printer
3
+ from CheeseAPI.request import Request, RequestProxy
4
+ from CheeseAPI.response import Response, ResponseProxy, FileResponse
5
+ from CheeseAPI.websocket import Websocket
6
+ from CheeseAPI.file import File
7
+ from CheeseAPI.route import Route, RouteProxy
8
+ from CheeseAPI.validator import validator
9
+