Skip to main content

Sampling and Injection for Rare EveNts: A neutrino and rare-process injection toolkit

Project description

Build

SIREN

SIREN (Sampling and Injection for Rare EveNts) is a framework for injecting and weighting interaction final states of complex topology, with specific concern for the detector geometry. SIREN is designed to support a wide variety of neutrino experimental setups, including atmospheric neutrinos, accelerator beam decay-in-flight neutrinos, and neutrinos from decay-at-rest sources. SIREN grew out of LeptonInjector, a neutrino injection code developed within the IceCube collaboration to study atmospheric and astrophysical neutrino interactions in the IceCube detector.

SIREN provides a generic interface for user-defined BSM processes (and includes several pre-defined processes). It also supports generation of any number of secondary processes, e.g. the decay of a BSM particle after it has been created by an initial process. SIREN also includes detector geometry definitions for a number of existing HEP experiments, although contributions are always appreciated!

Python installation of SIREN

SIREN is distributed on pypi as siren, and can be installed via pip with:

pip install siren

For development of SIREN as a python project, simply clone the repository:

git clone https://github.com/Harvard-Neutrino/SIREN.git
cd SIREN

and run the following command to build and install SIREN:

pip install . --config-settings='build-dir=build'

After the python bindings are installed, you should be able to import the siren python library. Open a python interpreter by running python, and then run

import siren

To use SIREN, you will

  1. Define a primary process and a list of secondary processes by specifying a particle type and which interactions (cross sections or decays) each particle can undergo

  2. For each (primary or secondary) process, define a set of distributions from which to sample when injecting that particle (e.g. energy, position, direction)

  3. Combine this information to define an InjectorBase object

  4. Generate interaction trees using the InjectorBase object

  5. Create a TreeWeighter object using a list of primary and secondary physical processes

  6. Calculate the event weight for each interaction tree using the TreeWeighter object

For an example of this in action, see resources/DipoleInjection/inject_HNLs_CCM.{py,ipynb}

Dependencies

For local installations, you need the following:

  • A C++ compiler with C++14 support.

  • Some classes also require Photospline to create and to read cross sections. Read more about it, and its installation at github.com/icecube/photospline. Note that Photospline has dependencies that you will need that are not listed here.

  • SIREN requires Photospline's SuiteSparse capabilities, whose dependencies are available here.

For building py-bindings,

  • Python > 3.8

  • That's it! We use pybind11 to generate our pybindings, which is automatically included in SIREN as a submodule

Included External Dependencies

These are not ostensibly a part of SIREN, but are included automatically as submodules for its functionality.

  • cereal: for serialization

  • delabella: for Delaunay triangulation in our interpolation classes

  • googletest: for constructing our tests

  • pybind11: for compiling our python bindings

  • rk: a relativistic kinematics library used mostly in the CrossSection and Decay subclasses

  • photospline: a library that uses the penalized spline technique to efficiently compute, store, and evaluate B-spline representations of such large multi-dimensional tables

C++ installation of SIREN

To use SIREN in a C++ project, there are a few more steps.

We will be trying to keep our source, build, and install directories separate. To this end, these instructions will assume the following directory structure:

| local (for installing built libraries, headers, and binaries)
|  --lib
|  --include
|  --bin
| source (source code for SIREN and other dependencies)
|  --SIREN
|     --build (for building SIREN)
|  --(SIREN dependencies...)

git clone git@github.com:Harvard-Neutrino/SIREN.git

or

git clone https://github.com/Harvard-Neutrino/SIREN.git

to download the source code. To download the submodules, run

git submodule update --init

Now cd SIREN/build to get to the build directory. We call cmake

cmake ../ -DCMAKE_INSTALL_PREFIX=../../local

This tells cmake to install the shared objects in the local directory. CMake prepares a Makefile which calls the g++ compiler with the necessary instructions to compile. So now you'll call

make -j4 && make install

to build the project and install the project. Now you need to set all the environmental variables so this actually works. We recommend putting the followig commands into a env.sh script that can load the environment.

export PROJECTSPACE=/path/to/parent/directory
export PROJECTBUILDPATH=$PROJECTSPACE/local
export PROJECTSOURCEPATH=$PROJECTSPACE/source
export PREFIX=$PROJECTBUILDPATH
# On linux:
export LD_LIBRARY_PATH=$PROJECTBUILDPATH/lib/:$LD_LIBRARY_PATH
# On mac:
export DYLD_FALLBACK_LIBRARY_PATH=$PROJECTBUILDPATH/lib/:$DYLD_FALLBACK_LIBRARY_PATH

Now you should be good to go!

Making Contributions

If you would like to make contributions to this project, please create a branch off of the main branch and name it something following the template: $YourLastName/$YourSubProject. Work on this branch until you have made the changes you wished to see and your branch is stable. Then, pull from main, and create a pull request to merge your branch back into main.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

siren-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl (17.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

siren-0.0.2-cp312-cp312-musllinux_1_2_s390x.whl (17.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

siren-0.0.2-cp312-cp312-musllinux_1_2_ppc64le.whl (17.5 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

siren-0.0.2-cp312-cp312-musllinux_1_2_i686.whl (17.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

siren-0.0.2-cp312-cp312-musllinux_1_2_aarch64.whl (16.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

siren-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

siren-0.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (16.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

siren-0.0.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (16.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

siren-0.0.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (16.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

siren-0.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

siren-0.0.2-cp312-cp312-macosx_11_0_arm64.whl (15.7 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

siren-0.0.2-cp312-cp312-macosx_10_9_x86_64.whl (16.0 MB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

siren-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl (17.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

siren-0.0.2-cp311-cp311-musllinux_1_2_s390x.whl (17.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

siren-0.0.2-cp311-cp311-musllinux_1_2_ppc64le.whl (17.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

siren-0.0.2-cp311-cp311-musllinux_1_2_i686.whl (17.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

siren-0.0.2-cp311-cp311-musllinux_1_2_aarch64.whl (16.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

siren-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

siren-0.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (16.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

siren-0.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (16.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

siren-0.0.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (16.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

siren-0.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

siren-0.0.2-cp311-cp311-macosx_11_0_arm64.whl (15.7 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

siren-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl (16.0 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

siren-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl (17.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

siren-0.0.2-cp310-cp310-musllinux_1_2_s390x.whl (17.7 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

siren-0.0.2-cp310-cp310-musllinux_1_2_ppc64le.whl (17.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

siren-0.0.2-cp310-cp310-musllinux_1_2_i686.whl (17.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

siren-0.0.2-cp310-cp310-musllinux_1_2_aarch64.whl (16.7 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

siren-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

siren-0.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (16.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

siren-0.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (16.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

siren-0.0.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (16.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

siren-0.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

siren-0.0.2-cp310-cp310-macosx_11_0_arm64.whl (15.7 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

siren-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl (16.0 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

siren-0.0.2-cp39-cp39-musllinux_1_2_x86_64.whl (17.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

siren-0.0.2-cp39-cp39-musllinux_1_2_s390x.whl (17.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

siren-0.0.2-cp39-cp39-musllinux_1_2_ppc64le.whl (17.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

siren-0.0.2-cp39-cp39-musllinux_1_2_i686.whl (17.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

siren-0.0.2-cp39-cp39-musllinux_1_2_aarch64.whl (16.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

siren-0.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

siren-0.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (16.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

siren-0.0.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (16.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

siren-0.0.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (16.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

siren-0.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

siren-0.0.2-cp39-cp39-macosx_11_0_arm64.whl (15.7 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

siren-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl (16.0 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

siren-0.0.2-cp38-cp38-musllinux_1_2_x86_64.whl (17.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

siren-0.0.2-cp38-cp38-musllinux_1_2_s390x.whl (17.7 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

siren-0.0.2-cp38-cp38-musllinux_1_2_ppc64le.whl (17.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

siren-0.0.2-cp38-cp38-musllinux_1_2_i686.whl (17.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

siren-0.0.2-cp38-cp38-musllinux_1_2_aarch64.whl (16.7 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

siren-0.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

siren-0.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (16.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

siren-0.0.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (16.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

siren-0.0.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (16.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

siren-0.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

siren-0.0.2-cp38-cp38-macosx_11_0_arm64.whl (15.7 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

siren-0.0.2-cp38-cp38-macosx_10_9_x86_64.whl (16.0 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

Details for the file siren-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c0accee3ff8322bd3d0bdc33a7f9c2dfadefbf3e37a7d0cfdca7919cca3db1b
MD5 b25a976873e793afe2e630ccace1981d
BLAKE2b-256 995f93bc809cdcb02dde7c26e24b450883d969d34657aa77c3fe3f93f1d8f643

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2b05bb526da8bb324142b838787e71dac81cbc871943b9f6e2750d2b8b46029e
MD5 5fe491821147baa7f85f0fb34cf4fa57
BLAKE2b-256 dacb080aa0dcf5aaf1ed25e0c3f0b096453e5a271a0c8eec80ab8d3898390b2e

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 cc5e9e7fd888821cf9b1dcb140ef931c298cecf723f1ee004248edbda55dbb29
MD5 d0070de0c746046b18ce7241a1bb97a5
BLAKE2b-256 21db1082a9de81b3de45f900c0e93d07d363bf5af64987f2a948b1da3c2ff428

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 02fdd7b338ba9c7e4019314181be180b08c7498468409ddd8c42af0ba8b56d1d
MD5 c3f10f5e3ffb67daa3be395ca6bdb6c6
BLAKE2b-256 56f3c8a560242a96ee5dd163a087787583854a0f54124f09270c18a814e14741

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e5c2779b3398bd5cce3c656f30f674a24030c7c5ad8f6f6ab434307ea2df7607
MD5 11fbad4802f944d9cb1d9c390682e831
BLAKE2b-256 6e8926522d6ef56884ddf05416132a8fb6d2550ffa8923a4f43edbaedbf3a23f

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7a5ed1434fda52f420c981735dae3c72653290d885aed9ec6ffd2220d405adf
MD5 5baf884aae7c64bd373e37a1942e7792
BLAKE2b-256 f490dc199b1ecd986f9de8e180c0b7fa4613cb030ad10aeea15816a030b22565

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2fe26e4e8ea91bb7e334bf2d2b704753d31a5e096d8c50b9168ff2878c3c23c9
MD5 e299ddd61933fa87c2c1a63ed0a647d0
BLAKE2b-256 7b5c5e0efb990d0fc63c240f7e247eccbb215a3addec393f81530ac04bbbc0a2

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f506cb318785b4d867cffe902a9d441f81a442d80686decc2816787d2d3572a3
MD5 3589486c4f86400c68d567ac5b0fbb4c
BLAKE2b-256 d449b87bbacf738b254c471e8c67f652a4db5e97f5ecf43fb552e86ae06b1578

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e08fb53498f7a610cbc673d9db4aedb21bad95cf06fde059dac0f04a458a2fc4
MD5 8e645135a5466ab3bb91d478143d1592
BLAKE2b-256 5ec312ea2882b4dd1fd5c2eac7cbf794a2988d5e5a1f4b39882172aa7f51a5eb

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01124517a7c2ea7b0d1b67c0f7a824e7cdf1d8e29e359493823769c1e3dad696
MD5 eb8d7eb02858e4f68ffd145043cb0d01
BLAKE2b-256 84a06cdbec03e1d6fe6a22e9949b086d93c66e567997dd6bcb8166ae3eb1ae25

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d7219c9379185a12970c792f7b5e86b5d14a13833ee28b6d2c2992ceff14990
MD5 807b93f567f93e7a82697a2c0b277b02
BLAKE2b-256 25994355573243458b3b81a7f29d1b17ff0049c7338b7f6e84477df3dcdb272c

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 edcf1ca13d34524394f039565c3ada5922469008f19a6d3dd803fa3700800908
MD5 7bc254c590e4bcf5a024c6fec2125928
BLAKE2b-256 8a13007ac01d58b105c643b0cb473bd891432f96a585b2931b991cb7c177d411

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0bf82d9d71e4d5ae6852052a085344e57fb657516d551d823c9d8e37a673fd6b
MD5 dd288f2ff4601a4915264cafefc18205
BLAKE2b-256 2ebfc5132251a14b1117862e7a20a3060df27d6013ea16d2b06b2cad2bc17f01

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8455c1cfba2f3f2149458c14a99668e4d09fba6c7dd68016d5257dc16393ebc1
MD5 3e1f070251daa9fc6766d37f34b7db3d
BLAKE2b-256 6dd40e613d39d78f97611144b82b83064cb0bbb7bc5ecdacb1d0e7c86024a604

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8db1facdb647d30ff7957e5d6a6d8988c0ccc374921bd33ad73e51b9c6777e70
MD5 e5d70cb6fabf8613af441b9ce7eb31e8
BLAKE2b-256 09c4947006fe58030529ce50a18f9546cc012faaece043f6f08a2bcfe19ea6e7

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 db51ae315e8c73ce630e6c49bb2739d52228a68b79862c43052266fbe2c3dfa5
MD5 6ce399f91acc1dffc69df3cd783d3415
BLAKE2b-256 f332b0ea9b6f83b568af3943780e483ae3903614dc8b706204ab08d9d6df1274

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fdc525672cc477e929d10e5f5daf5f6caaa54d163c58904ef85f2e56c74c2336
MD5 2e5a81696d74ca99b2cd4a4f0d4e0f18
BLAKE2b-256 3c2b1cc184f12c9de01453a297b11ed12248fd931a201b62e76da5e8b8e6e945

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bfb627f7d5d0b6d661696bfefcecef855b11c84acfda410b5bccd57c37c88370
MD5 06e08e58d734d8840b9952375c2ff5d5
BLAKE2b-256 13f00dddbcee038cdf2b060a661cc8e08dac5606b88bdfd241c64eaed7abfcdd

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 676f03be246b205f8b7e903b27e5c283a0766af260f06349fd9d31a9fcaf9b3c
MD5 bc3c092973dcfc213b5c80b070255858
BLAKE2b-256 5a40df1ea7275fee43f2fad0f5780d70d92155ad4ac56ac96085823dde276d74

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9ae5c661dd8c04d905959227883514176f218d9386c01d5b0c4a6bbad7930329
MD5 611b1f9cc4694310bc67fdf222b3022e
BLAKE2b-256 703383c91db0e521b5ef3b7c10a687b8ca3d4fc973f0d7e3b7d2549c206994e5

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e606f4bff2a82b8dfb4ddc48d8cdfe22438ec8373c805321097ca8f393c15e9d
MD5 4d62ff0d1c811bec89f38f5c5e24f9c6
BLAKE2b-256 08c1965ead953dbb34d531c539794478ca9455ec7fefed573a5bac5f697ec6a7

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fdfab00e84ef679faf7e2fb6c3b1bb38179d985a716df7cb98e5a503f0cd9037
MD5 81028c29a63541269ea0b8d3abe6c624
BLAKE2b-256 0cb0c10598cb00843a99f981677d83ba39e5ce3cc07220349ace023ced96c726

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6351392523e320cae295c7653e6709790fc2a15c0ff24e8b69e154c57aac743c
MD5 ee4442a988160fc16c4b1812f3feb1ce
BLAKE2b-256 738615829fefda9779a33d199c73e399cde307f2d2875b36d14b7e5b82cc5c30

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 00839f890263848f2389c89f31208422cee4eba2e63d0796e2e64b535dbcb8d5
MD5 6b7b69b696ccd0002dfa12ff116e196f
BLAKE2b-256 c311ae319e76b160b053039646d7dbb4717a7f92caa09d288b9704fd59d8deef

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c177d3f63d3cc36e54ddc8862f7cd0525791868846953103ad91e0a58d7e7b10
MD5 77da1700fecac79c5130efe7de3f5b28
BLAKE2b-256 05afde85d849de524358cd0aa461cd888fb733ea0359944fd7ebc71b8b238bb8

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a0fb3013068844496bceb9f43cc08ce8e37b115f04000398e2da20fbb3151b41
MD5 29a0f0d2c62efbff87cb215bf3635284
BLAKE2b-256 8487eb2a2ffdc7d84cb63be994eb8fd6a82b59dd5599db16f96ba241f2b831d0

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a58cde18b5483d010bc91a42272cc2a60480e37e5a4c279e88614487015b3f48
MD5 82e1292df87d9790720a3bb86433a5ee
BLAKE2b-256 563c233a25ec4da959ff1c3e0fc6bc1d141530aa8ec96b6f53fc7ccb0ff0db65

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e22fb0ae138de16bc31e27ea44b931a61e1cddfd15609c3e03d952292227fe65
MD5 ec0e4182515acacb4b56f718cdf59c3d
BLAKE2b-256 42663ac9ef519b04af3c40b94491141cca494a2ad6cc9973f5d3fd1a4eb0df8a

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a98ff1023f595c11c9a5b7baf34736aaa145435296d4ce2a2c04411acc081824
MD5 7886a169c0f32f3930d4fe7e914001d4
BLAKE2b-256 3f3df6d8933d00b31a0cf398e625f1a7f1319ebfeb70fa61d1e8036043a52c8a

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6fb16f0ddd812074dc2fe0d4ec1f5f76fcaeab232fc02575680569e534378303
MD5 97578e31a2d8c044d8bfaf81ae84fe8b
BLAKE2b-256 fb7d0457b623bce56459c022c1ecfb7e5eb4d185608fc95fe17de749ef1f602a

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bfcabddf4253d5664c352652fc569c83cf4f44e105dd4fbdf8befc0a9ca4629d
MD5 7af91da266a86d92d010c0072580c4d0
BLAKE2b-256 6b028bfd52fb1b8eddd06cd508779d0e8d34b757a6fd0586af51a200c8d31579

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3e83d5d7aaadf5aaed0135f6bb17e657c8cf8e764edcee855d0fa2c6b21840dc
MD5 2533b8d817afc81c5a5a9bdcde872ce4
BLAKE2b-256 abc20f2667bf896b66d58ddf8cc5faa5117094f44f0aa452fd61998ad4df32db

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 24b79785e2fd15a84bbbe7374d5178d3204f95abf9e08a13a9a049a98454666b
MD5 da5eecc6108f69bd1acf033d16c0a3e4
BLAKE2b-256 8499ca0965f1563d7e629fe3ff3093f1a932fc13b5db911c18f1eb0847bf9527

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73b0f9199968b4b8018b61facf5c8935a80580ca202de15b6a5b6efa41822acb
MD5 37d30029c904267f2ef87e2c4435a8a8
BLAKE2b-256 46d18cda317d159505ff52a6c781c79e7f6d3c30edc5849375beadf01ced015e

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae4393d92644829fd694223bad8b2b0cb6bc41162de5474de1d6385cb15d5a12
MD5 7d600d690148b7d248b292cc3b16f8ae
BLAKE2b-256 38d85db77d71c6a81dc16486af44bd531b10fbcbd66415acb3946a67ec4646d5

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 68a86e0f64a28ddc766eb2b7fa61210f0ab84d8fa5c7fc2dd1364a129506d6a3
MD5 a674ed165007b269d143f0a496a4b0a0
BLAKE2b-256 a6d7f66bf76d692ba18ab043a87ec3f16d4242916d7c61e376b6df40cf5b534e

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 12cb78bc867bded110a60c70b00ec1dbb5ebf45ac7a4ab555266748aec1743af
MD5 f52a2afd3ac1c741d9e132d4cc0785e5
BLAKE2b-256 1cd63c78c825ed634d2b64a4fde8dab602babd692411822c82a76175650428ef

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 92863456c6aecf8db9ce3cc63d1cb04ae1a2f492a1e2e94693e71b9f4e8346cf
MD5 ac31c0547174af6a752c9111ed3dba58
BLAKE2b-256 534dc128a858de7d6a928f287b33233c55577d053e3845af55d3c6cd26aaacc3

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 29b6d61cd29f35a6d16a80638d24a1387e4b41d298c6d9710dedd7c717ccdcf3
MD5 5659c5c81b8b8b0297b32e1bdda88cf9
BLAKE2b-256 007fca5a67291d622daabf132249e4e0f02868b175515f78afe06c9e52e62262

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8c6fe5385fba9592bf36eb6d08b4c45926f0639288a894e712c46512d8c5fe39
MD5 329b11b4a826bb21c3648124962c6254
BLAKE2b-256 3ed5223cfcbcccb189151962d63ff856b119b7f711f286c3c861006368157677

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bebe7a12cf29731106c660a0e7af0db457ae543f15b589e16fc9bb6f9d621b3b
MD5 022544c6b47d1c881a701478df8cd39a
BLAKE2b-256 9e90414cbea8390027a32bb0d2fac98f5ab7acb67a20c5a59d616a6f682048c3

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8209fe459eb61e3983360abf66540f4414792a70ad1bffc2bf56d8ad9654023
MD5 a50fe3d2c0da14ced5cf8fdd13ced8b2
BLAKE2b-256 2f60e40e7f5fff2b348200ea55e04a0ec4e027a700739a21b443b62a9ee1bf32

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b3bb5e25d597dd2dd924f7eba050cd57491635a1df0fdfbb8c7c3b03cbe70006
MD5 ff6358bbdd4094d6d086de9d6117fa99
BLAKE2b-256 4a841e5b2f759a32b1acb38cb4a4dff38254054686341f0a065d3c3e822bc3fd

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 756fe7af3db4a79d78564fd35835e4ae1b469a7cbb333fc8924cad9f75fb37d3
MD5 05999ad63ccf5f3f18980240089b6b1f
BLAKE2b-256 11320ece929b9e6bab5644f0afd17aa3006f1c0cfa37de9c8e63804ed9889ae6

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5c7cf840d4c09aba191156ddd0e0e4bd853392e412722b91311ac6005b13859a
MD5 dea1c8f34bbb35032021b28c24214a28
BLAKE2b-256 eddd31e619db4407a19c9dd55ebbdd38676eff9e74d06ce878f28d4185ce51da

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8aab8d04c633a1c2f54de1d173d299257bdab4f22b7c952bc05e9f4530f8879e
MD5 1ff8d0e7a7fca0e9fc9bfee3c1d6bb55
BLAKE2b-256 eb095560dcefe6dee00a512da4287a6ec75f8e256dc3e5328604d8ccc70ba188

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9a038b5bd48071a0fdde1c0e6e44d5111c057f655cdde62b92377eaae6efc8e
MD5 5863501f023f3b5add14249bac0816c0
BLAKE2b-256 b03f46b31fb4374d7f376494f5043c0e4b75c413ca69b52c04817e0c230f7b5d

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6cde0c6d14a9f457aeea70255585e4cd88c372f41e43472b7884eec608c63133
MD5 8fec8c17aa5e65463b20758aaac09a1a
BLAKE2b-256 e0fbe212ce1cbee2cce8cdec70dd5b556b25ba173afdc0dea2c84549a4835464

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c07bed29c852ff041e78b919b0636e2ab05f45ae5053861a9e363667e159a130
MD5 a2d63e7c29d3b3b3efd20a5013c4fedb
BLAKE2b-256 fd2280c23c411696c2c2c9a6190856c91fbd0ff8d54ff83ef670349aa34b0d75

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp38-cp38-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f75c6f69bc3d2b4a0c661ca4cdcdc15d7feccefd789157926312b97654e4a469
MD5 241fb42058072ce5d29fd57b526c534f
BLAKE2b-256 26882f282ecd519b465f21cacf167c044fa3b0c27a0ecdc859cd55b896e9d388

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp38-cp38-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7b3f3b9f4c4284e456d29dcfe11b9fa4432bba4a294749527689cae2b80d7e8a
MD5 9c3529dc2eb1acd7e8756fbac500a382
BLAKE2b-256 bc7a34c01c4011edfe830faf53fa6ed39954302ece10f6231f144b64ecfc59a6

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f211be9b6b9f171aac958b9d11ea3f587f132bebbbb2df3bb5e5dc97476ba0a0
MD5 804c92dd7b26c1dc82c258ab04a90146
BLAKE2b-256 50d66fbc6b1765ca3c9b3ba55e09616f71b533631ce9faebf8f33cbe830dcc1a

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 352a291e13be7876cd5feeb4cb60db495904294e5ac0c3fca239c2d57b849e86
MD5 237e4cdf71754d2555260a6c64c5440d
BLAKE2b-256 9aba9523e433bc29f0a0ea2d0901a97a3dd87bd4eb4be686fdf8e03dec474f22

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b08a603c04a7f43b6271aa7a6b5bfc8d010e13c86ee5eecf9e2e5c34c847cbee
MD5 58a39fd5a0a0073ae5f5c97be3726e74
BLAKE2b-256 a94138de6386454990d44a625168b7f78b87f104b7695e789491103461cb5cef

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 475c8a94fd0fa2655971e04a4ff064418cb07c553ddcc810c814bd6d897a8fb1
MD5 211a5eb063a3f5f05b0532a3f5042cfe
BLAKE2b-256 796f5cd94a1b0f0da0d4190479466a283d9b713dcdce86cae543dc9fd61c8aac

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3792458313e49a933bf3be37540f8cf454d933083768bb4d1b5f0a8dc7685c19
MD5 d1a4808ea5a06dcdcbfe88bf0f823e2f
BLAKE2b-256 426fd415ead9ba25ce1973a0a38f279a5bb72aec3091d908a8c3ced94848cdec

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 80c01311a21c160ca65ed50063af7a2d0571378105d424e252c64c6c59ac456d
MD5 31de337408a3877938e5894c485cf480
BLAKE2b-256 b5b1c969c6ba6d21cdf91bd3a42f13321157965c8dc1efeecd6e5bf5051484e4

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 727e7c3013ccfb3f2d6dc7cab470c1d9a1bbe294df177797c8fbe66795715b97
MD5 a91eaa1003c2161ff44a30c010330d50
BLAKE2b-256 8fe1efcb5a62c5d5ee2087f002a3f3938e41b618177fac4f582edec450d61aaa

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b896496891afa243e83a1652e8bebc09cd55841d320658b1bbd05ed5a730d250
MD5 116076bf603ba4db89db2c4c90e57cae
BLAKE2b-256 c12d6efbe8b40cb861a04f092f04f9b3e844df6cda029670ad1422df25ae6281

See more details on using hashes here.

Provenance

File details

Details for the file siren-0.0.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for siren-0.0.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 71259e02278526f8c2782c8de81cc0d768c2dc7e7e3dad4ecbdbc8a6664f51da
MD5 79f42f09a31c9f7b3d5f369a6d069f92
BLAKE2b-256 ea2c17cc0bab1aeebba450e42b7f3603de118efce7e1fae1246556a53442ca27

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page