Skip to main content

Python driver with native interface for Proton

Project description

Introduction

Timeplus is a unified streaming and historical data processing engine in a single binary.

This project provides python driver to interact with Timeplus Proton or Timeplus Enterprise, the code is based on https://github.com/mymarilyn/clickhouse-driver.

Installation

Timeplus Python Driver currently supports the following versions of Python: 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, and 3.14.

The driver fully supports the free-threaded 3.14t interpreter: all compiled extensions declare free-threading compatibility, so the GIL stays disabled when the driver is imported. cp314t wheels are published alongside the regular cp314 wheels under the same package name — pip on a free-threaded interpreter picks the right wheel automatically.

One caveat: the optional compression extras (proton-driver[lz4] / [zstd]) are not fully free-threaded yet. lz4 4.4.5+ already declares free-threading support, but both extras also require clickhouse-cityhash, which has no free-threaded (cp314t) wheels and whose sdist does not compile on 3.14t — a free-threaded fork is maintained at timeplus-io/proton-cityhash and will replace it in a follow-up release. zstd ships cp314t wheels but does not declare free-threading support, so importing it re-enables the GIL process-wide (everything still works, just without free-threaded parallelism). Uncompressed connections — the default — are unaffected.

Installing with pip We recommend creating a virtual environment when installing Python dependencies. For more information on setting up a virtual environment, see the Python documentation.

pip install proton-driver --extra-index-url https://d.timeplus.com/simple/

Quick Start

  1. Run Timeplus Proton with docker. Make sure the port 8463 is exposed.

docker run -d -p 8463:8463 --pull always --name proton d.timeplus.com/timeplus-io/proton:latest
  1. Run following python code

from proton_driver import connect
with connect("proton://default:@localhost:8463/default") as conn:
  with conn.cursor() as cursor:
    cursor.execute("select 1")
    print(cursor.fetchone())

above code should return (1,) , which shows that everything is working fine now.

Streaming Query

from proton_driver import client

c = client.Client(host='127.0.0.1', port=8463)

# create a random stream if not exist
c.execute("CREATE RANDOM STREAM IF NOT EXISTS"
          " devices("
          " device string default 'device'||to_string(rand()%4), "
          " temperature float default rand()%1000/10"
          ")")
# query the stream and return in a iterator
rows = c.execute_iter(
    "SELECT device, count(*), min(temperature), max(temperature) "
    "FROM devices GROUP BY device",
)
for row in rows:
    print(row)

the output of the code will be something like following, as for streaming query is unbounded, you can add your flow control to terminate the loop.

('device0', 747, 0.0, 99.5999984741211)
('device1', 723, 0.10000000149011612, 99.30000305175781)
('device3', 768, 0.30000001192092896, 99.9000015258789)
('device2', 762, 0.20000000298023224, 99.80000305175781)
('device0', 1258, 0.0, 99.5999984741211)
('device1', 1216, 0.10000000149011612, 99.69999694824219)
('device3', 1276, 0.30000001192092896, 99.9000015258789)
('device2', 1250, 0.20000000298023224, 99.80000305175781)

Insert Data

from proton_driver import client

c = client.Client(host='127.0.0.1', port=8463)

# create a random stream if not exist
c.execute("INSERT INTO proton_stream (raw) VALUES",rows) #rows is an array of arrays

Pandas DataFrame

Big fan of Pandas? We too! You can mix SQL and Pandas API together. Also you can converting query results to a variety of formats(e.g. Numpy Array, Pandas DataFrame, Polars DataFrame, Arrow Table) by DBAPI.

import pandas as pd
import time

from proton_driver import client

if __name__ == "__main__":
    c = client.Client(host='127.0.0.1', port=8463)

    # setup the test stream
    c.execute("drop stream if exists test")
    c.execute("""create stream test (
                    year int16,
                    first_name string
                )""")
    # add some data
    df = pd.DataFrame.from_records([
        {'year': 1994, 'first_name': 'Vova'},
        {'year': 1995, 'first_name': 'Anja'},
        {'year': 1996, 'first_name': 'Vasja'},
        {'year': 1997, 'first_name': 'Petja'},
    ])
    c.insert_dataframe(
        'INSERT INTO "test" (year, first_name) VALUES',
        df,
        settings=dict(use_numpy=True),
    )
    # or c.execute("INSERT INTO test(year, first_name) VALUES", df.to_dict('records'))
    time.sleep(3) # wait for 3 sec to make sure data available in historical store

    df = c.query_dataframe('SELECT * FROM table(test)')
    print(df)
    print(df.describe())

    # Converting query results to a variety of formats with dbapi
    with connect('proton://localhost') as conn:
        with conn.cursor() as cur:
            cur.execute('SELECT * FROM table(test)')
            print(cur.df()) # Pandas DataFrame

            cur.execute('SELECT * FROM table(test)')
            print(cur.fetchnumpy()) # Numpy Arrays

            cur.execute('SELECT * FROM table(test)')
            print(cur.pl()) # Polars DataFrame

            cur.execute('SELECT * FROM table(test)')
            print(cur.arrow()) # Arrow Table

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

proton_driver-0.3.0.tar.gz (414.1 kB view details)

Uploaded Source

Built Distributions

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

proton_driver-0.3.0-pp311-pypy311_pp73-win_amd64.whl (183.8 kB view details)

Uploaded PyPyWindows x86-64

proton_driver-0.3.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (209.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

proton_driver-0.3.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (206.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

proton_driver-0.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (177.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

proton_driver-0.3.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (178.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

proton_driver-0.3.0-cp314-cp314t-win_amd64.whl (225.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

proton_driver-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

proton_driver-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

proton_driver-0.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

proton_driver-0.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

proton_driver-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl (211.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

proton_driver-0.3.0-cp314-cp314t-macosx_10_15_x86_64.whl (212.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

proton_driver-0.3.0-cp314-cp314-win_amd64.whl (197.5 kB view details)

Uploaded CPython 3.14Windows x86-64

proton_driver-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (979.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

proton_driver-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl (975.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

proton_driver-0.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

proton_driver-0.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

proton_driver-0.3.0-cp314-cp314-macosx_11_0_arm64.whl (195.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

proton_driver-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl (200.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

proton_driver-0.3.0-cp313-cp313-win_amd64.whl (193.9 kB view details)

Uploaded CPython 3.13Windows x86-64

proton_driver-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (986.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

proton_driver-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (976.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

proton_driver-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

proton_driver-0.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

proton_driver-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (195.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

proton_driver-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl (199.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

proton_driver-0.3.0-cp312-cp312-win_amd64.whl (195.2 kB view details)

Uploaded CPython 3.12Windows x86-64

proton_driver-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (998.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

proton_driver-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (990.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

proton_driver-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

proton_driver-0.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

proton_driver-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (197.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

proton_driver-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl (201.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

proton_driver-0.3.0-cp311-cp311-win_amd64.whl (194.5 kB view details)

Uploaded CPython 3.11Windows x86-64

proton_driver-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (958.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

proton_driver-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (951.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

proton_driver-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (981.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

proton_driver-0.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (985.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

proton_driver-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (198.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

proton_driver-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl (201.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

proton_driver-0.3.0-cp310-cp310-win_amd64.whl (194.0 kB view details)

Uploaded CPython 3.10Windows x86-64

proton_driver-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (905.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

proton_driver-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl (898.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

proton_driver-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (926.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

proton_driver-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (930.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

proton_driver-0.3.0-cp310-cp310-macosx_11_0_arm64.whl (198.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

proton_driver-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl (201.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

proton_driver-0.3.0-cp39-cp39-win_amd64.whl (194.9 kB view details)

Uploaded CPython 3.9Windows x86-64

proton_driver-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl (899.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

proton_driver-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl (896.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

proton_driver-0.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (920.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

proton_driver-0.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (925.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

proton_driver-0.3.0-cp39-cp39-macosx_11_0_arm64.whl (199.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

proton_driver-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl (202.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

proton_driver-0.3.0-cp38-cp38-win_amd64.whl (198.2 kB view details)

Uploaded CPython 3.8Windows x86-64

proton_driver-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl (904.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

proton_driver-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl (902.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

proton_driver-0.3.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (929.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

proton_driver-0.3.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (936.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

proton_driver-0.3.0-cp38-cp38-macosx_11_0_arm64.whl (204.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

proton_driver-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl (208.4 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file proton_driver-0.3.0.tar.gz.

File metadata

  • Download URL: proton_driver-0.3.0.tar.gz
  • Upload date:
  • Size: 414.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for proton_driver-0.3.0.tar.gz
Algorithm Hash digest
SHA256 272de647ebb988bd4855dae134d7de8ac559c8424424d1a269856c5a007dab6e
MD5 aa56209178ea224e5fba75646e241cd8
BLAKE2b-256 4eaf911b7d3a3bf059b05689b23b67842e193195efbcfb9f7a710e36902357e7

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4d664aaf2afbfd8aecbfd64a6c5fc74f165347b018e61849e6e14f2f0efdc529
MD5 dc7b919159d7083baa60d902e32496e4
BLAKE2b-256 721e130dbd3e02732ca4f93a815344c2dc11e79ba4af9240e7f8f056cf1792c0

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b9d67af8fdf3ae51c215b4e163f523f0ed1702fea570321e25311236804f47bc
MD5 8c9f7dec450993ad002414b2a001448e
BLAKE2b-256 0be9827a9abc7c3bbf036f081f86580729d034941579c04de1d6f99f179d9603

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aecd060685f2d04e6fe9e7ef5dbd6fa61127623887b57dc8527c5eea2d131390
MD5 e36b2c9bb2c99bed13aa73dbb1551c3d
BLAKE2b-256 028becb1357482b18314d4d8a49fc18a4b6761796ca5b5d775ada05ef29c0921

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79c3242e5aa049bf6fde90bcc4d13827e53554da730a46d47606598e869fc643
MD5 54de4b48589ea2bb78790acc7581b40f
BLAKE2b-256 60447cce6a5d4562b99ba4dbfd5d9d41957271f17a880da9839b4241153a3513

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2d82904e8910cda8c73fbdc7696bda1e4f5eb77c17d7ab2024d84e9491c0fbbd
MD5 e215b9c566f1d604e7c43c1da619f11f
BLAKE2b-256 df018441f3b5da30efbf9c96caf204199930ba013299599bf7f3725203fc600d

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 264567adb9a1638dc6628e678272c4ef62128bca005873f31cabb011c0c1b54d
MD5 2e6d40dd55be9745477d091cce9a377a
BLAKE2b-256 5e560f810894c41db1bbec1602066e02e27c9db4d31ee4e017606fb3507f7cec

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25d4312cf4b5ab9efd2b0b87d31a6c7672feda937fd95df23ada1809b8a29aa8
MD5 f8b3475c989f3658f9618e42905ce588
BLAKE2b-256 cdf9ffc267c06499bb8cf9d59580249ab41915321cc809453a2094951c2c65e9

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c9f721682306892a89fee3685d64474e6e41045710c40a9475245313089623a
MD5 3a863883061204b47cb7a02938d721c6
BLAKE2b-256 d09f67b9542b5f4195c5391b30bdefe2b1cd9e2da04bbf67487e4c8999f59afb

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c95bd5ead9f95068591492d9dc80ebde23aa2a051fa2e9ff4333a5a372a1d175
MD5 d9e8dc04259adf85f4bdcdf5f2e84ea3
BLAKE2b-256 00505aa5058d5f73f8380429156db2bae01aa60e2432828acd2115a7dd1f8cef

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8067542bf1df9459cae3783d368e5ac534967c39ea207cbdf2c2c9acec0433b9
MD5 0480552069bb1c5d2db869ef8406b87a
BLAKE2b-256 c144840588a532a35b394b1609f9a358d0c82f78346cc5772c0ea83939aeca38

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b94e729d0cb5da9cb3fd001fa5fd2724b7678791a7da0ae572da71903d536d44
MD5 92a76fadc2b7d0107ed1ee1ea4225b87
BLAKE2b-256 409af16caa5e9abe089159c7fd6e947f351890b8c511985e1015bd8a1b1a2753

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 93b5dd107e5bd25a4f5333e7b8c86a5ee60319cc4b2b4a02b538112514d3cd9c
MD5 448fad420325e1d78104df2b48132b01
BLAKE2b-256 b740281660e47e65e8628568a8893d0b72d413e3639c29fbe89732a6b51096e5

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2cb799b974060d370b7b32d95c5390d6ca952010bd1db94e9be26c21627850a8
MD5 b8591ba414fd727b784f274a0bbc4f08
BLAKE2b-256 f827e705fcf2cfbbebfb59c1473c4694ec510ebb3a08a8ed40f5df11ea7f5207

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 36948ababa8876a46ecf73c242777026843dd9842e40564d54736e1d4428ee3a
MD5 ff9115a24bc29d5b17e12d2c0b38c9c1
BLAKE2b-256 62e22e00fde09ec7dc3fa992f6575793ef563797e0486bd55d2b2f9301f99a69

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a809fabb839d68d0a65150a9e2e2e22b51b219503c20b167e46602bd172da7bf
MD5 6c747e77e47f15e3c399011bb47d658b
BLAKE2b-256 adeaab92831f497b41d9c925bc08e4dd587f23f4e39a3fdfc41aa45af0b63cbc

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 60b1f14ae6dfb2e808ce336a828fb63af61a2bb08d43c0cc6e839c773ab61756
MD5 4648317dbebca7ebdc99026acac6b136
BLAKE2b-256 f590a1583fe6e6b14632d7c9e256f94374816baae916a627bc9ed9a90ecf5722

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2c4cbc3832dba7acaccb1a15ad5efc90d989714fe8f45e0d397dd20c136cc8a4
MD5 2efdd60a0a2da93a3768db12115e13f2
BLAKE2b-256 df94230412b331a65654a2fdcb7bea516554f404c0ec1f8a0cc1388b42113d0d

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d4d82171daf53d2ba2351572fc302e42bfe4c918cf6551f9f493fb161b5ed92
MD5 d0f6b7592821679aa2cae617611353bb
BLAKE2b-256 85b3883c16d1f132eccb33679a1f4d98dcdc026afa6226658b7f08052e7e05ad

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 eabd346d817addda51fb9ce40a849b3e4a34aaff366be94a410d0a33d483957b
MD5 2bf75ad92c64f39e7ab9295f728d894a
BLAKE2b-256 b3fea7dcfa61291e025018573a985394333d248caaaa576d80d43fce07a8823b

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5af48c020db17898fab8f3a22f4c283d8424c2ab30faaf768f1cdd694beaefc5
MD5 1a604ee199af09e4a8e3c2d834e5638e
BLAKE2b-256 0141c5dbeb4cc95656792048cb8e6eb45f63ac9030420989ccb8bd4b3a4fab5a

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5075ccaca746291db7e5580a0433c8bfc42d60c5b5916e8617f1ffad72797c96
MD5 f89305031a21d50b9be2641b10f9ebb5
BLAKE2b-256 70768846e873df26f9a7be884a7f447fa146f832ff55e9b254e3781b82de358d

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa2ee0e2fec4e9eb37fd852f6329567bcdb05914ea1a7ea76553a972934602a5
MD5 0c7fd66c565f770206159c3d6a317d84
BLAKE2b-256 d69c5967b9281bb0476edf478e1d124a2d6b408d3be8e562c7fb31da6318ad60

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a36e511ba5e153630f1c0c199533867254f34ff8b9d084550e79b862539e0d45
MD5 6d219bb09f49392b9aa8b2979f0ff0db
BLAKE2b-256 9afb55baad83a6acf124aa85b706d240ae246580d7e41f8eedba2292d03f1649

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 815d53a3b8190a0315d00810b6736765bdecb1e8aa3af170933e95e88630d22d
MD5 89e94aef17a5834676d723362956b359
BLAKE2b-256 972c4c7d312b89607ede34f5911ec4615f038b793aff82b23c008ba6cbf70371

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8cfadc68bf2c656b467adafcba6d936e38e2e09becfde008ef12b3a24b30fc4f
MD5 f03f7c751f0704d61d948f64669c69c4
BLAKE2b-256 d631e96f8e97de0ad3df5ecb9632b275e5f0a6c9b6e0c2515a0ef9c25583c16d

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 126a8054679a15d30e2d0d046407adcb1e5237cff84cde18526f3e7aa3d3f1d2
MD5 851d510f14d9d9206ecc01e13598dbc7
BLAKE2b-256 5fda68c2fc405c52316da22ad8f0e8e339fc31db9e4afc2d888cfb9e1084e18b

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 69e6c73f79cf6334aab972cdd5bc042415ec3b372b354d00e2103f914d60143d
MD5 64cd51165957dbae58072b0c644a36aa
BLAKE2b-256 9a94d3ac74a4194f87c91e45d1c4badaede86811137a8b5243f3792a65967124

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 332750607e90556a1f3130ecfa7f7cb5cdc026da4dc686dfd2cd5d8888b108d2
MD5 0d0ce706d6f37ad8d47868dd3c974481
BLAKE2b-256 e24eadf49bb63bf98b218a4d4e0ff6863dde8d3f14d48c4ebba00a1d33d04f51

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c538642a1eb5aed75a078fb42a31c2464ce0c00203ab7fc5a5229b38090cf570
MD5 9f8d528b0e5dc872c51b962993f1829b
BLAKE2b-256 e347ceb79ef33b622453fad5424c588a02cbc57108ecf300c516b6d2d20d8ae8

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1f226bf5da4591fac96fe75f632c1c0e6befe58b37d425f03c4ab7946d5302a9
MD5 2fdcbda6f7e7daeaf1964bf8c0c43ff8
BLAKE2b-256 9c2656d29ba31da77cd780d7628fbe61008fae84e6313eba34c5fa3c93cb02c7

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 62d069713cc1a2da2650c24cc30b5cbe74fd289d3e425a185e8bcd0b4ee74c67
MD5 c4355525ba1ecb73dd9223a0422255ba
BLAKE2b-256 ad669f854d69026093c36a2253d5db467b63f14089d31a9c5db1d9ab76510f4d

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b1ccee0b59e832ca9688bb787fde2d8aa41055a852286b07c5385810d51c376
MD5 390b98bb14e8233eb130c47ad87f9d72
BLAKE2b-256 e51261041b62951d97aad0a0995787c16f10c232b9bfd8058df9b703a1b6d28c

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 dd07b2c7faf89644a3edb336ccb27cb4510571c25395d3e9899cf4dc9f55bf62
MD5 b14c6e07bab2b8781e93195dc17b0daf
BLAKE2b-256 8e48712d52576d2813d8a5641df89ad57876105794ce81381db714c94aa7f122

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c1633b11e5c2fd8055b264de7c89e777e0cfbf0b26dd5bbc3afab260449bddde
MD5 6b00ec46c884c4e103b21b34e044533d
BLAKE2b-256 aff2fb3d150e14441e19b6a1df952eb48c212e44a1f47de80a0c0b6d011b23d5

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 84ab52093b21efd726509025721c2df2e5d933f5921bf0d7d498eb7c4486f66e
MD5 a0a977ac38e2b6a421d59ba7fd903fd9
BLAKE2b-256 aa2385159b327fe1aee03a230e7e1daaeea2212719d2f9c6a551acab1e52f577

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bee133c1a81a91e9bb705bd5dd23f3499ca5f2a53a03fa52e8b0121cfdc28029
MD5 8ced45474c35a2bbeac64a8acc701063
BLAKE2b-256 e577834c43450e8904f7513fd1e88064e79b5dafb451ad6d545a13e9f79fdcba

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 760b983aec25ce9e815f8448ce1ba4c1760c7efe803af2b6634e2291d3f6a35c
MD5 d14e57f25894af487752918e0f3888e3
BLAKE2b-256 8b5e2f4896054ab8f758b0efb29ecfc8005bacd582e40b6400c2433c0c6e03ea

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f8be1880369e10853a292a7947087b701681eb522cefcbba2f75c32f61b0f569
MD5 c4f543edcbbb1554721d340eeaa4a567
BLAKE2b-256 1f08cb2a5cb5717cc644f8d12b671572b5ddae0137cdbaacf6e859d92b97817e

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7aab01aaa35fe8798d9b85c5dd661d8a5cb3ea03b514e4c6b8e85f86a982ff5c
MD5 ca9fa095ea630f5f1ca1794ee803a74b
BLAKE2b-256 445d00c9c0999ccb090b7035220211d179f148348cb53255f6b63c28b2f62adf

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7b58b3324c3b96aae23ede2ffd33e0bbb05ae1ccbf4bab19439b9e48a99df298
MD5 afaefdc2a05323d11edf4d6d02ea0192
BLAKE2b-256 1424229304a288f5e0e231e9e756f11d486fa6c3ccd7e6a04fc9bbb9c365916b

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 be05fadd613d784cc348e432250c5b0e3362eb49ecf23e730458c82310da4832
MD5 4e7727a9214e77846cafc35068231de6
BLAKE2b-256 895d42ab3cbe69c997edcfc6a907bd36c281f13081fbe547056a9e8a5f280dc2

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f82040589bfe106aa98f1a08eb3f29024c257f27a8294e1a644f683a7f2665b
MD5 99fa62cdfb87b97b7f1cf39d76f7be05
BLAKE2b-256 aa95d93034599b677d5923fcdf1927de315a8c6fcf6432ffae15b7051fb30582

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0f42e6bce460c68e5e116a399894b13094816a3a240329b1024f5bd0585cd708
MD5 a3533015822c8b9a88e775a78b16ff53
BLAKE2b-256 bfc268c17bb7258a1b4dba1e0ac266efda3f5020f4f7b0bcba743a7f3a92e777

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8f70bcee1d5a5fa575152b204421fbf7cb08234e05cb634dc0a1be053edcb5fc
MD5 8c081e47911c7cc78dc0550f75d1b1ee
BLAKE2b-256 a72b708856c7463ce94a9b26ef48a3c673de7155a8d045a408b4b31dc619e356

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 67027043c03c9d76e422e98c9a6a8b5fe8db815be036b7a10f64d1498b99c3ba
MD5 33b21abb63bc06c9adc20428b7193440
BLAKE2b-256 19cd57a28c0f1c8b030e8e45456ab9badb683829a2ec46df8f40ed028bb4a2a9

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62e9d6e87070cf3d844608805fcfb716211c6a83da38186e085e92686830bd03
MD5 7e1a365dbc7a6ae1f400319051922a58
BLAKE2b-256 2372f2a0502ea5db069199440c696b724c0c23c5909f102ae92d16a7f6e86ef7

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 03d3d8d459917625025303e4893e74dc2735534245ac7ce602fcb91f4ee5f176
MD5 b33e7db812de3b4e29c6cb4b8b1c39a7
BLAKE2b-256 7683fb4e92754ff7104a33d03a61dbe024380e774c5b4c198430354f8eb165ab

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f94934055fcd059ad19d0e0644755a8c71993bb04b8652fd9ef5b8c90492d2c0
MD5 f03d2ed936adb30194f3b834ea24fb37
BLAKE2b-256 0d2613b4c8af23a4cc1d84f714863410bc013b9373022b54ebc27ebc87551277

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 992a8ce1ad230621abad1ec953704d3625949906dcf9b1d33f5c57d16b7b7df6
MD5 064a9ec3cb4a716edaa0cdffdfba4c7f
BLAKE2b-256 a89094551392cdd367ee80e93bc909d4c99707f9f4f77e4a62007cbc92c3c6f1

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4f595d29add84b71d30732a57cdad799ccac5375d2b924c7ff839d50569b5f05
MD5 b786e3391204ac508238d4c2beb252ca
BLAKE2b-256 1bd1501959286a48081fc5fbd77a4909b1b0b7ddbdf8b76cb34560526f8067d9

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0564e7b0049b882a266dc67b228af51402b8ac27fe8d08b6cf7f90d19d5360e0
MD5 b8e5f0aaa4f8c858f7b0f6c1007c5b1d
BLAKE2b-256 9143bc447e08ce7ffed57ea3ff37f04d46bad8498e25256241d3de15053a986a

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e6333b00ed860e101140eb9b557ebe533677a1655c1a3d5a08a5739ca51ad2cb
MD5 9c6f49008b14e02786094617759306b8
BLAKE2b-256 df5eea7bceb8141cb57382d887f134bc85ea54642be495403b5752a976962888

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1349e196278ec8ae8af22a9cc7873fcd941ded9d8bb0bcb103495fa8aaa460ca
MD5 6e0e12d057753f3fec06eaf443f85c31
BLAKE2b-256 d9cc6eb390806903ecbc22b7f839bd7e72acbc0acbd2b4475cbb9ca19b25659c

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 06a9e7100fd4c8657e0ebe92f7b237786ae40f7040320ea2edbb60a5436cb7dd
MD5 31ef710372f6593f276085616ef267f2
BLAKE2b-256 83026aea783c0baec4468072f2540a1e91e526fc6a956417fc3a853993aff2b2

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7b58060271dad0a84912531e6dde9430b162c7d28ad8eebba523ab1d8247fd6c
MD5 0f40e1e1d19077016b8b1dec7312bb2f
BLAKE2b-256 8d4380b1a5ab50d8837ec6544e42fe7120884ac22c5de68b5a67ecd44fab29d0

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7dd378322df66c32c65ccadeedaf4ff0c88a0196165547a518a0f7ce3a8388fa
MD5 7806451f964208931148915d3675ee7b
BLAKE2b-256 093e97c4ab35a3ada09360c7efa03818a350ce50e9f90de75b1e27066bc6eeac

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7a374c4544fee578cba97a8f35c2343082b95dff1a981ca008af4b32751acca1
MD5 1b3a3b77947cdc44737553b7c2e42bcd
BLAKE2b-256 ea756a8caa9e6d0bd2bccd9231a3674ac157d082093903ed4188e7f6ca5d5d73

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 42a9aab06ababee2d1d96dbabe1a3cf71ef83ee17b08c09298b6557fe14e2c8a
MD5 cda925328d637119f113371388ac62e3
BLAKE2b-256 aa649bb31175cc80c97fb6465ef207f5338e31820d1d1548ed6811adafb041cf

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3edcd418f8d06d6ffcb5d046a88dd6506af109eae98668d1af76959e17b93aef
MD5 4611195f914254d8b6a0162076d48726
BLAKE2b-256 2ad52f08d23cfde9fe324675354939a19f8fcfeb6aa1300071225c32a8f5bb10

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc94e39d0338ebf8bb74a163dc4f12d93a33f67943925b2951eb97ba3ad9f01a
MD5 36b4614254973666344104a21781fa8f
BLAKE2b-256 4e6e986bcde0876ca2d9245bfb7f8de6f3e3ecdc5f8ffa9943245bd99d1c2e26

See more details on using hashes here.

File details

Details for the file proton_driver-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for proton_driver-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b21f91210307afde5ae0117ad84e72925f5342a8e6bb5f3da0ce827dcc22f1e1
MD5 74e66ea971013dc6eb9f0d296e7992d3
BLAKE2b-256 95eddbd6f78b258467fc059cc23d6aa58c30a020c65853029b6118cd3f9eae19

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