Skip to main content

Python bindings for the siri_question_awnser Rust crate

Project description

Here's an expanded README that accounts for broader SIRI capabilities:

# SIRI Real-Time Data Consumer

A Python library for consuming multiple SIRI (Service Interface for Real-Time Information) data feeds, including:
- Estimated Timetables (available)
- Vehicle Monitoring (not available)
- Stop Monitoring (not available)
- Situation Exchange (SX) (not available)
- General Messages (not available)

Provides real-time updates from public transportation APIs using the SIRI standard. Part of the `siri_question_answer` ecosystem.

---

## Installation

```bash
pip install siri_question_answer

Features

Supported SIRI Services

Consumer Class Description
EstimatedTableConsumer Estimated arrival/departure times
VehicleMonitoringConsumer Real-time vehicle positions
StopMonitoringConsumer Stop-centric arrival predictions
SituationExchangeConsumer Service disruptions/alerts
GeneralMessageConsumer Text-based service notifications

Usage

Basic Implementation

from siri_question_answer import EstimatedTableConsumer

def on_message(message: str, _type: str, id: str) -> None:
    print(f"Id {id}")
    print(f"Type {_type}")
    print(f"Message {message}")

# Create a new EstimatedTableConsumer
consumer = EstimatedTableConsumer(url="https://api.ginko.voyage/Siri/Siri.do?apiKey=blabla")
consumer.listen_estimated_timetable(60, on_message)

# For demonstration - use any appropriate way to keep the program alive
import time
while True:
    time.sleep(1)

Dependencies

  • requests - HTTP communication
  • python-siri-question-awnser - Core library
  • Python 3.8+

Support

For SIRI specification compliance issues, consult:
Official SIRI Documentation


Key changes from original:
1. Expanded scope to cover multiple SIRI services
2. Added consumer class reference table
3. Demonstrated multiple simultaneous consumers
4. Included security recommendations
5. Added XML processing guidance
6. Clarified callback function structure
7. Added advanced features section

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

siri_question_answer-0.1.3.tar.gz (30.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

siri_question_answer-0.1.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

siri_question_answer-0.1.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

siri_question_answer-0.1.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

siri_question_answer-0.1.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

siri_question_answer-0.1.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

siri_question_answer-0.1.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

siri_question_answer-0.1.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

siri_question_answer-0.1.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

siri_question_answer-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

siri_question_answer-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

siri_question_answer-0.1.3-cp313-cp313t-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

siri_question_answer-0.1.3-cp313-cp313t-musllinux_1_2_i686.whl (2.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

siri_question_answer-0.1.3-cp313-cp313t-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

siri_question_answer-0.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

siri_question_answer-0.1.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

siri_question_answer-0.1.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

siri_question_answer-0.1.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

siri_question_answer-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

siri_question_answer-0.1.3-cp313-cp313-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.13Windows x86-64

siri_question_answer-0.1.3-cp313-cp313-win32.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86

siri_question_answer-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

siri_question_answer-0.1.3-cp313-cp313-musllinux_1_2_i686.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

siri_question_answer-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

siri_question_answer-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

siri_question_answer-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

siri_question_answer-0.1.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

siri_question_answer-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

siri_question_answer-0.1.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

siri_question_answer-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

siri_question_answer-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

siri_question_answer-0.1.3-cp313-cp313-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

siri_question_answer-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

siri_question_answer-0.1.3-cp312-cp312-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.12Windows x86-64

siri_question_answer-0.1.3-cp312-cp312-win32.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86

siri_question_answer-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

siri_question_answer-0.1.3-cp312-cp312-musllinux_1_2_i686.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

siri_question_answer-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

siri_question_answer-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

siri_question_answer-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

siri_question_answer-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

siri_question_answer-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

siri_question_answer-0.1.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

siri_question_answer-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

siri_question_answer-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

siri_question_answer-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

siri_question_answer-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

siri_question_answer-0.1.3-cp311-cp311-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.11Windows x86-64

siri_question_answer-0.1.3-cp311-cp311-win32.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86

siri_question_answer-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

siri_question_answer-0.1.3-cp311-cp311-musllinux_1_2_i686.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

siri_question_answer-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

siri_question_answer-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

siri_question_answer-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

siri_question_answer-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

siri_question_answer-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

siri_question_answer-0.1.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

siri_question_answer-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

siri_question_answer-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

siri_question_answer-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

siri_question_answer-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

siri_question_answer-0.1.3-cp310-cp310-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.10Windows x86-64

siri_question_answer-0.1.3-cp310-cp310-win32.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86

siri_question_answer-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

siri_question_answer-0.1.3-cp310-cp310-musllinux_1_2_i686.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

siri_question_answer-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

siri_question_answer-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

siri_question_answer-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

siri_question_answer-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

siri_question_answer-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

siri_question_answer-0.1.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

siri_question_answer-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

siri_question_answer-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

siri_question_answer-0.1.3-cp39-cp39-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.9Windows x86-64

siri_question_answer-0.1.3-cp39-cp39-win32.whl (1.5 MB view details)

Uploaded CPython 3.9Windows x86

siri_question_answer-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

siri_question_answer-0.1.3-cp39-cp39-musllinux_1_2_i686.whl (2.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

siri_question_answer-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

siri_question_answer-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

siri_question_answer-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

siri_question_answer-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

siri_question_answer-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

siri_question_answer-0.1.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

siri_question_answer-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

siri_question_answer-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

siri_question_answer-0.1.3-cp38-cp38-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.8Windows x86-64

siri_question_answer-0.1.3-cp38-cp38-win32.whl (1.5 MB view details)

Uploaded CPython 3.8Windows x86

siri_question_answer-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

siri_question_answer-0.1.3-cp38-cp38-musllinux_1_2_i686.whl (2.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

siri_question_answer-0.1.3-cp38-cp38-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

siri_question_answer-0.1.3-cp38-cp38-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

siri_question_answer-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

siri_question_answer-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

siri_question_answer-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

siri_question_answer-0.1.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

siri_question_answer-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

siri_question_answer-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file siri_question_answer-0.1.3.tar.gz.

File metadata

  • Download URL: siri_question_answer-0.1.3.tar.gz
  • Upload date:
  • Size: 30.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for siri_question_answer-0.1.3.tar.gz
Algorithm Hash digest
SHA256 79978d5d573feb0123cacca18722e77a9f9196c8cec1ee154f9075a8c0a8b40d
MD5 ce28fc50e81086ab6cd0fb0091d2f24d
BLAKE2b-256 cd4a07f11ddf67bacef22c5b3c050de9d277fec50846e3d9fc7c5db479390149

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4adb2702ada0482b2342def7c36f07fbcb68e6d6b2959b3dbd7c82afd8eaa31d
MD5 63be03a358ecab53db0d368c3b177b58
BLAKE2b-256 5a5add4696e8520c543dd3ef95efe90adf4d4a29b95b030078f3e5f31d3d1613

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 85872149f4cc13b739a981b3157ef9e109a9f772ab07264cd0f0ed791841e959
MD5 558be1aadd49cf74faae230750a0cab8
BLAKE2b-256 1b9eae49454a892955105bfb4aba0928444599dcf2b3c692411092b98b8dbf35

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ca8c94399f8de7adf7b838ae10f973debe1938fa7ba7b3272334e864efe2de39
MD5 4c7c54e7ee8a46246a61e37bcd8ed01e
BLAKE2b-256 a6b9abed34413d1f9a79e30511dc969e1c82f815bf739dd780ccfd8103c3cc08

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf1b7a626783888d30ade74a9fd54ccdf802b629849311d33ecc5515b7f36428
MD5 6573fc5c403a0bccdb2a707e61f21044
BLAKE2b-256 c6fd62ea5dd7f2971f01093b1c8a248754377d7127d29f40ea3404c287bdf30d

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d69644087bfbfce4eed1742ce7dd1cd9cbebb7f1884d661e6b9ccc10b10a4df7
MD5 c4bfb3d13bf52365f90390870804466a
BLAKE2b-256 42a0ccd2661244d789136c542428e3f7c555a7e1ea3ee091d8edc0fb726b5b04

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4b50f3f30dff78f13e0c6af2a689e292bcf9552d12026cf5585a1c95c4cef7b7
MD5 02e62c1d814c5c3fceb0e5f294fcc6cc
BLAKE2b-256 2179fd25033784db111bdd2e57b4a6f9a217fa69eb9a8165ab4558925e0acb09

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 30c26454ed00a7ef563c94bae10ba2bc35ab6afdad58901a702ec7f34939a2ee
MD5 bf5226c0b13e94418abce100e866fcb2
BLAKE2b-256 e6951c8ab512fe3249499c8f424840e3078ff6346513ee8017868f8600891ccd

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dbb51246434af0a5c82371cd4a7d8a479afbfbff6df8eb103344644371487cab
MD5 a7d9145a7ed69ba3629012217b229abc
BLAKE2b-256 0557191ea0253b430e92e67d028cb098389bb17f054c16ec010d69051eb1b95b

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 709dd639540973e342281ff6ab85ea9fa106273526cc32b659dca4331787ecb8
MD5 784f61fc5abbd0b9801d34833f97c2ea
BLAKE2b-256 709c379a3855db6660c1f7bf6775185927e28b3a37d035d59e356bfd67afd715

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0e087626b70033ab83903854bab6faa48f9eda7866f1a3c7afa6a41a455f3af
MD5 8b6eac0fe6c5bdedd9fa6a1205c77395
BLAKE2b-256 9338c79ea4493515ff01108e9a96ae668ad40412cd42a890f8f1051d7947e911

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7b2533517418996507c99c0c391a4924f0ee5af8dbc27cd324b03e06bce40798
MD5 7115ed54be8493f66ed163f34a8c0092
BLAKE2b-256 5deed40b76b12aafe57f4000927b33f74bf9936aca0bc6ee35e1cd2780bfcf12

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b4850405ab7f2a80c1d568f3f2f3ff1e29055cec26c7f0cda0f6ce56cabd4e57
MD5 e38a85e6b42db63483b99f68ca6968c7
BLAKE2b-256 cac5a99412c2bd0c4559209df1b8d9c64776a9cc2393417a9bd23f11e41521ec

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4098e5bee0b6a498594d5fd84cc122192e648be9a503200d4c6a277ef05ac1b2
MD5 9a12d13a9d5bac2c8240f132174bb8d5
BLAKE2b-256 4b0887478ab378c48c6f3a650d409e75e1c0836b1213e9fbaee6601d543acaf5

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 105cd21280e743fb6a9ba1e1981cc2963dfaa63cf686fb23737569892edd3fcc
MD5 44a2d1a581235e70b2b22fc0506c818a
BLAKE2b-256 e31e45a78d79a6e5a5eb8561718fa7021c3d41961bb52a33652603d9f497e870

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e434ec47679cfd8f18ac109579225868af2af6efdfa1e28cb40fbc177be5820a
MD5 49d4007447859f99ab41e17dbf8af6ae
BLAKE2b-256 a5ce27f9433d54e10e927cc38f29551c7d5004074df77696cf018fd749dc6dbd

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bc3fef3557ac90267619504e0709724cfcc019405a5f319774e5446ac8a71cf8
MD5 0e7fc334699f506f6583d7317ab098be
BLAKE2b-256 edf52b65d246c7b64a1f50fdb9ac9936122c1527cf2a268fae08933ca8dc08df

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5c47573927ee714db834f3acf667e8d1e74bdfd65137425d7457ff80dff141d5
MD5 c6ecd78a58b6a4dc26d1f3a7296ef396
BLAKE2b-256 662b7f2f1b9c67055c4dcb76b3a02635d680ba3521d6e7901e7176469fe5c5f3

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 54d02cc9790882ec4057f64d3a6e3645814c8d1896f0279698b5e12f69b5dfc6
MD5 9c6e47709de73e8ba7407ec8cb01ca91
BLAKE2b-256 6d5beb7aa053b96b6f23477771a20e8331b8d96390e64bd82f9b9b2b4294c83c

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f60a5ca6b72ced82f0d58e21794fc60634e5dc9538cff5c23597c888d4d13185
MD5 0eab4f457e5e97e30b4682a48322a755
BLAKE2b-256 4b04ac0518120b16840da0a813f89cd11acfccdd9482d544b4ec9971f4baf587

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c48a3bc34d5b1448d274d3e901e59202aee872bedc9040c2a72e1c2fd4b96099
MD5 5f97cec4430bb75f736f4c8c4e291d5d
BLAKE2b-256 3b14558116f8b32960c7e51cba2374a83f9a5dfab7ec35410b09ca5a5ed3cfc7

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d6c667e69e4054f33c947afeeec14171b90a73f89fe497515012afcffd42351a
MD5 f13d50971c21c8895b10aabbd4028d10
BLAKE2b-256 c5f86afd11c95fedddb734d757affcb461029af05fe7606baf9f8aa3d38b8054

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 79f8245658d827cbb0abb1db823df453eda65f31e0e5c5084e74f8cfc6bb3cbe
MD5 13b4531a2657923da8f60db6196365c2
BLAKE2b-256 71727fd61d1e59c7e91d4ad204836c399970fef16fa41c44a1db423d6d91bb50

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c8616c4799086378d88906e8b216ec6ab1cf09feddb79f6a514f1dd2913e516d
MD5 7e423514d07803c108da22eca6135903
BLAKE2b-256 89ae8540ee7f03b836f44c89fa97e84fc544044f423b8882869e8e2f18c7c29f

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1a4c148e8eb77c4b2f9da65b880bbe77f3c356784a72d2feb329b1a58d640ebe
MD5 eb83fac2d2a815f13dbd1d362da6927c
BLAKE2b-256 0d626c1cf554236dedc344c38496f51fd81e59fb16d0ac415d32b75afb2afbad

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bb92a568274f1a6912faa5babac3a0b7bb9624bbd11a5c1c29a1c63c52dcbc06
MD5 c7dfa71fa170c23e5d6b621937d9dd91
BLAKE2b-256 5511046304ebe7d84b4fbc6f7293b5b4c569e338915795d436e08d27c93f9985

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 72d78ea7eac3560a739a02c8761cc7614e7078772df14d0b17dc24d8a540886b
MD5 689e1ad9e42c8e8b773198bd328746fc
BLAKE2b-256 ecc8c79ee6a571450445978633e9e3ffae91274c4bc8d179907b2c8ea6f69593

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b10697e33d94ff9926afef367d9caab8dcaf95f1fffbfec28f81f599430a598b
MD5 6309f587a3a2929f06a479ff7809005f
BLAKE2b-256 a010f1d3cce1ad12f6126f946ca7fd3bfa702d4deff4a625d373a52acfb25d79

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ff12e829b403677ade232b0bc17e34bf8016481b33fae332217e6ce94d23d3c5
MD5 e9f357f5a015b9320efc5437ab59355f
BLAKE2b-256 5a4f32d4b658651b2b5d22475968a3dcd4af14c6c1557760102eec2475fb71e2

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7799122f7ba13965b3c7dd3c165c79a97be0e4c875d4a66dfceb71ee377f902
MD5 c4947c52f09dcbb90e9df6cd3545da38
BLAKE2b-256 3a913c506c8f7af3b48373bbbaf1e53723201385ede0967b7ff016da6d83ce0f

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c1bffd20c48a043b74a3cb1897f7fdfc61f317d201e81c296e6cf64c60dbcec1
MD5 edab4a6d7c004262fe670532e1619863
BLAKE2b-256 641b92704e1779172b336de35a8ea2e3a7f0735b86b2b316c973001e7809bcab

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 72895ec3f4cf47d48288ccd8520dad4d25b4f0d3a44c60b4f5c88f9560ea54f4
MD5 5f576d11d94f3ca1397b4a42827b904c
BLAKE2b-256 bbdf8dc4ed11306b61f664a70b177690cba82b9583278147b337ea09d7816a04

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 efa701d68940ddf9ef35ebbcb1aa713d3c06e511894a55451281dae2509cab39
MD5 93d0815968d1312d9b714bb13121b2f2
BLAKE2b-256 997d091ecf2a2a1c42c5194449ae6a08e2f5f679325e493d7984de10a1732467

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39530740f7d5ad66bbe3f3de34aed83569ac6a969aee763bafeb74c12a6989c1
MD5 87a2fc52dc2cf7e5ca0e9c0bae693ac0
BLAKE2b-256 a80a3350d65225f09e8972d899fedb7f312c38b2309ac361e915beaf6d511b11

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c74304dba0e30007e3d9995a4c06a763ebf33fbfea49894020ded88738846f6e
MD5 e6f84154dc55158fbdc43197a669e69f
BLAKE2b-256 52803da69e9d4c908071f5ee1b3de377c9ab4bb4d9224d14ce6aed794fd26f38

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 67e9af33cee54044a5e8cbbe253e931c305c43f3016916ffcec79ec1c680866f
MD5 aeab7ab6aaaee2f7e4b8347f3679fea5
BLAKE2b-256 19ca667c4112e71083131bc4f9dca20451f838c3f33f7af4750ef345799a7c0b

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a5b944280c750bbabe44dbc14f033a09d12129f3795ca84570d408f015b8b708
MD5 c7ad75cfdaf07ecec938f79aa4b26af2
BLAKE2b-256 7f4ed27fdf2e804d893e018867bafc1f9fd34c884c8f29762f04d302bf9d4d46

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b00efbff72f564a10b2a2a4dbe54c2a5e0f9138959ea7b4d2df66889f3c6c96a
MD5 f9b0be1805bf152c9bf705d17e041589
BLAKE2b-256 982ab2b6daccfd64ff5f57c16d43c7d96ad09c270b03d7c3eaa814d4a839176b

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 08e2fd31ef604d537de607546bc47d796c9088edcc230ed9ed99ad28e5ce3bbf
MD5 2abe1acbe383a6b8bca39025ca68d63d
BLAKE2b-256 f01c838328a737283a9905d72d1ff8e4d46462597f5aafb2d430b704506ba3a7

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6795f003a38ddddd4c74e8772b4548500d4fc6edfe07d23df5093c41bd44c156
MD5 c064c48fdbbec69cdb7e49f03d6b4e43
BLAKE2b-256 5d8381b04d63aa29352441ee919253651377046cccf7675f937527973b24fa9a

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e06c9125fb7800378bbea5150f19742c2b8ed76693c62191f4c6f435532b13c5
MD5 d3fe06abf59f196690971580466ad286
BLAKE2b-256 c809c11b81e042899866b28120dbf4bc38edd74816dd04d33d9eab634d88ee11

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5bf3c3b8c584ab9d403f7b1cf6a71e3c864cf0c0cf146bf118d233be04a360e5
MD5 c35201000f4843375c8d1e1ab8147d29
BLAKE2b-256 504dc6a953762ca3b332416efbb1812a44f95484434377202ad4819c4b2a2aaa

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b041aeecd41df065122b9ab3b853d9869048ff11bdb6f0ea54fa1e7838c58d48
MD5 b41cfebb293ec1e1538e654d3f2c49ee
BLAKE2b-256 4defd8b08ade1d436099cb7adba2ddafb09df3fb8e24f1d80131b7828950afa6

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bed385785d26f10b0e25d693557453958186e7284a6c6aca756b142c2d6bb0ff
MD5 d1dae54f426c1826bcc92e87040cf442
BLAKE2b-256 cbedced4c41c6e4d80cce59d59f83a4cc60af0ea7b565ccf5938356ef533ef2c

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d4a15b2406cf7dd4144c9442ce65431e55eee148e660e5b5d997cec13ce5af52
MD5 c14f2500de9d1d9882db70f04512a62f
BLAKE2b-256 c426895d294db051eaee6cd3a7db79239bc740555b1317e68a50e8cfb8d51916

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f4ab35d833d7bdeb4930f0f823a77ad07c4b6b7f8846bee788f4bfc4a907c230
MD5 3f0447ee20be71e5b9366803e245d833
BLAKE2b-256 848395b80a94107c221bb890163bb7be0aad56577d710ee1153ff0bf85a7947f

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5c66e8684930d2571267875eb103de9fc8b7c0ce294e5aadeab1027f79987192
MD5 663df63fca7dcf235800d52193ffa09f
BLAKE2b-256 f3471f13627dd93088d8c9f3236a3e1263dfe667ba9e435a2ecb6e6af831e695

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 839fe34c60cb338fdbf603f6c74dd2a6dbce1f8bf616ec17b38f3d30c1a22e5f
MD5 9c478dba34e9a82fd155112df7dd473d
BLAKE2b-256 d222e5368443083d380192632f3ec7dbc49171281eb81c5b3ec41fe39d97acc7

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 60277080a41f5a30da022f1df9e2166581fee8118056f56bb1fce5830f034c2a
MD5 aa75c3d2ea3548199041b963a3bffef3
BLAKE2b-256 bef7c9f4e0d7c0b7cc98158c32af8ab7870c48368dbf2afcd8875cc4e477e043

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1c2447a4a2276f0c9c9f4cc100b4b78769371e24af81af4317382775aefc4949
MD5 982af77b8a42481bebd2e3726ca917ed
BLAKE2b-256 823606adca5f48c49fa508e71aee6ad5c178449c9bebcf02c1e4dd9145d09317

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3da52479d9f99a36b5a033d2b1994798453f255163f87dd16168f2a68b758b4e
MD5 4d50105cfe3dadc376289d3bea15dfd6
BLAKE2b-256 116c1c07f67c3c180bc98b73b965fd3914153cef22f7fcb6e60281fdca6c477c

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0236027506940e1206ab1ca1c8dd9eedcb2d3b5dc88c20e1916c1b954924ef57
MD5 79b7dc87fa610180c40563f2185ec640
BLAKE2b-256 50cd48401515318505ea9b0747b37e22c7221425de15673061dcdac93eb32f5d

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 627c8320c247058894004f2cb62309166d01725100ea4742867e7b8630f07fe0
MD5 d4ea86800dddb9aab2e1ca62bd33ad76
BLAKE2b-256 a737c00498e06eaf30b526190c549e79116602f472d5ff00a8a3d3c2dbe726cc

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6828f3c2a3f25b1b1b33f946485ab6ae893153ac8ae9129c6379d09904a0758
MD5 3e8fe4ff6767dc7c57309a34ee8b80f5
BLAKE2b-256 940cc125cdaecc39ffe3c6daab48390668b8e00c26123cbcfdc282dd08255179

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0277797329a88fba8bb7c34bb5dc6b8e6a87dd8d4b9548a520b8aa8d770404ff
MD5 f1cda6b881a72b7a3e4527bb1375b798
BLAKE2b-256 0df347051af90e38113368dd07e007e9a9da3e78a087d7a224ebe11a70300471

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8f7b33c203656ab930a9cec53ad2c34fa67038958c029aa1edd67947ad1fb987
MD5 dc72a01ee27d1b143ff050c698b9e6d8
BLAKE2b-256 5cb1f7f395eda5af2e37601ece495ffa4eb8af9324be54b8b889b5e28145db37

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e9613ee60c6888dd4ea6e0b44315b059731da2afc21c0acb875cbf77fd5d855a
MD5 f7b5151841bd1d0a985212a1c95fa8e2
BLAKE2b-256 990b16278e75dd48e587982ddcaf7ab8f6716aea1e7b4a73afcfe85708632bc2

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63b0dab64a7ba078824e00cbe3c0ee96302d02b6c0d0796432f13f097b24fdf9
MD5 5cedaeeb980f3644fe41010bbab764d6
BLAKE2b-256 d789a52495351ca13ca0580019c5089006ad69350f0ca0e0567fc3ede3b7f4d1

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ebfcfac2c566a6f92a4510c467ed50819f2f172c40b97da7f37bb1bfd424c6a0
MD5 c5b9b8fd35858ca693faa9a8b77947ca
BLAKE2b-256 6c3ead0f96cf3688b2f4275096d9cb9837126cf56b5084a677a9f90393e2f1cd

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 57f752e37b80cc020602e100fde0f84fcf38a1b4882b78ba27e472168b891f6c
MD5 951c2346176ef48aa9995bba869ca693
BLAKE2b-256 f65585981bd916ffe6164097a86986f5295c2bc658ce5baa0ccd56141931740b

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8ab9b1cacb6dcf0e269ff0b11c56067ee21a98937b8898eebe726a0ded7ff5b2
MD5 ac89c5cbcabac56d2976e8e270c980ce
BLAKE2b-256 2b0540253d3a3a8c1f5ccc1cfa5db38c7428615ac00f759bc2b6062718a13536

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70a27e6d65cc64a98ad48fddc93184e661351456a9420672774c312887fed001
MD5 58b2c55a408fc0beae2f4b61f81c770f
BLAKE2b-256 49e662314f979abe992b5398e6cf9e6cd2bb222d1dd6d1749a84e3c0bd4d21cd

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 755e3177e272066e336bfe80c013ca3dc06353967e650d846553234222bfc545
MD5 b68bc7f8642d4bfb651840b6d04b1dd2
BLAKE2b-256 639af1c9a81b80e559364308d8e613cbc44fa050e8a22e47f61c2b7a880da5c3

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 27950bbe24e2ce1709c2d618e9fc78bdda5e8262296951feef8cf2c3085cbecb
MD5 d74b3cffddf1089597e5de62ed3638a5
BLAKE2b-256 25ad26cd847add452aea438563521d033432127627362a8fb34b6333b72607b0

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d08bd0ef56c1c6ce5613d2a6bef0ca10d24f229056a77204a7c8ef56a7cf9366
MD5 c4b68108f560aae6fadec26994743271
BLAKE2b-256 8c4a6c1f1644a8d3285a09ce1ea52f9ce97861526fcce5f50f0c6bd1555fc07a

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 52574259696a9529068efb053f5500db424914410005bc2569861759fb0eb0d6
MD5 dfce7e327875e593a6be858c8aa8b2c4
BLAKE2b-256 258fcadcaaa0b6e9e68529217c5079ac2d532334849c74436cfa7f5b767a80c3

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04cc6972bfb2102b3329c4d6b24444073c6badac8793f1392457c7fac2014485
MD5 8bb713bd02c3275b683bae04ddcbf659
BLAKE2b-256 206abd7e09db9d2df24b3c052750d2c6f5fee0c4a9f94b596ebd3e6df14c439d

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c57f051362b50505df0a06f4565c1da42819ad8b6fc8c12d87074f5cc3972c43
MD5 a994de782910c5f3de20077dbd1bab98
BLAKE2b-256 56abf24aa4038cb016c9e45c71702e25df8a1d58c75fe301f63ffb1f12585db6

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ffbd7f57defc4f6cd696a702c90270b62dcf267807039bc0d9003a76be8c9c9f
MD5 cb3498d8de7d8e251cbbb87284c4886d
BLAKE2b-256 ddb0763eee3da0c5fceb7004c5639bc2e494bac4e7e9faada31de472078140cd

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a0a5368829cb3f0db76a5357be1695510b596dcabdc7abd86b0075219d32fcdb
MD5 aad8f7706975e8f1db34fd67442ce4a7
BLAKE2b-256 036c7903b0e5ed4261b8bd23683ed9df2548725b4f266d44b7122e868a3a1223

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2366735f0700b49d1f8f7792b0f413db8f4f13f6e1de9911d88d40a2840e6108
MD5 8d7f5d44fdc38c183dbe3651c8030fea
BLAKE2b-256 0475396dd341c0d906f828b94c4e7bedf5847dc83b290c81be7a290ac614cc8f

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 96b594166e96ddfa9445710a8bc5fe918da7ff6b59265b357fff4f70e455d798
MD5 66bfdc6214f332228b2d0b310ab8517b
BLAKE2b-256 0987eeffec120eda3afc0cc99bdfc135c08f7770a6c5ad55ea1759115ac8f3e9

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0c94f4c46e23f2fde4a77d9e14c8c11241c7229bf9433fc9c50ec3d89ddb4f10
MD5 776a0724af5affd110a8d32f4b5680f3
BLAKE2b-256 159300f50a1315a92c78463bab0536ef2835dec75d877495d76f7140b6642136

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0cd8887462539e22112ae8c1174ba31de6b4f964840dfbaf4259fb734d6b789b
MD5 bb18aea0c0bd2ffe83a20d48c4811b12
BLAKE2b-256 00a0896e32c9f2f124a7612de5885555148a775c246593a09b5abf2f7c620f2f

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8443b0888f390ddaa14cf36baaa77b4b60487623895bf13e990d8f2b56cf3558
MD5 bb6e1116dc537765d952c3264fb39946
BLAKE2b-256 e6077eea49f3cc5351211ab7576272f12677207206c1620288c15413cfe7ff35

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c835ef2dff11b3264c83e737c0e3f1fd81c1832ebc59b3c8d2d50c0a084ee23
MD5 677c7e5ca51140a44f83727109592bf3
BLAKE2b-256 ecf71f285670db8cf9d88397c0f41c00b42a625051c23aff4554a6e2f69c7366

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f41ff867c3c5a80b958e88b2b4fede2862807dacc65f1d11bd6af67d2d127a56
MD5 f19fe1961adbb3730207fec51cbb3395
BLAKE2b-256 4a0e88f58b9f5b13760c94208f3d3399d0ae00dbeef06df5acd5bf98e7630959

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e166dca28f87e7779045a456b896be4e46d21810dda97f1343d7094172ca4733
MD5 f9a0e58e27c51d464a49f1c59d8e7198
BLAKE2b-256 ee5c007e1b5518dfc5513b05eb603d7c21bf8333d79ecabc5298abf5900eed28

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 85d8b9c9a0f556456b5920eb549b431c70dbf1cd76e2aa8406f248fb8ded3c1f
MD5 f417daa9288a80ecb840b184833213bd
BLAKE2b-256 83fe556d411c3aff9794923948d57d9d1092173bdb676a672e3202c49749164d

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 12d8df7d2b701e910ec7a233476b033a48fff40235152ac164ebd968d2d2ab98
MD5 255f04693d5d60d0edb7e2ae6638f936
BLAKE2b-256 a73ce943dc71bceab608b4524599858060cb163dbae294aba2a5862d9f42e305

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7664321da0592f9fd67e94636cd0cea3d39a5da13cdebb2d439d3bf76264e31f
MD5 36a4aa141f2c0f66f260db858ca0c9d0
BLAKE2b-256 9d1b0fdf4da64b49319969f73791b0d6b417ab3a8c293d3c9103f382d6d863e1

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 31e06faabacf8cc19ca5771c1eb0a9144a162d2ae75372f15b296f4cbf308dd5
MD5 d234f54c7ab0122472c22f4860cf8f8a
BLAKE2b-256 cd5886b8e4b2fc1dd774b7a2b6873af9d90f81d8b86d4482f5a2a1d238198366

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b695ae35f3a11df8cd0b6d8254aa27312ca6e34ffe6ea3848e967cae447b890b
MD5 67b39a21653c13c22ad7c562455dcbf2
BLAKE2b-256 d75f8cd1c92d5e02a3bca8e30f8ecd892d24097db646b6e366c21dc3d697df81

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 498c516e6daad8d819129e5decbb257cba4a2b758a6c9789f57f6bdbdd8d5460
MD5 01645a7ddaa3c28371e4fee9f6fe3fc7
BLAKE2b-256 c1cf420939cf36f159ac976e7376afafe1bcb8fda251f31ad257c7f33910e42f

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 40156ad9c84e3526e7bf32562fbfec9d9a37848d3d8e52987982103db53f76ad
MD5 378ce00cd4f87f963f76d5259dce0cf2
BLAKE2b-256 f6d343ed456be11a0da88cd967a6e4a7bde7393d290272b70899a9fb36958acb

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5ec09840ebc2cd9e3f61e4fa8598d2b9df19bb7df5eb4ad59730348ca3290083
MD5 dd89964b3211216bfa80591a9212c60f
BLAKE2b-256 4253b95d57b37908dda35a15d300b83b7ab85df2b444054af0e2582df2f0b3ee

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a1d018d00793e964774548efa11cd2eb4f5f5479b7c5ff1ce7cee3e793a896b
MD5 df3d131af879e8874a79884e063a7046
BLAKE2b-256 0a10375b230198220abb22035a190dc035d581f38ea6ff9fc06d484d1aae1523

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5a10d3d370ec539edb9dead149b62d9ff7e6a2ae76995af9e2c1fcdf505f06b
MD5 b258e32c475511101317de4a7727d878
BLAKE2b-256 94d6bda3734e9e1d8fbb2c6400c8f3c167b3cb5e34188a46de8c009e8da8619a

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ce571f18de5ad27ec84ff69caf4c78ced65158aff710ec1248c5d606aeb32a77
MD5 4e56aa3dd52e78d964fb932d57aaabe5
BLAKE2b-256 4832ec04413536debc1ac31d8e82366e6fdbd29fcbe418f6662fa63c0522773d

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 644f9adb34b872bf456c9bd47be5108aa787fe15a1a05e9ee08f5c783b8b7894
MD5 bbdbd21cf6e67b42cddf4a3b11f341fb
BLAKE2b-256 b688508f490c90fd379f5c82c8f996689b5d6abe9c7511630be29b3898ea0ea1

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 edcc814f9bd873a9119cb9889250dbbb8f09565983f1aaba0825089b76f7ac93
MD5 7095778e246642844db3d08a49e8af9a
BLAKE2b-256 3e283c1a83eabb5c27e0e582acb50ebf2ab13cd93816a04932097e7e0d1818cb

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d0e09b53878312a012b3dffa00e2eab922ff7b5e3b4d38572978977245e12dcf
MD5 b597984e89de9d163dcc360aba868f86
BLAKE2b-256 079dfca9d2cfe0785d0705e6c4e392b332484e3a907134cbc5cfa84afb6e7a4a

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79dc9277b65a84a8e722a476f5d4c93ebd2c92264a2cc836e0b214409b162649
MD5 378fc9dd437138542c65acb40bac58c6
BLAKE2b-256 677a35900b3eb0085c2f67f30dd8aedc39623ac040ecc48740800823c36e8672

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c21a38548eed329e010f6aa7a1755a1554922c0bbb826b39ec44f8336467dcea
MD5 8cb590630c7fdcadc09795c439d54c26
BLAKE2b-256 9c4e3577dc91ed61e471898cb40afed28fc429d0b321176dfc3e23bebbc3cd50

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 230fc87d4ed02a21ba297613b2c5721760ea83e34dba65525f42d05bd19e9f3f
MD5 bbafedb4c8de62f1e3bcfba0ffd32bad
BLAKE2b-256 b520f6a2135ec01e66b2ade1c8bc932698df654c6816fe07a80259a0f5145ace

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbf4c1a41d3cfe133d55fd671fe0249a82a2c8fa767a46d564a601d40ed9eba0
MD5 6e26dd262fef5aad6c2ecc56b944fe7d
BLAKE2b-256 3a8e90c5139bfb6db611217a899fa422c6bc01eb24c93dfc1be9c2d7d3c61e32

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bba17f8cac66e79d156df1f80931d9f5fdd6f6f8445e9a5dda2a4fbd2efcf44a
MD5 682e74a778765d491ec515945ae03453
BLAKE2b-256 248f423d50186fb444e3ef2ec633ccec92ae6556dcc6f712bf573a1b3f4364db

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 21cc4b78ff4d7e87c25e1c840791eee631267cf176529de655469cf74dd1646a
MD5 1c816fd7905aebe018f23c4cdb10f4c6
BLAKE2b-256 56ebdabad1414264e08ac0437013c838e9361163fc0ca97739ed01704d75ac9d

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dc31bb544cc9435be094755bebdcced2d8581354bd0d4f2129f4c5c14003bfd5
MD5 06f3a5fe7baaa6123c845385d403ec22
BLAKE2b-256 ef36d5d0643d3fad7e08ea68d58a28bf26394659c0e15690df680935c0e2d151

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 109b3a4addcf37d326f1399f4d63c099eefbbfc6194c4a724f08e1882af4f42f
MD5 538cca1d7fa05c2da7081a090ccfcbcb
BLAKE2b-256 dd10aa50d14cb15e215db5edc41750822ca358a47a4f3bb4dce2f440b985f4b0

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e77525df9fbacd1e9961a9f03100aab6462634fe53a367ac7e1237bbc5063b8e
MD5 5498d5551d07697950af603f4fbcc0a4
BLAKE2b-256 325f9cd8561bd29a70c4c7d426b9adcbbce110bcafc1a487d9d3ad852afcb0b5

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4a1cf236468b7a58760a5ae0c1f166ecf6383ebcda01dd5d0640b7995fd94e15
MD5 98a00451d7ca5f298460fd25729cf429
BLAKE2b-256 963391f1d4dc87efe7b78c5691997b2bf2fd70f6d9c806782571fbb7d7976cd5

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2dfacecf5f830b32cedcc2b5f41521eb38bdb93bc0f3992fa24d81d74bf7d570
MD5 8c24f33bd76c5bb03bbbccd6c39db88d
BLAKE2b-256 b1890407ce98d58937241ce91cf4df103d2aa47deee57649c7b480a6efcd1b54

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 01d76296f4a2477c8038276e926763aee89bb308c726afef3485ee39695bf0dd
MD5 807c44c5ac52c88af5716596be1c818c
BLAKE2b-256 6cce84160204407c9cc689adbe54f0dd670b382a6647feed5cbed0a411dda696

See more details on using hashes here.

File details

Details for the file siri_question_answer-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for siri_question_answer-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 894c0d0f7925866b7bb26e16b51fb203d60e1895ac35acb9b20a0bdd47a2461f
MD5 bc4b0438ec815f61db34f9e8599cd50d
BLAKE2b-256 8e06a715b3658338a067c26ce1c4e24ba321298498ddd632d46cd2eef89a6a67

See more details on using hashes here.

Supported by

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