multiplayerlib 0.0.2__tar.gz → 0.0.2.post2__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.
- {multiplayerlib-0.0.2/src/multiplayerlib.egg-info → multiplayerlib-0.0.2.post2}/PKG-INFO +1 -12
- {multiplayerlib-0.0.2 → multiplayerlib-0.0.2.post2}/README.md +0 -11
- {multiplayerlib-0.0.2 → multiplayerlib-0.0.2.post2}/pyproject.toml +1 -1
- {multiplayerlib-0.0.2 → multiplayerlib-0.0.2.post2/src/multiplayerlib.egg-info}/PKG-INFO +1 -12
- {multiplayerlib-0.0.2 → multiplayerlib-0.0.2.post2}/LICENSE +0 -0
- {multiplayerlib-0.0.2 → multiplayerlib-0.0.2.post2}/setup.cfg +0 -0
- {multiplayerlib-0.0.2 → multiplayerlib-0.0.2.post2}/src/multiplayerlib/EncryptionManager.py +0 -0
- {multiplayerlib-0.0.2 → multiplayerlib-0.0.2.post2}/src/multiplayerlib/NetworkConstants.py +0 -0
- {multiplayerlib-0.0.2 → multiplayerlib-0.0.2.post2}/src/multiplayerlib/NetworkLib.py +0 -0
- {multiplayerlib-0.0.2 → multiplayerlib-0.0.2.post2}/src/multiplayerlib/__init__.py +0 -0
- {multiplayerlib-0.0.2 → multiplayerlib-0.0.2.post2}/src/multiplayerlib.egg-info/SOURCES.txt +0 -0
- {multiplayerlib-0.0.2 → multiplayerlib-0.0.2.post2}/src/multiplayerlib.egg-info/dependency_links.txt +0 -0
- {multiplayerlib-0.0.2 → multiplayerlib-0.0.2.post2}/src/multiplayerlib.egg-info/requires.txt +0 -0
- {multiplayerlib-0.0.2 → multiplayerlib-0.0.2.post2}/src/multiplayerlib.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: multiplayerlib
|
|
3
|
-
Version: 0.0.2
|
|
3
|
+
Version: 0.0.2.post2
|
|
4
4
|
Summary: MultiplayerLib - A lightweight Python multiplayer networking library
|
|
5
5
|
Author: griffingreat1
|
|
6
6
|
Requires-Python: >=3.10
|
|
@@ -56,7 +56,6 @@ run the install command to install the package
|
|
|
56
56
|
### Host (Server)
|
|
57
57
|
|
|
58
58
|
```
|
|
59
|
-
py
|
|
60
59
|
mgr = NetworkManager(
|
|
61
60
|
is_host=True,
|
|
62
61
|
base_port=5000,
|
|
@@ -211,16 +210,6 @@ Common patterns used in games:
|
|
|
211
210
|
|
|
212
211
|
---
|
|
213
212
|
|
|
214
|
-
## Important Constants
|
|
215
|
-
|
|
216
|
-
Defined in `NetworkConstants.py`:
|
|
217
|
-
|
|
218
|
-
- `BUFFER_SIZE = 4096`
|
|
219
|
-
- `DEFAULT_PORT = 5000`
|
|
220
|
-
- `POSITIONUPDATEINTERVAL = 1/30`
|
|
221
|
-
- `DEFAULT_KEY`, `DEFAULT_SALT`
|
|
222
|
-
|
|
223
|
-
---
|
|
224
213
|
|
|
225
214
|
## Troubleshooting & Tips
|
|
226
215
|
|
|
@@ -44,7 +44,6 @@ run the install command to install the package
|
|
|
44
44
|
### Host (Server)
|
|
45
45
|
|
|
46
46
|
```
|
|
47
|
-
py
|
|
48
47
|
mgr = NetworkManager(
|
|
49
48
|
is_host=True,
|
|
50
49
|
base_port=5000,
|
|
@@ -199,16 +198,6 @@ Common patterns used in games:
|
|
|
199
198
|
|
|
200
199
|
---
|
|
201
200
|
|
|
202
|
-
## Important Constants
|
|
203
|
-
|
|
204
|
-
Defined in `NetworkConstants.py`:
|
|
205
|
-
|
|
206
|
-
- `BUFFER_SIZE = 4096`
|
|
207
|
-
- `DEFAULT_PORT = 5000`
|
|
208
|
-
- `POSITIONUPDATEINTERVAL = 1/30`
|
|
209
|
-
- `DEFAULT_KEY`, `DEFAULT_SALT`
|
|
210
|
-
|
|
211
|
-
---
|
|
212
201
|
|
|
213
202
|
## Troubleshooting & Tips
|
|
214
203
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: multiplayerlib
|
|
3
|
-
Version: 0.0.2
|
|
3
|
+
Version: 0.0.2.post2
|
|
4
4
|
Summary: MultiplayerLib - A lightweight Python multiplayer networking library
|
|
5
5
|
Author: griffingreat1
|
|
6
6
|
Requires-Python: >=3.10
|
|
@@ -56,7 +56,6 @@ run the install command to install the package
|
|
|
56
56
|
### Host (Server)
|
|
57
57
|
|
|
58
58
|
```
|
|
59
|
-
py
|
|
60
59
|
mgr = NetworkManager(
|
|
61
60
|
is_host=True,
|
|
62
61
|
base_port=5000,
|
|
@@ -211,16 +210,6 @@ Common patterns used in games:
|
|
|
211
210
|
|
|
212
211
|
---
|
|
213
212
|
|
|
214
|
-
## Important Constants
|
|
215
|
-
|
|
216
|
-
Defined in `NetworkConstants.py`:
|
|
217
|
-
|
|
218
|
-
- `BUFFER_SIZE = 4096`
|
|
219
|
-
- `DEFAULT_PORT = 5000`
|
|
220
|
-
- `POSITIONUPDATEINTERVAL = 1/30`
|
|
221
|
-
- `DEFAULT_KEY`, `DEFAULT_SALT`
|
|
222
|
-
|
|
223
|
-
---
|
|
224
213
|
|
|
225
214
|
## Troubleshooting & Tips
|
|
226
215
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{multiplayerlib-0.0.2 → multiplayerlib-0.0.2.post2}/src/multiplayerlib.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{multiplayerlib-0.0.2 → multiplayerlib-0.0.2.post2}/src/multiplayerlib.egg-info/requires.txt
RENAMED
|
File without changes
|
{multiplayerlib-0.0.2 → multiplayerlib-0.0.2.post2}/src/multiplayerlib.egg-info/top_level.txt
RENAMED
|
File without changes
|