Python package implemented in Rust to decode MOSS readout data
Project description
MOSS Decoder
Python package implemented in Rust for high-performance decoding of readout data from the MOSS chip (Stitched Monolithic Pixel Sensor prototype).
- MOSS Decoder
Installation
$ pip install moss-decoder
Import in python and use for decoding raw data.
Example
import moss_decoder
moss_packet = moss_decoder.decode_from_file("path/to/raw_data.raw")
print(moss_packet[0])
# Unit ID: 6 Hits: 44
# [MossHit { region: 0, row: 3, column: 11 }, MossHit { region: 0, row: 18, column: 243 }, ...
print(moss_packet[0].hits[0])
# reg: 0 row: 3 col: 11
Features
See python types for the type information the package exposes to Python.
Two classes are provided: MossPacket
& MossHit
.
5 types of idempotent functions are provided
decode_event(arg: bytes) -> tuple[MossPacket, int]: ...
# allows decoding a single event from an iterable of bytes
Returns: the decoded MossPacket
and the index the unit frame trailer was found. Throws if no valid MossPacket
is found.
decode_all_events(arg: bytes) -> tuple[list[MossPacket], int]: ...
# returns as many `MossPacket`s as can be decoded from the bytes iterable.
# This is much more effecient than calling `decode_event` multiple times.
Returns: A list of MossPacket
s and the index of the last observed unit frame trailer. Throws if no valid MossPacket
s are found or a protocol error is encountered.
decode_from_file(arg: str | Path) -> list[MossPacket]: ...
# takes a `Path` and returns as many `MossPacket` as can be decoded from file.
# This is the most effecient way of decoding data from a file.
Returns: A list of MossPacket
s. Throws if the file is not found, no valid MossPacket
s are found, or a protocol error is encountered.
decode_n_events(
bytes: bytes,
take: int,
skip: Optional[int] = None,
prepend_buffer: Optional[bytes] = None,
) -> tuple[list[MossPacket], int]: ...
# Decode N events from bytes
# Optionally provide either (not both):
# - Skip M events before decoding N events
# - Prepend a buffer before decoding N events.
Returns: A list of MossPacket
s. Throws if the file is not found, no valid MossPacket
s are found, or a protocol error is encountered.
A BytesWarning
exception is thrown if the end of the bytes
is reached while decoding a packet (no trailer is found)
def skip_n_take_all(
bytes: bytes, skip: int = None
) -> tuple[list[MossPacket], Optional[bytes]]: ...
# Decode all events, optionally skip N events first.
# return all decoded events and the remaining bytes after decoding the last MossPacket
Returns: All decoded events and any remaining bytes after the last trailer seen.
Using decode_n_events
and skip_n_take_all
it is possible to continuously decode multiple files that potentially ends or starts with partial events.
MOSS event data packet protocol FSM
The a MOSS half-unit event data packet follows the states seen in the FSM below. The region header state is simplified here.
stateDiagram-v2
frame_header : Unit Frame Header
frame_trailer : Unit Frame Trailer
region_header : Region Header
data_0 : Data 0
data_1 : Data 1
data_2 : Data 2
idle : Idle
[*] --> frame_header
frame_header --> region_header
frame_header --> frame_trailer
region_header --> region_header
region_header --> frame_trailer
region_header --> DATA
state DATA {
direction LR
[*] --> data_0
data_0 --> data_1
data_1 --> data_2
data_2 --> data_0
data_2 --> [*]
}
DATA --> idle
DATA --> region_header
DATA --> frame_trailer
idle --> DATA
idle --> idle
idle --> frame_trailer
frame_trailer --> [*]
MOSS event data packet decoder FSM
The raw data is decoded using the following FSM.
The delimiter
is expected to be 0xFA
. The default Idle
value 0xFF
is also assumed.
stateDiagram-v2
direction LR
delimiter : Event Delimiter
frame_header : Unit Frame Header
frame_trailer : Unit Frame Trailer
[*] --> delimiter
delimiter --> EVENT
delimiter --> delimiter
state EVENT {
[*] --> frame_header
frame_header --> HITS
frame_header --> frame_trailer
state HITS {
[*] --> [*] : decode hits
}
HITS --> frame_trailer
frame_trailer --> [*]
}
The EVENT
state is reached by finding decoding a Unit Frame Header and then the decoder enters the HITS
substate which is depicted in the FSM in the next section.
Event packet hit decoder FSM
stateDiagram-v2
region_header0 : Region Header 0
region_header1 : Region Header 1
region_header2 : Region Header 2
region_header3 : Region Header 3
data_0 : Data 0
data_1 : Data 1
data_2 : Data 2
idle : Idle
[*] --> region_header0
region_header0 --> region_header1
region_header0 --> region_header2
region_header0 --> region_header3
region_header0 --> DATA
region_header0 --> [*]
DATA --> region_header1
region_header1 --> region_header2
region_header1 --> region_header3
region_header1 --> DATA
region_header1 --> [*]
DATA --> region_header2
region_header2 --> region_header3
region_header2 --> DATA
region_header2 --> [*]
DATA --> region_header3
region_header3 --> DATA
DATA --> [*]
region_header3 --> [*]
state DATA {
[*] --> data_0
data_0 --> data_1
data_1 --> data_2
data_2 --> data_0
data_2 --> idle
idle --> idle
idle --> [*]
idle --> data_0
data_2 --> [*]
}
Decoding hits using the FSM above leads to higher performance and assures correct decoding by validating the state transitions.
Running tests
Rust unit and integration tests can be executed with cargo test --no-default-features
.
The --no-default-features
flag has to be supplied to be able to run tests that links to Python types e.g. throwing Python exceptions, this is a temporary workaround see more.
Python integration tests can be run by running ìntegration.py
with Python.
Testing local changes
Testing against local changes in the Rust code requires first compiling and installing the wheel package, the tool maturin is used for this, you can look at the shell script performance_dev_py.sh for inspiration. If you have access to bash you can simply run the shell script performance_dev_py.sh which will compile and install it for you, but it will also run a little benchmark with hyperfine, if you are not interested in the benchmark, just don't run the hyperfine command in the end of the measure_performance_dev
function.
Motivation & Purpose
Decoding in native Python is slow and the MOSS verification team at CERN got to a point where we needed more performance.
Earliest version of a Rust package gave massive improvements as shown in the benchmark below.
Decoding 10 MB MOSS readout data with 100k event data packets and ~2.7 million hits. Performed on CentOS Stream 9 with Python 3.11
Command | Mean [s] | Min [s] | Max [s] | Relative |
---|---|---|---|---|
python moss_test/util/decoder_native_python.py |
36.319 ± 0.175 | 36.057 | 36.568 | 228.19 ± 2.70 |
python moss_test/util/decoder_rust_package.py |
0.159 ± 0.002 | 0.157 | 0.165 | 1.00 |
@CERN Gitlab installation for CentOS and similar distributions from local build
If you update the package source code and want to build and install without publishing and fetching from PyPI, you can follow these steps.
The .CERN-gitlab-ci.yml
file contains a build-centos
manual job which will build the MOSS decoder package from source and saves the package as an artifact.
- Start the job, download the artifacts.
- Unzip the artifacts and you will find a
wheels
package in/target/wheels/
with the.whl
extension - Run
python -m pip install <wheels package>.whl
- Confirm the installation with
python -m pip freeze | grep moss
, it should display something containingmoss_decoder @ file:<your-path-to-wheels-package>
Troubleshooting
if you get ERROR: Could not find a version that satisfies the requirement ...
make sure to add .whl
when performing step 3 above.
if you don't see the expected message at step 4, try running the installation command in step 3 with any or all of these options --upgrade --no-cache-dir --force-reinstall
.
Project details
Release history Release notifications | RSS feed
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
Hashes for moss_decoder-0.9.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8ee7a53b6e8ed73fe65c5baa7628c1fad6eaf2c064fec57fcd6ea8c9d6920193 |
|
MD5 | a9bc2c38dc88445bba061b25411f219f |
|
BLAKE2b-256 | 365dbf4695f8cb65fd8adb902d3add348f82e6099bf337bb20a5191fe5b309a1 |
Hashes for moss_decoder-0.9.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4e247d1bf46fbaaa04969474760e1905997958c1391334acf7342946d13f6e4a |
|
MD5 | 9e880e9f6402a13a905fcfe2353206ff |
|
BLAKE2b-256 | 1596b32b17f6467e59033952e6072004fac36d06237e51e6f763499be0bcc16f |
Hashes for moss_decoder-0.9.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f40d774580e520a7578cfc43321d6b7d39ce33e1a268f7bccb5117bbda115d6f |
|
MD5 | a1674a8b44c19d31ad315819ac4a5174 |
|
BLAKE2b-256 | 4a667a59e8d3b94bbd6d2d171304f271552d4a1b789c6d52b51be98a2a3a8595 |
Hashes for moss_decoder-0.9.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 211bd979b5e7a56bed7c1ba4afaba0f105e61f539ff0524c231a1d13cec8a147 |
|
MD5 | ff02a359cf340d347730129af776dfb9 |
|
BLAKE2b-256 | e5fc15c6a823a67101e3624f6d4be1d79b10e9a989b10485a05f5655af03add5 |
Hashes for moss_decoder-0.9.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a354f076336ba1b8d785414606da3cc6505e52feec09170959520e50a8b7d615 |
|
MD5 | 171d6445d05f874795827ba0aae0c86b |
|
BLAKE2b-256 | 8421d126c24c45e72c186b00cf425d0c30ec31fe693468dca4d3ad41e08af636 |
Hashes for moss_decoder-0.9.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f76ac169df1d9340e0dc57fc50c2901e1deda5726099e83eeee1152bb6337f6c |
|
MD5 | f1f13962f19c101579ce9328c06d13df |
|
BLAKE2b-256 | c30c11f408f63f28c9a240943db44a6b98ba8a73101825a758a5780b5256be0a |
Hashes for moss_decoder-0.9.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cefeda352d679c10e64c500103536f50ef9e6d38590ff0cb6e5ce5bb021aab96 |
|
MD5 | e78b7477d924724a769c9bb0bac5d371 |
|
BLAKE2b-256 | cc916373d9cb0dd8accb9966a3f4b4c0aeba39a767731df8b21dc0e4bd2a21ff |
Hashes for moss_decoder-0.9.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a3b02d180d5c5369e099ccc1f50c9e939c0a61e2b622b92b3e09e570f50d3de8 |
|
MD5 | 4c46d63d8bdf9ab6f046698d3e449a26 |
|
BLAKE2b-256 | 7b0b7c505b749664c9f75e9066abed76bce4109ddd8a2b9606a8ce3f794af32a |
Hashes for moss_decoder-0.9.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4b93257d3eb079d0d973a9041279cf8c71c068ba38b4a60dc908209d13a3db35 |
|
MD5 | 76f46c712d98dcab1716479dba7bf058 |
|
BLAKE2b-256 | 1c6b8912fe9a9193ef49d26446c3196be1369855769c03f0076f9b3cbc7be74e |
Hashes for moss_decoder-0.9.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 20848c52d00400e23f76b54fefa76ea52f75d59f46af19018a422a6b153f036c |
|
MD5 | 205d782d146f23e0a76351d284251ebc |
|
BLAKE2b-256 | 075456ec0d81a75d5dc023fa4abf09a2e4acb89dd4878328fae3f107f152f4a5 |
Hashes for moss_decoder-0.9.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ff702776a1e4478d8cb4a5531abf3e65fa2044b984d6b39120e724acacd9c645 |
|
MD5 | 8d6a482d7cce0221184ad9e7c8ee9567 |
|
BLAKE2b-256 | acc8a2aa18985a4ab57e2b1453f25b69d4d0bd287ee69ce3c77339c2ce029817 |
Hashes for moss_decoder-0.9.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 866534f4a35be46b19ba155e1fd4fa132a02d77a3c0fa68d2aea2e47321a6936 |
|
MD5 | 97da3986cf5d42052d57c5f65ae7f662 |
|
BLAKE2b-256 | 279adabb355e82afe07dce713a540b01facd88b1cc22944fc16565fe29854bfb |
Hashes for moss_decoder-0.9.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 65ab1d5fe2e6fd6f681c681e84459f5f9756a3cbf979d88ff930f58193d978dd |
|
MD5 | 0d1a00d44e439543e02118445fbeb742 |
|
BLAKE2b-256 | bdb738d259a20f6f85c55d129b676c0e517827e33bf287361c062ce23862b9c7 |
Hashes for moss_decoder-0.9.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2b6bb66417e7931ce2143fc254f061a396a32839fc1efbca5ba415e6b21ae93d |
|
MD5 | 0fe028957b9fdaa0838f5ef42ded563e |
|
BLAKE2b-256 | 552a1d386bf6aba30dedfe8a874538b953eb4fa9ec9e42e072dbb2d187a21e8e |
Hashes for moss_decoder-0.9.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 019162315f1857e5aceffd2083e8eeeda33d9287a346e8c8082a2cb266eb89bf |
|
MD5 | 9c15c9a0354ed1df5b58b43d13c33639 |
|
BLAKE2b-256 | c6b8fcc98019b3bfa5293821db45f5fda087bc65598564e8da3ee31c69d6b549 |
Hashes for moss_decoder-0.9.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 055f0d81dd795fed6b3b5c9b26e990611b40f8fb79c6dc4aa7d5bc1a7baf45c6 |
|
MD5 | 0f84d2ce418f1eb554f1e7f92287222c |
|
BLAKE2b-256 | 1247abdff10160000555f4d7dff9b77e1ccbde37440261b2cc096cc45146c851 |
Hashes for moss_decoder-0.9.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ff60186baa6a3c3b144f5b04682d1823b5fef85ccbd0838d20f605f0ff3fb764 |
|
MD5 | c0472441d10b7a100da54fb43c4ad9ff |
|
BLAKE2b-256 | e77c20f6a73c3b781fa21d18b0e3feb54fe413d56742ebd344072b0474d39d43 |
Hashes for moss_decoder-0.9.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5b2804561b2fd1a14b4b1a26a0120abb3739a0d1f28fdd1c16f08b625a626c38 |
|
MD5 | 176fbfe366f284b221814b1cab4283e9 |
|
BLAKE2b-256 | a8257e42e9e9b7020e191f50f7dd59de0401643633b59177333d05aed42dc835 |
Hashes for moss_decoder-0.9.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 99ba309f96b7b12c79625872875ef3a5862ac69bda14610b24d12336c3331f0c |
|
MD5 | 58c22ac28338b40efa6d5dca7b7a89ad |
|
BLAKE2b-256 | f846995192be7e674636e40b6f85dd67ef9dd62d47d95cae6b157798ce8bc44a |
Hashes for moss_decoder-0.9.0-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7ab5961bdf2d4fe930f952cc9d00ba5c01f41735fc0debfb4b43a56a4161d26f |
|
MD5 | cc0682497f9a07c788ac76086e4f8071 |
|
BLAKE2b-256 | 31584b04fb578fe9b1a99dbcc66398284c98090eb78bc4d15fb03fe8e175fdf3 |
Hashes for moss_decoder-0.9.0-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a01b8ffca42d34c2ea89a22819e6fb2c37f645184bcce80bc6a47f07681a75fc |
|
MD5 | b07b510526fd9c148c479a34d4c2675f |
|
BLAKE2b-256 | 442da8d025ecee8c338f3a1cdadb9305fb11a4c2447cfdd0581ce437f3453f00 |
Hashes for moss_decoder-0.9.0-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5c0464d7fce6db349deaa3c044f577222172217940efc34a3025cf439f282ff2 |
|
MD5 | ecd262424535191daf1ba38251a985e3 |
|
BLAKE2b-256 | b1e5d541858ce8bbc9bc985f03c5c79d232a7e485bfe00a0d9794d824d6e3792 |
Hashes for moss_decoder-0.9.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 270c256fa840f77a05b829e4ddaf9312517cff4a25afc316d17d8dea31b43e18 |
|
MD5 | 903222cfac719023eb2827d1c9bfe71a |
|
BLAKE2b-256 | 2685cde5b80b993c16827e72ec6c89a0f4cd5991f72efd1ebb6939a25c9725e7 |
Hashes for moss_decoder-0.9.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97bea3d38614e192da47de6fdee568431a355bde70a04c674d0f374b03aadbba |
|
MD5 | 8abecc3dba160106eb7421641fc8fb1a |
|
BLAKE2b-256 | 4ca4ca12a1dd9f0b54c85798b037822f28ed159d2e5ae6525eabc1fb3e93bb31 |
Hashes for moss_decoder-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 93445de5a490e546e941071c55ebf27200bd584b5607a34393fe25bb933b19bd |
|
MD5 | e76b7eb310bfbb0a15f2f8b44f93f79d |
|
BLAKE2b-256 | cda50e70894da3491ef814a3dfb7fe10845ec8a1891235e12000330383a0f76b |
Hashes for moss_decoder-0.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c810eb4990a2bf0662e9fdd617f32bd80d17982bda58566258c02bdc02fcb4de |
|
MD5 | 49ba6dcdbe7c56f693a3146c3c58879f |
|
BLAKE2b-256 | 491f8fcfde2cd7fb66939c8561ce9f840751b0714853a3ba77cb44f79e5d0540 |
Hashes for moss_decoder-0.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f32f5349c45d5cd849ef0033ae3b4b31290f5940a90799441154cf8c37166dbf |
|
MD5 | 2a4f0e8ad36df39b67b43a3d751883a2 |
|
BLAKE2b-256 | 113346c90b96e672f884c52926b73fc58b68dbd78d0c40384cbf310b1bf2f93e |
Hashes for moss_decoder-0.9.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97fd2611804d1f0f56e47f5326ef7cfd4a3aeeae4a9ae9854d38aa3e849fcccb |
|
MD5 | 6d5089ce1aafb630cdc1b52483a2fd25 |
|
BLAKE2b-256 | 465d409370ac031fb895be377a8e649e8c2908b23f7ff3e65d098b15d8f2c820 |
Hashes for moss_decoder-0.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d157a231136652b3d11da1f04dc7867343a3baa3742ebd059afcc03bbfa56db7 |
|
MD5 | 94af655ae0ee34906ceb1bad9db0a822 |
|
BLAKE2b-256 | 58680f96639c9cfb471e6ea0cb6be60be180dd0470f787678185342dd0789755 |
Hashes for moss_decoder-0.9.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 94e321e4267f970a29286f80e2b24be576a81d51b2eed93aec1f7da86cbe9cd6 |
|
MD5 | 8e29afa836ee2855c800e4179bcb1df6 |
|
BLAKE2b-256 | d57052151708831dc97ff6eeb7961259a81ff7ccaefe54542d1765fcde415292 |
Hashes for moss_decoder-0.9.0-cp311-none-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1493acf44cca3867a625eb2ac13129b13c0eb6536b96749117d4deaf149bc893 |
|
MD5 | 2061288cc71620dabdd43328c826b68a |
|
BLAKE2b-256 | ad04b85cb61906938694d9b936205f61a3b2ec964a247998b7011b4a1e639512 |
Hashes for moss_decoder-0.9.0-cp311-none-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ca283bd20df7222380326558c932783b63aa28373250a6f515d4f3682e1211ba |
|
MD5 | 2384fb95237ed172156056ab74f0d467 |
|
BLAKE2b-256 | 999a046ac11c850c394d62506f7c98c42dfc75095678de3784e0d3f8d746eb5d |
Hashes for moss_decoder-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f6d9c9eda1ca76cd6165bf0155c93c47c3a77b93a7f51b5db199c9c927c4dacf |
|
MD5 | 027f37d631c4a941f242dc9ace1ad762 |
|
BLAKE2b-256 | f9aef60e770e675733618216d7958a29989849c27df88fe92a5d2913063c3515 |
Hashes for moss_decoder-0.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a35a31cf17145daa1b8d4a024e9b2c90c072627988b91f9641b6d0d2d98ac7f |
|
MD5 | b7c665ea1de01c85f56b107a8fc49646 |
|
BLAKE2b-256 | 106f6902432d21798c76e3ef566f242b9bf504a79c313d584713fe18e5eacd58 |
Hashes for moss_decoder-0.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26b80767224d419af1bd118507f40fd3e2a71528718b13d19fc834e7af9af714 |
|
MD5 | 1dc3f5042c3f0eb28e4703026007bde5 |
|
BLAKE2b-256 | 3ea748e5f93f5720dc2e42395b86a265a1803a01e72518027cebaaf5f6683327 |
Hashes for moss_decoder-0.9.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bccacb8c702ca7c658777f84714f2d212fb9b326f676fcefb0b875670a3ec1aa |
|
MD5 | 14d521eb4c23dfcf7fc1ae538e805f3a |
|
BLAKE2b-256 | 402717bb4b151d4303d08a84302157071c35bd244729c55eb727b026985f1585 |
Hashes for moss_decoder-0.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 411b9aea29318f1c6bcdb62ae6f7cd44e5509e32394c81c33f0279afc1ceb64b |
|
MD5 | cc235889d92bd861a621490d421285ad |
|
BLAKE2b-256 | 7c9a86751acfa9becf531d66202867cb8c9ebe32594f210b6026180416f68995 |
Hashes for moss_decoder-0.9.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e262b1398399c5b7aaafd3af2f9c381074958a7b36f1669df1ec4ad3bfe4a6c7 |
|
MD5 | 20853ade6a8d3cc8c3a276b3eb4fb841 |
|
BLAKE2b-256 | 02ff1c0d25270b54ee63e9a078571ff9d57df04b0d937fce48ef7bee79590a62 |
Hashes for moss_decoder-0.9.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ec26f04155fb5a34eb235acd248cc712be032d39cc195401f021b6dda956f65 |
|
MD5 | 5f415a7abf286d10600ccefd8e39b4fb |
|
BLAKE2b-256 | c9efccbce7de3a557fc9e2c4067cbcfbd791764817fc844202fc1cc021f10556 |
Hashes for moss_decoder-0.9.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cb9ac46f93f07c091a46eb5c4ac4af8554d9c3f55b54e5a3026241797e7e30fa |
|
MD5 | d09287b593cbb344e5fa8d448a6b0670 |
|
BLAKE2b-256 | fe4aec8411e731e037bea0a20159be99b9e22fd8bef6e5d8e4fb0c02abbaea1d |
Hashes for moss_decoder-0.9.0-cp310-none-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 755a01ff5a5774f32680cf5f7a0e6481bc339f772ccc435ef2d3936ee2d5647d |
|
MD5 | 76e98baad35de08c88214e900d8f3002 |
|
BLAKE2b-256 | f4f18f6d5204c7e331b6ab6617257fda06fe98ced05bdd70b7abb7351220c776 |
Hashes for moss_decoder-0.9.0-cp310-none-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ed21c7186a2d648877ae30b54151914093acd5f6c6153eb056e52c994acab686 |
|
MD5 | 773fe70f69184497d07276a1bccd16e0 |
|
BLAKE2b-256 | a130ecc1489693cc32889030a23ef331b1bbd0b3bcf901104892741e186c67d8 |
Hashes for moss_decoder-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b7ff1b5562944a80465a764c05cfc28207ef89b3ebb0a994806ee36d92d33ea7 |
|
MD5 | aa6dbb033a84dff613fdd852d2f91d14 |
|
BLAKE2b-256 | f3f0bf7df88bef9cecd38d519369487f22ab8a1229c26235bb0183ba430db12a |
Hashes for moss_decoder-0.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4be0fbc2d9423b8480a3e57891694a86dc576f5a23cee68830ea736a5e069641 |
|
MD5 | d1c62eeeaa5bd4b5ba6cc09b7a05b5b1 |
|
BLAKE2b-256 | 2fca1b0dd48c38bdbf73d997b2c26a5709a6dc808c3a0cef8fb396a6ec428336 |
Hashes for moss_decoder-0.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8b981e73fb977bc37d414d85db284092bd0d11dfb5cc756d163734becb8167e1 |
|
MD5 | b23c5f2b4ea41bdaa4261449cd0f6528 |
|
BLAKE2b-256 | 40157252343b758a207609a09b287b5410558d6e1a24ad31788fd947a6fe3333 |
Hashes for moss_decoder-0.9.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ea9d458c57f30ad33f3b6af303803af2306cbb756364c1877f08f57c7a91e278 |
|
MD5 | 282796164d92b1fcdef87f0813d81591 |
|
BLAKE2b-256 | 1a669145d6e95b744493ba9a5006c1b0b9e8efd2e2c964282893f9b1f1b3934f |
Hashes for moss_decoder-0.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1209a5b1307fe481cfc1785e1e5f229ddb4db4a4bb5eddd1d8c12df1e70f2d6a |
|
MD5 | 90096778fdc8af682490333ef836c738 |
|
BLAKE2b-256 | 75ae173b387f792c2e1a3d35b5d59cdb14f2c37bf68f89097edbd7cc64a4049a |
Hashes for moss_decoder-0.9.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9c895e62816b5aa95dfda7b67b0ab5be75676d0337f7e50e5763c1053c88b490 |
|
MD5 | 2132ab9ceeefeb5e84b48efd491b6e32 |
|
BLAKE2b-256 | b80b033d0d818fa2d531040020ac237e03958a3fa2bef0f04786aafb4dbc52fc |
Hashes for moss_decoder-0.9.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 536ae2ae5e41546feab6681bb45107173d314c0f41c5b353c1336a16a3218faa |
|
MD5 | a4092911a1d336bc58bcd5a1d6ac857a |
|
BLAKE2b-256 | 79747aac40ae2aafde873fc1877f0b2e5431bcfcb16cf03f5b74b8f4bc691c71 |
Hashes for moss_decoder-0.9.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2ad2e32b9d99e0e3b186a9825d3a805817a1eb18eae7b62c4a354cf9ed5a2602 |
|
MD5 | a5fe9a0f16b3353e06623e67c42c97c5 |
|
BLAKE2b-256 | 1ba58d82c691276c4ac007ff30b792334da1274da186f58e733ff5561b5ad4c8 |
Hashes for moss_decoder-0.9.0-cp39-none-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e7c2c1c7b00d1b4f70f02bc56ce91258a97da6889a97133c925f82e3d1af1893 |
|
MD5 | 153aa42c660b28c0fe01430ee22a2423 |
|
BLAKE2b-256 | eaa26af64838d466d90dd36a916afc83815caa05a635bdc812c88c6ea5bbcd6e |
Hashes for moss_decoder-0.9.0-cp39-none-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c8b02a44de3faa211e2bdd13c029f255dd5eebaa6721356eab68df63e9d248ad |
|
MD5 | 4011f39a53f64aee40215a2928a4d5d1 |
|
BLAKE2b-256 | 5f450ee047bceccc643a8f98822bb644d74f29b85fb2a5314ffdaba9fde29286 |
Hashes for moss_decoder-0.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d97f8d686e5db9b456bd5406296af19dc88b9e99e7640c45b5b122867393e02d |
|
MD5 | 39eaae7530ac6f8f357fbbdfa13e9693 |
|
BLAKE2b-256 | 73d603d70b935a2314344f931bfc12819f5dfdd16c35532730a44c225df077a0 |
Hashes for moss_decoder-0.9.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4d1be23dc0dc43367f2107fb7304ae88838af4e14f6fd6552bb57ffcea4d0e4 |
|
MD5 | a416892e93251a82ae34a4bc16580633 |
|
BLAKE2b-256 | a1f0b57dcf664b3396a4fd7c04082afef3c5ed5e8e0bb3c10827574710a3e8ab |
Hashes for moss_decoder-0.9.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1dcbeba0362e4be1cf641b31f4cb39aa6d2a1bca53e2dbb5911b71173cd0e823 |
|
MD5 | fd1eacbbdad4df123d689bad9df95e6e |
|
BLAKE2b-256 | 0e9e99cc7d3135b10ec0e97cea3f9b7a2c478d3252e36f6ff294add72ebb3dfe |
Hashes for moss_decoder-0.9.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c55f8d01c90ae1c5d38809883758f45a7a25a00a5d2d28d7fdda99f5d295aaed |
|
MD5 | 73b4e372ce7627e9cdf5b437c7b0fc79 |
|
BLAKE2b-256 | a992f9b179fb7b442570039fdd645458a3f8fa35eb4c14291abcf42d1f85d2e2 |
Hashes for moss_decoder-0.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7e6a4cf493584837ce9e5a8b695ea296888bfae9e89aa52148f815421dd99890 |
|
MD5 | 48c13ae6e4d4ab80511b757c50f0ab59 |
|
BLAKE2b-256 | b0908bb4756fd1ea7d335a146cf0b04b7bea2e1c1dde94e1218f065c4cc3aa3f |
Hashes for moss_decoder-0.9.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 05c4617a497375d49bfc1c7fdfa41a4dd625365c8e9a4a930379820ebbe64a8f |
|
MD5 | d2dcb3b5901d1543007334efeb06bed8 |
|
BLAKE2b-256 | 4a2e6a8597bcde854a2f66ddf83203228b2c0fcde9d5d3df136358964a6c6bd3 |
Hashes for moss_decoder-0.9.0-cp38-none-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e14c0583d1e33a43e7b4db9c02de2e284bfe4bd0ebb021e9e0d009e991e8fd90 |
|
MD5 | 82096a095e311501ff68202ddd031425 |
|
BLAKE2b-256 | 2b89a48a15360c7216b215b35237f15865a36344449797791d4e181d1d1b26fd |
Hashes for moss_decoder-0.9.0-cp38-none-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ee6d31aa1c1f65cbba0f1f7892240987871cffcb91ff0fb3a2c64eb7ccf0868 |
|
MD5 | d6cbda3d93eddb327abd6e0adbbbfec1 |
|
BLAKE2b-256 | 7193ddb96a957d36cd1195d65910c20e3431787db9aa7ee56e1771182eebf81d |
Hashes for moss_decoder-0.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 81d8a5b563e916cb6ef3c40a96035175d00f1adbf8d8b546cd8bcae5e6c004c9 |
|
MD5 | ae0d320d11b816fafbefec25f777d472 |
|
BLAKE2b-256 | 996eddaca5004fafa50c72cb228a15ddc70653efc537803aa50ef77cc15ecefd |
Hashes for moss_decoder-0.9.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 52e25d465d32798c868339c05acd8ecc089e070679512ffd8fd6a209cf95bcd0 |
|
MD5 | 8eae97d771043bfbac1b756db38ff204 |
|
BLAKE2b-256 | 8086629620a81466f6841506b8db86a9f09e08e40302ccf70d68d9dd42d046e1 |
Hashes for moss_decoder-0.9.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2bc7b0dec0af4b5c114e27cc56f4251c58d4f163afaed374b9395a32a9af11c5 |
|
MD5 | 36e86df28f1065edaecd03d7e1c74aa8 |
|
BLAKE2b-256 | 134f58924a403fa916f8ecc3857912513621f45cfdf5538e63355137f13e4572 |
Hashes for moss_decoder-0.9.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 16b0fe7b8cdb39687b1ce784b2b71a76b5ac1e173095bc8ea987b08ab8c88cfc |
|
MD5 | 4e3f10c3d84204b6698f9488483dd1b4 |
|
BLAKE2b-256 | 0638a37443af73badc524d43226cf6eccb4176d8becd6da2f99451ef522690c4 |
Hashes for moss_decoder-0.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c942c0296ab35feb492bb645e64f56cf40a603bd43560e764bc489ed3318c137 |
|
MD5 | dd73db5cc1ed80b9b80abc82f7e5adcb |
|
BLAKE2b-256 | 3869ced5c884b9b297c597b835901c4cb23e50d6cf5a085d9270164c4af168f8 |
Hashes for moss_decoder-0.9.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3fa47725f533a351b15f2bae2870fbbf1faa8b7a72957e3169488e7cfedb2a57 |
|
MD5 | 5f3c24cbd98b3305098ac64d89795020 |
|
BLAKE2b-256 | 398d908852bde4a2aa59788e3fd95efc2a40512793f944ec84e828809d2c4857 |
Hashes for moss_decoder-0.9.0-cp37-none-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ea0ee48eed9863dab1f37ff8c79ab318317b752b63be65bfb76561ff9a135fd5 |
|
MD5 | 4e057134c61972d6785d99107bfb4d26 |
|
BLAKE2b-256 | 122e37a90a7a2d2e0c960b492adfbc30c459c7159c5800790d204b51ff922769 |
Hashes for moss_decoder-0.9.0-cp37-none-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2e39768ad2989caff7fe3df7f848be3f799f53b347a83de981acda37ecc16fa7 |
|
MD5 | 62d1173b09a591aa5194c03d9d0ec006 |
|
BLAKE2b-256 | d55b3417c2af017f4f302815713b3f79057afbb00579d818fe578e9a4d8b2696 |
Hashes for moss_decoder-0.9.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e4d328b4752438fd189051c9da636041f753ea001da41617c58f2a0605a725df |
|
MD5 | 08bdd9acdf84d06bf829bfeeb9d8c465 |
|
BLAKE2b-256 | a3691eccbb6358c64a44fbf36389d05b3ea084ebade21e91c5c72c8bc53d10b2 |
Hashes for moss_decoder-0.9.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 368b293a99aa32471396bf72bf6b4e78d7a0ed8058c08b70be90494f5440369f |
|
MD5 | 521a84038e7b247e60974fe64324aa73 |
|
BLAKE2b-256 | f5f48f8e0e5daa5563aa6e217019db53882a05abc8dfc779259a2f28bff66168 |
Hashes for moss_decoder-0.9.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7865083554b35190276b69c967b78b1916815257b160bdbdb91448197d1ca6ff |
|
MD5 | f1f96009152478a0a648c73262272d23 |
|
BLAKE2b-256 | c204cb4812a070fe8d5c1473972c3f07158836b647d1fc278cbf2b99a7df99a2 |
Hashes for moss_decoder-0.9.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e2755b9565aaa2d1b0401378a452b0cf277a8e54ec8c97eb0c4db6cd13a204c3 |
|
MD5 | 42cf8186660b3b71ec7ffbf5088ef1ef |
|
BLAKE2b-256 | ac46d73053c152a56ce65d15efe489f7a55d696b4ffca0f7961d5361babc7125 |
Hashes for moss_decoder-0.9.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 945fcda62890522b54d568e5ff1ca8caa33a4435912ec19435b454aa801b9e8d |
|
MD5 | a53005a20259fb0e04fb5dd01394c8bf |
|
BLAKE2b-256 | a1c0f582a25000a4aa8de1ce8f091cd8482bfc4b2f645b1b194d588618c38b4a |
Hashes for moss_decoder-0.9.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e701067c96834c52d43d73cf318d566018b92141789c20026481236d13e63228 |
|
MD5 | cf56e7e5ff74dcd134b3a0865345f6d9 |
|
BLAKE2b-256 | f983b584faa9e06ecd3e5062740781dc935672e5138e3155ad72e38b5fde73a5 |