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.
- {cheeseapi-1.7.2 → cheeseapi-2.0.1}/.gitignore +0 -1
- cheeseapi-2.0.1/CheeseAPI/__init__.py +9 -0
- cheeseapi-2.0.1/CheeseAPI/app.py +829 -0
- cheeseapi-2.0.1/CheeseAPI/cors.py +49 -0
- cheeseapi-2.0.1/CheeseAPI/file.py +78 -0
- cheeseapi-2.0.1/CheeseAPI/printer.py +81 -0
- cheeseapi-2.0.1/CheeseAPI/request.py +289 -0
- cheeseapi-2.0.1/CheeseAPI/response.py +401 -0
- cheeseapi-2.0.1/CheeseAPI/route.py +261 -0
- cheeseapi-2.0.1/CheeseAPI/scheduler.py +292 -0
- cheeseapi-2.0.1/CheeseAPI/signal.py +179 -0
- cheeseapi-2.0.1/CheeseAPI/validator.py +64 -0
- cheeseapi-2.0.1/CheeseAPI/websocket.py +389 -0
- cheeseapi-2.0.1/PKG-INFO +132 -0
- cheeseapi-2.0.1/README.md +112 -0
- {cheeseapi-1.7.2 → cheeseapi-2.0.1}/pyproject.toml +13 -12
- cheeseapi-1.7.2/CheeseAPI/__init__.py +0 -9
- cheeseapi-1.7.2/CheeseAPI/app.py +0 -269
- cheeseapi-1.7.2/CheeseAPI/cors.py +0 -66
- cheeseapi-1.7.2/CheeseAPI/exception.py +0 -32
- cheeseapi-1.7.2/CheeseAPI/file.py +0 -52
- cheeseapi-1.7.2/CheeseAPI/handle.py +0 -831
- cheeseapi-1.7.2/CheeseAPI/protocol.py +0 -128
- cheeseapi-1.7.2/CheeseAPI/request.py +0 -156
- cheeseapi-1.7.2/CheeseAPI/response.py +0 -523
- cheeseapi-1.7.2/CheeseAPI/route.py +0 -361
- cheeseapi-1.7.2/CheeseAPI/schedule.py +0 -505
- cheeseapi-1.7.2/CheeseAPI/server.py +0 -40
- cheeseapi-1.7.2/CheeseAPI/signal.py +0 -54
- cheeseapi-1.7.2/CheeseAPI/text.py +0 -148
- cheeseapi-1.7.2/CheeseAPI/validator.py +0 -93
- cheeseapi-1.7.2/CheeseAPI/websocket.py +0 -33
- cheeseapi-1.7.2/CheeseAPI/workspace.py +0 -103
- cheeseapi-1.7.2/PKG-INFO +0 -175
- cheeseapi-1.7.2/README.md +0 -153
- {cheeseapi-1.7.2 → cheeseapi-2.0.1}/LICENSE +0 -0
|
@@ -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
|
+
|