wsbuilder 0.2.6__tar.gz → 0.2.7__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.
- {wsbuilder-0.2.6/src/wsbuilder.egg-info → wsbuilder-0.2.7}/PKG-INFO +3 -3
- {wsbuilder-0.2.6 → wsbuilder-0.2.7}/README.md +1 -1
- {wsbuilder-0.2.6 → wsbuilder-0.2.7}/pyproject.toml +2 -2
- {wsbuilder-0.2.6 → wsbuilder-0.2.7}/src/wsbuilder/__init__.py +2 -2
- {wsbuilder-0.2.6 → wsbuilder-0.2.7/src/wsbuilder.egg-info}/PKG-INFO +3 -3
- {wsbuilder-0.2.6 → wsbuilder-0.2.7}/LICENSE +0 -0
- {wsbuilder-0.2.6 → wsbuilder-0.2.7}/setup.cfg +0 -0
- {wsbuilder-0.2.6 → wsbuilder-0.2.7}/src/wsbuilder/__main__.py +0 -0
- {wsbuilder-0.2.6 → wsbuilder-0.2.7}/src/wsbuilder/app.py +0 -0
- {wsbuilder-0.2.6 → wsbuilder-0.2.7}/src/wsbuilder/constants.py +0 -0
- {wsbuilder-0.2.6 → wsbuilder-0.2.7}/src/wsbuilder/framework.py +0 -0
- {wsbuilder-0.2.6 → wsbuilder-0.2.7}/src/wsbuilder/http.py +0 -0
- {wsbuilder-0.2.6 → wsbuilder-0.2.7}/src/wsbuilder/server.py +0 -0
- {wsbuilder-0.2.6 → wsbuilder-0.2.7}/src/wsbuilder/ws.py +0 -0
- {wsbuilder-0.2.6 → wsbuilder-0.2.7}/src/wsbuilder/ws_demo.py +0 -0
- {wsbuilder-0.2.6 → wsbuilder-0.2.7}/src/wsbuilder.egg-info/SOURCES.txt +0 -0
- {wsbuilder-0.2.6 → wsbuilder-0.2.7}/src/wsbuilder.egg-info/dependency_links.txt +0 -0
- {wsbuilder-0.2.6 → wsbuilder-0.2.7}/src/wsbuilder.egg-info/entry_points.txt +0 -0
- {wsbuilder-0.2.6 → wsbuilder-0.2.7}/src/wsbuilder.egg-info/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: wsbuilder
|
|
3
|
-
Version: 0.2.
|
|
4
|
-
Summary: Framework ligero HTTP + WebSocket
|
|
3
|
+
Version: 0.2.7
|
|
4
|
+
Summary: Framework ligero HTTP + WebSocket.
|
|
5
5
|
Author: wsbuilder Authors
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
Keywords: websocket,http,framework,server,python
|
|
@@ -16,7 +16,7 @@ Dynamic: license-file
|
|
|
16
16
|
|
|
17
17
|
# wsbuilder
|
|
18
18
|
|
|
19
|
-
`wsbuilder` es un paquete Python
|
|
19
|
+
`wsbuilder` es un paquete Python para construir servidores HTTP + WebSocket sin dependencias externas.
|
|
20
20
|
|
|
21
21
|
Lightweight Python HTTP + WebSocket framework for building real-time APIs and custom servers.
|
|
22
22
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# wsbuilder
|
|
2
2
|
|
|
3
|
-
`wsbuilder` es un paquete Python
|
|
3
|
+
`wsbuilder` es un paquete Python para construir servidores HTTP + WebSocket sin dependencias externas.
|
|
4
4
|
|
|
5
5
|
Lightweight Python HTTP + WebSocket framework for building real-time APIs and custom servers.
|
|
6
6
|
|
|
@@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "wsbuilder"
|
|
7
|
-
version = "0.2.
|
|
8
|
-
description = "Framework ligero HTTP + WebSocket
|
|
7
|
+
version = "0.2.7"
|
|
8
|
+
description = "Framework ligero HTTP + WebSocket."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.11"
|
|
11
11
|
license = "MIT"
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"""wsbuilder: mini framework HTTP + WebSocket
|
|
1
|
+
"""wsbuilder: mini framework HTTP + WebSocket."""
|
|
2
2
|
|
|
3
3
|
from .framework import (
|
|
4
4
|
App,
|
|
@@ -12,7 +12,7 @@ from .framework import (
|
|
|
12
12
|
parse_query_string,
|
|
13
13
|
)
|
|
14
14
|
|
|
15
|
-
__version__ = "0.2.
|
|
15
|
+
__version__ = "0.2.7"
|
|
16
16
|
__all__ = [
|
|
17
17
|
"App",
|
|
18
18
|
"HTTPServer",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: wsbuilder
|
|
3
|
-
Version: 0.2.
|
|
4
|
-
Summary: Framework ligero HTTP + WebSocket
|
|
3
|
+
Version: 0.2.7
|
|
4
|
+
Summary: Framework ligero HTTP + WebSocket.
|
|
5
5
|
Author: wsbuilder Authors
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
Keywords: websocket,http,framework,server,python
|
|
@@ -16,7 +16,7 @@ Dynamic: license-file
|
|
|
16
16
|
|
|
17
17
|
# wsbuilder
|
|
18
18
|
|
|
19
|
-
`wsbuilder` es un paquete Python
|
|
19
|
+
`wsbuilder` es un paquete Python para construir servidores HTTP + WebSocket sin dependencias externas.
|
|
20
20
|
|
|
21
21
|
Lightweight Python HTTP + WebSocket framework for building real-time APIs and custom servers.
|
|
22
22
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|