A REAPER project file (RPP) parser using WDL implementation
Project description
RPPXML
A Python library for efficiently parsing and manipulating REAPER project files (.rpp) and related formats like RTrackTemplate and RfxChain.
Features
- Implemented in C++ for high performance
- Parse RPP files into Python objects
- Manipulate RPP content programmatically
- Write modified content back to RPP files
- Support .rpp, .rpp-bak, .RfxChain, .RTrackTemplate, and more
- Type hints for better IDE support
Installation
pip install rppxml
Requirements
- Python 3.10 or later
Usage
import rppxml
from rppxml import RPPXML
# parse from file
project: RPPXML = rppxml.load("project.rpp")
# parse from string
content: str = """<REAPER_PROJECT 0.1 "6.75/linux-x86_64" 1681651369
<TRACK
NAME "Track 1"
>
>
"""
project: RPPXML = rppxml.loads(content)
# access data
print(project.params) # [0.1, "6.75/linux-x86_64", 1681651369]
track: RPPXML = project.children[0]
print(track.name) # "TRACK"
print(track.params) # []
print(track.children) # [['NAME', 'Track 1']]
# create new content
track: RPPXML = RPPXML("TRACK", params=[], children=[
["NAME", "New Track"]
])
# write to string
rpp_str: str = rppxml.dumps(track)
# write to file
rppxml.dump(track, "output.rpp")
Building from Source
Requires C++ compiler with C++14 support.
- Clone the repository with submodules:
git clone --recursive https://github.com/IcEarthlight/rppxml.git
cd rppxml
- Install development dependencies:
pip install -r requirements.txt
- Build with setuptools:
python setup.py bdist_wheel
Testing Using VSCode
Copy .vscode/project-settings.json to .vscode/settings.json and go to the Testing view to run tests or directly run python -m pytest tests/test_rppxml.py at the project root directory.
Comparative Advantages
| Comparision Content | RPPXML | Perlence/rpp |
|---|---|---|
| Implementation | mainly in C++ with Cockos WDL file handling | mainly in Python and uses PLY as a parser framework |
| Load from a 14.8MB RPP File | 1.48s ± 41.8ms (13x faster) | 19.1s ± 1.44s |
| Support Format | .rpp, .rpp-bak, .RfxChain, .RTrackTemplate |
.rpp, .RTrackTemplate only |
| Last Update | 2025-02-14 | 2023-04-30 |
Contributing
- Fork the repository
- Create your feature branch
- Make your changes
- Run the tests
- Submit a pull request
Acknowledgments
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file rppxml-0.1.4.tar.gz.
File metadata
- Download URL: rppxml-0.1.4.tar.gz
- Upload date:
- Size: 17.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
873066b3e45d94a1f2c6f563e9cf0fbadcd5bd639c150929951a92bdde5aa163
|
|
| MD5 |
bd2665790f374c8f1b8e589a36099b69
|
|
| BLAKE2b-256 |
4f321bf796f431373109ed68611660e63c97b2b02e6812a52ae6c2652b8f36dd
|
File details
Details for the file rppxml-0.1.4-pp310-pypy310_pp73-win_amd64.whl.
File metadata
- Download URL: rppxml-0.1.4-pp310-pypy310_pp73-win_amd64.whl
- Upload date:
- Size: 307.0 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1dee07c4b9d87b9076d81ce635bf699c518492056c0d8142a3d648c87fa4b425
|
|
| MD5 |
ff75d52c4ecbca661d01a8e225075d47
|
|
| BLAKE2b-256 |
61f934f604daf86dc0348cd69cc57028ea7d80fb731d8e24c74a84a445fd74ea
|
File details
Details for the file rppxml-0.1.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rppxml-0.1.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 159.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18df3e9282e33dc438d57e50ce1caf6ca94cf696438d442997b6b377b929ff1c
|
|
| MD5 |
57cea1969f60a32af05b1c26301cb464
|
|
| BLAKE2b-256 |
1cf46d42a862a8a8253905f7819e8d710d713fc925009031bd88035a53b1c622
|
File details
Details for the file rppxml-0.1.4-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: rppxml-0.1.4-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 298.9 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0707d2553c0e4f6642fac632cf986eaf9f73610ec42178f3400ee290cb5a5f1
|
|
| MD5 |
5de84b4c427e69cac1387dfd078f44ce
|
|
| BLAKE2b-256 |
1f24d449e82c69d6d9dc9f6967b03121a3d2818197710dbe9b6381b0e476d37e
|
File details
Details for the file rppxml-0.1.4-cp313-cp313-win32.whl.
File metadata
- Download URL: rppxml-0.1.4-cp313-cp313-win32.whl
- Upload date:
- Size: 258.8 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
472cb193a008e418ee624b21fce92beb7fb0ab706caec6c3315b15498f5fb9e6
|
|
| MD5 |
1c0cd36a3fa3f97705dbfad881ba0b06
|
|
| BLAKE2b-256 |
0fd7a2999fa729376a686b3ed4af570363c7ad3014ac5d495411ac3963520ed8
|
File details
Details for the file rppxml-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rppxml-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
adabbbc45ab46eaad3fe72b42c6d548efa9f098bd6f9d8a6cb438a446fb35efc
|
|
| MD5 |
c38c2215c7536f24c8db631182399eb1
|
|
| BLAKE2b-256 |
897cee4e7860648333de8114c13e070c9c44f0d0f7c34fa13a2e6932db4c2839
|
File details
Details for the file rppxml-0.1.4-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: rppxml-0.1.4-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d996e5900795544d0f117451470a5a2d490b78a02c4a31b91b177f1030f487e2
|
|
| MD5 |
02d991ee03c7bf8f5bba732c13d70963
|
|
| BLAKE2b-256 |
dde10bf59b007837a52e6dd65cddc7535cc02e68a30d4ef9d8b8fffb76686adf
|
File details
Details for the file rppxml-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rppxml-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
38561321bef79c7fc003f13a02ebca569dc773ac478ff6cdf550c46aa8013305
|
|
| MD5 |
e4b3d2a5db270cb224431166eaec752c
|
|
| BLAKE2b-256 |
80d64f26d89ea697339af22efc849fdefdeb84589466e37e9103e949bae3bc78
|
File details
Details for the file rppxml-0.1.4-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: rppxml-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 129.8 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
398df20fa37bc2941ea72c106d5801741f0a5eb0834d5cfeb4d89d5751a92455
|
|
| MD5 |
d954f0222c7a75efa684759a3f2510d5
|
|
| BLAKE2b-256 |
1e9ed2955e0c9bcdeff4aea973d3ea39271bb2df6d45b240ef1c5b5fe77f5a10
|
File details
Details for the file rppxml-0.1.4-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: rppxml-0.1.4-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 298.9 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36ad4176603ea770053aa52ecc414c5eb8b964ec6e8a6eb4411764aed06c3cf9
|
|
| MD5 |
bb208bbca2f861a40165d19ca7a18c19
|
|
| BLAKE2b-256 |
4011dd80c3b90f746c28550a31841b51f3159c5620c37df7f8eb285bcd674f66
|
File details
Details for the file rppxml-0.1.4-cp312-cp312-win32.whl.
File metadata
- Download URL: rppxml-0.1.4-cp312-cp312-win32.whl
- Upload date:
- Size: 258.8 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a41abe59ccb56be81a2395c07e54fdc7cab1faa9b2bd93f9ce5edd622981d2f9
|
|
| MD5 |
ff29e310c68a33f4b429ff113c3fdb3e
|
|
| BLAKE2b-256 |
61484b33943625e286fbcd62e3fbb532c54d95445558952acef9d5a2298f89d8
|
File details
Details for the file rppxml-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rppxml-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c11fd9e9792ef41047bff9a97dbefda2d5a7db162db6f4f1fbf75be514d3fb82
|
|
| MD5 |
9a9d35cd97429cfc62de55367f83ecd4
|
|
| BLAKE2b-256 |
d5b7997e37797155033b6982746db8e18982239613958471f6a2b6e0dde49eb1
|
File details
Details for the file rppxml-0.1.4-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: rppxml-0.1.4-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
069edc980a4e3fe39ff6307328d1ed0797b0246011a56743191121d0c9b6267b
|
|
| MD5 |
767bb21a032db19fee94e47ecc776e2a
|
|
| BLAKE2b-256 |
d255383cea224718ffcd919e9d6ae908e8589480ed9addf595ad1d6479a0ecd1
|
File details
Details for the file rppxml-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rppxml-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
78aced37002439e7290399e5018e4975c24fde0b07894ae9b6844ccedddbe736
|
|
| MD5 |
b1f042aade669343bc966112b56b3c04
|
|
| BLAKE2b-256 |
8a82da27d58a1fe67c1379cd9e87beb47e972f3031f9db7910808146af6ec181
|
File details
Details for the file rppxml-0.1.4-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: rppxml-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 129.7 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9ce9a1280e5b14fb04baf83a9475ff8f00d9e2a9da88518a1541f773ebc3976
|
|
| MD5 |
ba438d3dd53ee2c48e9f0b3715dbc4f7
|
|
| BLAKE2b-256 |
57ef360f9d02a49869653f18ab2f4a1b7646bb3e5359c588bc69d7b488f5b5ca
|
File details
Details for the file rppxml-0.1.4-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: rppxml-0.1.4-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 298.9 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
77effdfd38cac0fa4f4f353c84b98a96a4b46fb160e177c8aae442d66fee6509
|
|
| MD5 |
9712f4d5b1fcd890d79332ca28c71278
|
|
| BLAKE2b-256 |
944cb2f8524be89e8117301c5c8e112416568505c3b0ed243a5e38a4c23e0765
|
File details
Details for the file rppxml-0.1.4-cp311-cp311-win32.whl.
File metadata
- Download URL: rppxml-0.1.4-cp311-cp311-win32.whl
- Upload date:
- Size: 258.8 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae462e117602e0ee5fa768581b919985be4627e1c7e8b9869e9409e1c9a39f6e
|
|
| MD5 |
558db4feacd69a7de01089a0bd393eb1
|
|
| BLAKE2b-256 |
c189035f420cbd8d0cc3addb97bc39b9583172ea318ed0edb16e0228e5b36844
|
File details
Details for the file rppxml-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rppxml-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4b24fc8bfd962eb76ce23d21dad1cafeefd0bb4f755139d25e581bdd51eb2d4
|
|
| MD5 |
99e86318e6d321956e13fdfa8eaf882e
|
|
| BLAKE2b-256 |
46bb137e6f5a2bf68d80643bcb55e44efc9348f8657c4fb5c555247d6387935b
|
File details
Details for the file rppxml-0.1.4-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: rppxml-0.1.4-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f02a751171bac6f21eb5abab0010d9cacaac4001c12f1ee5b956abeebd3ca69
|
|
| MD5 |
181ec2f06ca1086728fb8d72f217f4a7
|
|
| BLAKE2b-256 |
32c1a868873aab94477f21973a36139bb724d29bcb6f48492de76cb713bc6d42
|
File details
Details for the file rppxml-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rppxml-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db6a580ca0b7aea5ea2c7bbed7848261769b8db7ea315b639342f4051b1f2871
|
|
| MD5 |
f2bcaa7c981b385dbe31ceb019be1db1
|
|
| BLAKE2b-256 |
c292bb9930edb4e9c4fbea39da20b4c7af827c5dbd3bf79cf564cba4e72c8708
|
File details
Details for the file rppxml-0.1.4-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: rppxml-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 129.2 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4fbe19519281a7a44ef6609cfd5886d8213c1c96a5460e91a0586aa837da9cf1
|
|
| MD5 |
e8f4e460e78f6be5be78ecbe65bbc46e
|
|
| BLAKE2b-256 |
da0018f6055de5babb9d5f60ce2bf69f3fad4ba17b7d68b788121476fb57da45
|
File details
Details for the file rppxml-0.1.4-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: rppxml-0.1.4-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 297.6 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85d6fe08c2fbce11e36a89f2ebb4ce070a3850fa4c9e27dbd7e19f56e7a7400a
|
|
| MD5 |
9ced547aaf2b3f6549caae40b8514282
|
|
| BLAKE2b-256 |
2882d12ed928c82cf279bc209d9fd54ae22fb2a7edf1c7cee630ffc1fb208334
|
File details
Details for the file rppxml-0.1.4-cp310-cp310-win32.whl.
File metadata
- Download URL: rppxml-0.1.4-cp310-cp310-win32.whl
- Upload date:
- Size: 257.7 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
07eb8be7a05202fac68018b2c1861a4da0751504e7bf1daf01dbd58b9737916a
|
|
| MD5 |
ba99674cb49187c8966bf57f35aa0ea9
|
|
| BLAKE2b-256 |
bb9dcf0a404a6e6fbd761c27718ae78e2906983caaf7ce2db9b701d50464dbe4
|
File details
Details for the file rppxml-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rppxml-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec33ecef2d348f4fd9a8b0f4d5f0612c3f73fa1eb6d80169d875678c0bafe289
|
|
| MD5 |
f79c0fd54aae325c2f02f59cb78b7ac7
|
|
| BLAKE2b-256 |
fcbeaeb04184558193b1857b17f56720f1116f3e982c451e9286b8b4fe89f7b2
|
File details
Details for the file rppxml-0.1.4-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: rppxml-0.1.4-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c0bfdc318080e6a6babf3fa4f44a2a646a64097debc0fe6d74d799d2e9b432b
|
|
| MD5 |
4f424534025e1667c8dad88ce30a92ff
|
|
| BLAKE2b-256 |
849bd9164fe4da10ba18e965b68854afaf529b399116c733b5e6fec22b145b23
|
File details
Details for the file rppxml-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rppxml-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f4c17dd0b0708219e6a29af34ee09a15bb71d301e255f85cff2227946a3799e7
|
|
| MD5 |
b692e5c9a090af903275c46a2a0ae695
|
|
| BLAKE2b-256 |
6a8a72900ef5ade108f208534245db82c2967b638474d081ae120c6ceb05c9b8
|
File details
Details for the file rppxml-0.1.4-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: rppxml-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 127.5 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b39b95746e1427b6334c23dbe81079b7077cf57514ff8eea895d2a754d0f2b3
|
|
| MD5 |
9992c2fd489e35555c4068db2c8ccae3
|
|
| BLAKE2b-256 |
3226ed4cc09a485cef40fd0e23b16fd210eb0596850166941a6b17d7a73e4327
|