v.0.7.0 WeatherResponse

This commit is contained in:
tiijay
2025-11-13 18:17:25 +01:00
parent d9fe55688d
commit 303a0f4468
8 changed files with 161 additions and 34 deletions

View File

@@ -3,4 +3,5 @@ from .colors import *
from .time_utils import *
from .font_utils import *
from .math_utils import *
from .url_encode import URLEncoder
from .url_encode import URLEncoder
from .http_utils import http_message

6
app/utils/http_utils.py Normal file
View File

@@ -0,0 +1,6 @@
http_message = {
# Jedes Zeichen ist genau 3 Pixel breit, 5 Pixel hoch
200: "OK",
400: "Bad Request",
401: "Unauthorized",
}