multiplayerlib 0.0.2.post1__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.post1/src/multiplayerlib.egg-info → multiplayerlib-0.0.2.post2}/PKG-INFO +1 -11
- {multiplayerlib-0.0.2.post1 → multiplayerlib-0.0.2.post2}/README.md +0 -10
- {multiplayerlib-0.0.2.post1 → multiplayerlib-0.0.2.post2}/pyproject.toml +1 -1
- {multiplayerlib-0.0.2.post1 → multiplayerlib-0.0.2.post2/src/multiplayerlib.egg-info}/PKG-INFO +1 -11
- {multiplayerlib-0.0.2.post1 → multiplayerlib-0.0.2.post2}/LICENSE +0 -0
- {multiplayerlib-0.0.2.post1 → multiplayerlib-0.0.2.post2}/setup.cfg +0 -0
- {multiplayerlib-0.0.2.post1 → multiplayerlib-0.0.2.post2}/src/multiplayerlib/EncryptionManager.py +0 -0
- {multiplayerlib-0.0.2.post1 → multiplayerlib-0.0.2.post2}/src/multiplayerlib/NetworkConstants.py +0 -0
- {multiplayerlib-0.0.2.post1 → multiplayerlib-0.0.2.post2}/src/multiplayerlib/NetworkLib.py +0 -0
- {multiplayerlib-0.0.2.post1 → multiplayerlib-0.0.2.post2}/src/multiplayerlib/__init__.py +0 -0
- {multiplayerlib-0.0.2.post1 → multiplayerlib-0.0.2.post2}/src/multiplayerlib.egg-info/SOURCES.txt +0 -0
- {multiplayerlib-0.0.2.post1 → multiplayerlib-0.0.2.post2}/src/multiplayerlib.egg-info/dependency_links.txt +0 -0
- {multiplayerlib-0.0.2.post1 → multiplayerlib-0.0.2.post2}/src/multiplayerlib.egg-info/requires.txt +0 -0
- {multiplayerlib-0.0.2.post1 → multiplayerlib-0.0.2.post2}/src/multiplayerlib.egg-info/top_level.txt +0 -0
{multiplayerlib-0.0.2.post1/src/multiplayerlib.egg-info → multiplayerlib-0.0.2.post2}/PKG-INFO
RENAMED
|
@@ -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
|
|
@@ -210,16 +210,6 @@ Common patterns used in games:
|
|
|
210
210
|
|
|
211
211
|
---
|
|
212
212
|
|
|
213
|
-
## Important Constants
|
|
214
|
-
|
|
215
|
-
Defined in `NetworkConstants.py`:
|
|
216
|
-
|
|
217
|
-
- `BUFFER_SIZE = 4096`
|
|
218
|
-
- `DEFAULT_PORT = 5000`
|
|
219
|
-
- `POSITIONUPDATEINTERVAL = 1/30`
|
|
220
|
-
- `DEFAULT_KEY`, `DEFAULT_SALT`
|
|
221
|
-
|
|
222
|
-
---
|
|
223
213
|
|
|
224
214
|
## Troubleshooting & Tips
|
|
225
215
|
|
|
@@ -198,16 +198,6 @@ Common patterns used in games:
|
|
|
198
198
|
|
|
199
199
|
---
|
|
200
200
|
|
|
201
|
-
## Important Constants
|
|
202
|
-
|
|
203
|
-
Defined in `NetworkConstants.py`:
|
|
204
|
-
|
|
205
|
-
- `BUFFER_SIZE = 4096`
|
|
206
|
-
- `DEFAULT_PORT = 5000`
|
|
207
|
-
- `POSITIONUPDATEINTERVAL = 1/30`
|
|
208
|
-
- `DEFAULT_KEY`, `DEFAULT_SALT`
|
|
209
|
-
|
|
210
|
-
---
|
|
211
201
|
|
|
212
202
|
## Troubleshooting & Tips
|
|
213
203
|
|
{multiplayerlib-0.0.2.post1 → multiplayerlib-0.0.2.post2/src/multiplayerlib.egg-info}/PKG-INFO
RENAMED
|
@@ -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
|
|
@@ -210,16 +210,6 @@ Common patterns used in games:
|
|
|
210
210
|
|
|
211
211
|
---
|
|
212
212
|
|
|
213
|
-
## Important Constants
|
|
214
|
-
|
|
215
|
-
Defined in `NetworkConstants.py`:
|
|
216
|
-
|
|
217
|
-
- `BUFFER_SIZE = 4096`
|
|
218
|
-
- `DEFAULT_PORT = 5000`
|
|
219
|
-
- `POSITIONUPDATEINTERVAL = 1/30`
|
|
220
|
-
- `DEFAULT_KEY`, `DEFAULT_SALT`
|
|
221
|
-
|
|
222
|
-
---
|
|
223
213
|
|
|
224
214
|
## Troubleshooting & Tips
|
|
225
215
|
|
|
File without changes
|
|
File without changes
|
{multiplayerlib-0.0.2.post1 → multiplayerlib-0.0.2.post2}/src/multiplayerlib/EncryptionManager.py
RENAMED
|
File without changes
|
{multiplayerlib-0.0.2.post1 → multiplayerlib-0.0.2.post2}/src/multiplayerlib/NetworkConstants.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{multiplayerlib-0.0.2.post1 → multiplayerlib-0.0.2.post2}/src/multiplayerlib.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{multiplayerlib-0.0.2.post1 → multiplayerlib-0.0.2.post2}/src/multiplayerlib.egg-info/requires.txt
RENAMED
|
File without changes
|
{multiplayerlib-0.0.2.post1 → multiplayerlib-0.0.2.post2}/src/multiplayerlib.egg-info/top_level.txt
RENAMED
|
File without changes
|