sprocket-boxcars-py 0.3.6__cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

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.
@@ -0,0 +1,5 @@
1
+ from .sprocket_boxcars_py import *
2
+
3
+ __doc__ = sprocket_boxcars_py.__doc__
4
+ if hasattr(sprocket_boxcars_py, "__all__"):
5
+ __all__ = sprocket_boxcars_py.__all__
@@ -0,0 +1,53 @@
1
+ Metadata-Version: 2.4
2
+ Name: sprocket-boxcars-py
3
+ Version: 0.3.6
4
+ Classifier: Programming Language :: Rust
5
+ Classifier: Programming Language :: Python :: Implementation :: CPython
6
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
7
+ Classifier: License :: OSI Approved :: MIT License
8
+ Classifier: Development Status :: 4 - Beta
9
+ License-File: LICENSE
10
+ Summary: Python bindings for the Boxcars Rocket League replay parser
11
+ Requires-Python: >=3.7
12
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
13
+
14
+ # Boxcars-py
15
+
16
+ Python bindings for the [Boxcars](https://github.com/nickbabcock/boxcars) Rocket
17
+ League replay parser. This is a fork of [SaltieRL's
18
+ package](https://github.com/SaltieRL/boxcars-py) which sadly seems to no longer
19
+ be maintained.
20
+
21
+ ## Installation
22
+
23
+ Only tested on linux.
24
+ You have to compile it yourself if you are using Windows.
25
+
26
+ ```
27
+ pip install sprocket-boxcars-py
28
+ ```
29
+
30
+ ## Usage
31
+
32
+ ```py
33
+ from boxcars_py import parse_replay
34
+
35
+ with open("your_replay.replay", "rb") as f:
36
+ buf = f.read()
37
+ f.close()
38
+
39
+ replay = parse_replay(buf)
40
+ # Use the parsed replay here
41
+ ```
42
+
43
+ ## Building from source
44
+
45
+ __Requirements__
46
+ - Rust.
47
+ - `maturin`
48
+
49
+ ```
50
+ maturin develop
51
+ maturin publish
52
+ ```
53
+
@@ -0,0 +1,6 @@
1
+ sprocket_boxcars_py-0.3.6.dist-info/METADATA,sha256=zBQ9kO7R1RVy5C57FNtJwg4Ujo4axqURnTEZmIxC324,1201
2
+ sprocket_boxcars_py-0.3.6.dist-info/WHEEL,sha256=NtWItX7O4XlugYspvYXY0rBMRUgcQDQ3Qs3ZTbmzabk,149
3
+ sprocket_boxcars_py-0.3.6.dist-info/licenses/LICENSE,sha256=GucYKY4RWm0K16-SiULPyK1cVbzPhp-VvmxjUU1ltLU,1055
4
+ sprocket_boxcars_py/__init__.py,sha256=S3uMg34M40vzEnFIPdqRQN4syRF2I0qEQAMhH40rOFw,159
5
+ sprocket_boxcars_py/sprocket_boxcars_py.cpython-311-aarch64-linux-gnu.so,sha256=HDzZMVZ2H4FogWAWjUlJ3jxChJ1140nSDTIU8fuNZPY,1344344
6
+ sprocket_boxcars_py-0.3.6.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: maturin (1.10.2)
3
+ Root-Is-Purelib: false
4
+ Tag: cp311-cp311-manylinux_2_17_aarch64
5
+ Tag: cp311-cp311-manylinux2014_aarch64
@@ -0,0 +1,19 @@
1
+ Copyright (c) 2023 Jake Bailey
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ SOFTWARE.