Skip to main content

No project description provided

Project description

Web-RWKV-Py

Python binding for web-rwkv.

Todos

  • Basic V5 inference support
  • Support V4, V5 and V6
  • Batched inference

Usage

  1. Install python and rust.

  2. Install maturin by

    $ pip install maturin
    
  3. Build and install:

    $ maturin develop --release
    
  4. Try using web-rwkv in python:

    import web_rwkv_py as wrp
    
    model = wrp.Model(
       "/path/to/model.st", # model path
       quant=0,             # int8 quantization layers
       quant_nf4=0,         # nf4 quantization layers
    )
    logits, state = model.run([114, 514], state=None)
    

Advanced Usage

  1. Clone states:

    logits, state = model.run([114, 514], state=None)
    state_cloned = model.clone_state(state)
    
  2. Return predictions of all tokens (not only the last's):

    logits, state = model.run_full([114, 514, 1919, 810], state=None)
    assert(len(logits) == 4)
    
  3. Specify token chunk size (default is 128, the larger the faster prefilling is, but you will need a beefy GPU):

    tokens = [114, 514, 1919, 810]
    logits, state = model.run_full(tokens, state=None, token_chunk_size=256)
    

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

web_rwkv_py-0.2.0.tar.gz (420.6 kB view details)

Uploaded Source

Built Distributions

web_rwkv_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

web_rwkv_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

web_rwkv_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

web_rwkv_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (4.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

web_rwkv_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

web_rwkv_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

web_rwkv_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

web_rwkv_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

web_rwkv_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

web_rwkv_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (4.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

web_rwkv_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

web_rwkv_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

web_rwkv_py-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

web_rwkv_py-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

web_rwkv_py-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

web_rwkv_py-0.2.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (4.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

web_rwkv_py-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

web_rwkv_py-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

web_rwkv_py-0.2.0-cp312-none-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.12 Windows x86-64

web_rwkv_py-0.2.0-cp312-none-win32.whl (2.8 MB view details)

Uploaded CPython 3.12 Windows x86

web_rwkv_py-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

web_rwkv_py-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

web_rwkv_py-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

web_rwkv_py-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (4.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

web_rwkv_py-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

web_rwkv_py-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

web_rwkv_py-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

web_rwkv_py-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

web_rwkv_py-0.2.0-cp311-none-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.11 Windows x86-64

web_rwkv_py-0.2.0-cp311-none-win32.whl (2.8 MB view details)

Uploaded CPython 3.11 Windows x86

web_rwkv_py-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

web_rwkv_py-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

web_rwkv_py-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

web_rwkv_py-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (4.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

web_rwkv_py-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

web_rwkv_py-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

web_rwkv_py-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

web_rwkv_py-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

web_rwkv_py-0.2.0-cp310-none-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.10 Windows x86-64

web_rwkv_py-0.2.0-cp310-none-win32.whl (2.8 MB view details)

Uploaded CPython 3.10 Windows x86

web_rwkv_py-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

web_rwkv_py-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

web_rwkv_py-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

web_rwkv_py-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (4.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

web_rwkv_py-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

web_rwkv_py-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

web_rwkv_py-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

web_rwkv_py-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

web_rwkv_py-0.2.0-cp39-none-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.9 Windows x86-64

web_rwkv_py-0.2.0-cp39-none-win32.whl (2.8 MB view details)

Uploaded CPython 3.9 Windows x86

web_rwkv_py-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

web_rwkv_py-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

web_rwkv_py-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

web_rwkv_py-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (4.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

web_rwkv_py-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

web_rwkv_py-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

web_rwkv_py-0.2.0-cp38-none-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.8 Windows x86-64

web_rwkv_py-0.2.0-cp38-none-win32.whl (2.8 MB view details)

Uploaded CPython 3.8 Windows x86

web_rwkv_py-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

web_rwkv_py-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

web_rwkv_py-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

web_rwkv_py-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (4.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

web_rwkv_py-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

web_rwkv_py-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

Details for the file web_rwkv_py-0.2.0.tar.gz.

File metadata

  • Download URL: web_rwkv_py-0.2.0.tar.gz
  • Upload date:
  • Size: 420.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.5.1

File hashes

Hashes for web_rwkv_py-0.2.0.tar.gz
Algorithm Hash digest
SHA256 63048bd285b1668fd252eb3f392f9bc01197605c553cd4df2d1eaef9db391790
MD5 b1da7dc7dcbe150d2f90f81c05a6ff39
BLAKE2b-256 b52a17b97361dcff122ee15c87e42cd0f8513707bcaa424a7eaf671008af6985

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 767f0d121537905e1a6b34cfe07f43b3bf7a1d02492190f1a2ea5b54b19b54e4
MD5 cb54ec5de67348e56c8618de1ec20a73
BLAKE2b-256 03629daa5832ec0d4cb1e39887e610ece7db9c8e39a49652c4fc1be0a3022f00

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3f5bb3142966751e9d4a8b44bf6a8626bb5776c2a2c1ed80e9faa4d256303e40
MD5 14eb9a88b71d824653dceca1cd353f0a
BLAKE2b-256 e7cceb819fbff8bb1e9da53d4d5c7ac00e3320d8c1992a587d9e4e8a25859ffe

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 83854125c8f97082747e7dcdcc1a11f075e142cecfa5e5123d7604bb632b536b
MD5 c2f338f885a183e454884a2881ea582a
BLAKE2b-256 35151151cd3312e00c3c25db5a53756f0a73eb9e6fc7182ed2fd68f37b7bde04

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aec90e290e978fb198c8c65634d8bd00b1f32ec79e248d801c79eb4d10fc5371
MD5 d78c9f3716ad5e6100c6262dbb06f61f
BLAKE2b-256 1af00b90a96490aabec8fefbd0eba93bd591d75d9436c8c979d7f2eafeba872e

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c6883879097f7765f0457a5f47a22cc24ccad8d6014e28612e814a883fb188d2
MD5 fba86c9537de610120b57a0bfafbb139
BLAKE2b-256 72f2f325ddd22e62dac31f6bd5677cb824caeb3f99d2634107f6adefee6c3770

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8629c71ddb133b139d5d0157a969d1977d247f51040e9a89202132d32ea848d0
MD5 6ba300db88896f0e463d81e68fd5960f
BLAKE2b-256 05f4c8db63467a6672ec5361db681848dc28881e5b234849323099ed96734f58

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eefd34f25902ef8c23a6b6728b5ca285d1ad0b07f4c9a049532ee2863386037b
MD5 b76326ffdee1cf698ceee344b1e2d146
BLAKE2b-256 36eb5b30317ae198eea5034a80cea7449552f68668e78b9c3b8f2c133d39f08b

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8bdf51128d65c159b590e122c0c0dbad7e651a2b3d5c19fafb069b85512e0570
MD5 c3e791100066c217a6f4bf2289273f7e
BLAKE2b-256 662523484094c76bbe49280f7a6a8c0e0f00b0e7b43a3db2febaf82d239d04af

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 097e8b439366c14aad74e2f72156c6290566452be7ec6897b2f6f1b86bfd8aa6
MD5 e3fa026cd64c8bc3054b1db09507774a
BLAKE2b-256 507fd543f7602af9d2ad779bfd04d8c834c24409dd1c767dad6343f22966117b

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4f79451361136ea368aaa76b2159c6dec84a2676c58f0c6ec414a6d2c2f210bc
MD5 3c58386944ce02c054c90793228b7a30
BLAKE2b-256 e76db0a54b3c567a57affc9f7693424059bb52be59cb4936352da6e8538e0841

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 20177d96fe1462e59da68ec5b635076c99db564a83ded46b935a78ba1af4e7bb
MD5 dcd08cdd36476c2319f7541520849e52
BLAKE2b-256 c361ee166f37137b204b8c51edf2dd7092a279653d280451e35107df4d692d8a

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3cfdd11c20dc7080fcdae77a026626820a452e2075caf228cbcc9081120bc111
MD5 ea33bd56347b370f6850137d102da5d9
BLAKE2b-256 f63522c79ba9f843db15c8940f760eff14a2387894c8ab0f43671fb53e837149

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5a91898caabfbd7620ced7a6cd602f513557300ffbdea4d024776424427d54e
MD5 9ea56690a13329a7061e7d95d076f9fe
BLAKE2b-256 3ad4ede049ebfae966adfd72d1945a8b483c60fc202c5ba5c3bb3dbe3346f090

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 91882162cb0cc23cfe6122a8c6b5733c8d68f847659b777d602a9ab7aadcd31e
MD5 f4f8be14a6adbd22f670ff9eee21adc1
BLAKE2b-256 ed580f8628e880bbaa499b57451da0fae3b9b75882b7075142151ae2dbf27763

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 63918c3c3ac41028525969997a3ee9b919c6beb5119d36dfe9b6dbc8e43de64f
MD5 a134e7ee4eaffea2c323da8a6aa1c29c
BLAKE2b-256 e7296e2355342d49791c1dafcb821b97d5b6e789f46dc9e7f2f3910e53335957

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e25f4aa71b082f6d361d18be92dcd8926d5f00b034bf7f85974d258248b39d8d
MD5 f3bc6b050a79e8ffbb5e0cffc1a6167a
BLAKE2b-256 d1880cdae5869cc921c13ce6ce6f6987447600be72c48e18c9e922f4efe01f6b

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1a873ca09741e61f9201ed9171870f63a61691fb724f507449d9dec3c1aaabe0
MD5 a0d38b0bd6b7346df98182abd8add734
BLAKE2b-256 1e6dc2fae25cb1acbe8d4ca4409c3dcccc22711fcf7d4b4837bda585d684cd17

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 52e5e20358390eb56490b11e30edb360a7f06933c144a29512744db2f0a59baf
MD5 cf524b645c057fd7cc0ad2b466918a29
BLAKE2b-256 382bfa1148e1ac60e0081bb275822a40e2b21e75f11a841158acd6fc7a0e23cc

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 9f493415cd589143844bad539800400affa3f16578bada335d959384c0da6911
MD5 c33096693dd04f4d00f931cf4c5e5b3f
BLAKE2b-256 e4908b91db6ec2080032741f3cc79dbe59a9a83bb1013ba271b840701afa729a

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp312-none-win32.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 1f5f6b8f149b8a1767f471d771c42ad6a4d00af1b721b427678006c5c805f4b9
MD5 d4a976cf521a191f4e9d097a456b7c60
BLAKE2b-256 5e2d211a8a2194b16926273cd3b2ad4a7e812a93d283380c18901299d38fbc6b

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53560784558b6eb89f5b5c80dcca222ff68b978bbffcc4bb149cc61c22c4e483
MD5 0935f1f27ac4e9b806901c0baeee8447
BLAKE2b-256 3f83de5e9d6f35e87c0b31beb699e94353acaea9f88ead61a18fdcaffd5b494e

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a07fa28c8fc8e4138a8738a28759c9a7cc708e27d44defefcfc3f7fcd4414d5b
MD5 9a3e9bb84e3bed2f4dffe72c6d517379
BLAKE2b-256 b0feb2e4c0aed189fb6b8a688af0dc152997ab3a6d3eeda47840c0b836aa132f

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a58371e111cb37c0a0e3a0b7f99266230e0c0c2afa44e80b026ca57fe4d987f2
MD5 ba7fc37116721488a00d1e76e3429f64
BLAKE2b-256 97d0eeb5689e7995c493e0196a5a64669250314d6fbca3d9f334b33889effab7

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 260a0a8043cfa07b51b8a6c78a1d93f266b715776531b396d6ade55aff0429d8
MD5 0dbba881032524d0b609871b2d8319d5
BLAKE2b-256 775ca3ebdfefa4047d1635313b065f59e055de49715d0985fc947700fff57ad1

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b12e147f57059f0021a6acb3d5c036eb002586ea0ca71b2ffde3864d97b1d2ea
MD5 d09fa976e6764b4fc3df383da7e2feda
BLAKE2b-256 b9fa27567051886c31e6e7b26dc435b79a70614fdbcf41470d7d6a2225b2a64b

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d268a73e58f423b0499b7178393d60c2085765eaabd99ad46529d9fe80c703e3
MD5 495a6f63382a91ea61393664284ee2e6
BLAKE2b-256 b2cbb181a5e8d3031629d8d19fcf2d4c7d9551345c53d58fbbf54c10f923dba1

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b9e62c8e21b26af518743ed1ef8b2658b4836a740120fc0a29d29cd5e8abd8d
MD5 d6371cbe76d77a98de0d597357c1827c
BLAKE2b-256 e6768ebe8e73b80481da6c5824b528cf7053be1e509ad0134b3638d758e0820f

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ce2d024681ee2671d4dacce9986f65229da63ec946bacfacd98056baec35c9a3
MD5 3a0aa12b392ac6d0a5d0f106384a3cd4
BLAKE2b-256 168ee2999aeb93d4e48a304e7fc1a3fd42641fdd90dbb0f8175584d10ec2e962

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 20a1033e3e2337761e716f73cfd05b3de561876709055f97d99bba468f145d55
MD5 4222adf437255d44dbe2e0e249e60a94
BLAKE2b-256 71d14d368c269255f417b3ab003c2dcbf2c7f03045ec923303cac2dbd32d97a5

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp311-none-win32.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 e64721bb7f0bc12a53f6be75ac68bf11e232db4fcabcff50cb167c1f471e008d
MD5 f18fa7a178d4c1ea43d290c99ba572f0
BLAKE2b-256 5d473b5dc3408275f8c888d8cbd61da55b1e0c94d955eb8f6129ed5c63975983

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6207e4efc81b95be324b0072c32be512eb90534f8c1f678484af3748e42436a9
MD5 8b6868ac361dc3ea2219809e8fdb7d0d
BLAKE2b-256 cb52a4eb4a1acd274bbda27109e139546759f36eacb9f3b50611f16d4545f402

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0aafe2aeec2ece04e5ee4b1bca0f5fe3cd5e74d8f64f9e7c053084a4f820a98a
MD5 1986fd233ebd69e306510a25705d3158
BLAKE2b-256 bedbad298659b015ee1fcc4ea779035dc4f51dc19319c667d6ff3ded8ac2e12e

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 454d1a27fe533f0f2a89c48150776feff70afa17aec4b2d7ac82d64d745005ad
MD5 18c42cb663fd0d599ed83109e8497d13
BLAKE2b-256 36308fea2d8a472beff8536f476b0f32a8d6798bf7455d2997fa950c42bda699

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3aac6f41bdedfdc30fb14712b084f8733163a1717a4ca838ba554cc2c6b20a46
MD5 8a5c7e61821f2958f0236a63f0913d61
BLAKE2b-256 40685c6f27e5ce85dd5521be6978f06e64614432ac7b345269590f98d4d91fae

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7a9ac0fb27bc9aadac1d4902478b4a60954bcf6d7e8c218d0b150b6cd6c3301e
MD5 9ed298e525148853d1ada8e9202e3f40
BLAKE2b-256 bc8f60f2caa23b8475868b78810e1ca9ccf61ee45093c4684888717daa30ac58

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6bcf0bd3eb17a09d20e2c4338bab762d59458b6fddaeaefff3a8909677cb5886
MD5 36d506610a77d47d8848e4ebd4c43c1c
BLAKE2b-256 0afe6d8a396f1596eee40e29a58db56c56262e7ef768bd0d28f9b530e0f54a68

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f832f27b34c352fcdde9516e4006d911516293033dfc0bf2849afc68dd40d3c5
MD5 7389f5fe27e045e9ea90f700da2b4ecc
BLAKE2b-256 79b00dd0e6ec805eae43071e7d74d9e49f07145dd544326097e86d45c003aae7

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 665c987ce65b35b7480897d48b4a1c34b7798badf9ddb2b341e60913f83c8ed6
MD5 3988ddf6d4d3f1b0ce9adeb3df98be18
BLAKE2b-256 ad6e316005380fd3ade24023046aedb72873d28ce24ec2f6b424cfada21429e4

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 f7ccffb6ad6756327bd47c10c19965c08dfdb487fbfd1a34bd1edd6a6ad00f9a
MD5 f5670a297a28a81bfd201c0cc6135c5f
BLAKE2b-256 2d6c8806c67bf091bdd4877977fd817f54817c24648b3cb4ef03119190e32e53

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp310-none-win32.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 b77ea4304e9dcf4594bf892022afa32bb20d9e0aaf7bee5b9626ae17e0a5913f
MD5 168641579e6a5fce626d1cb2fae46441
BLAKE2b-256 984a32a1e54f24eced80207221853f75bd78df7ba4513342115e45f192cacc01

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb1a1eb4cdc7e900b358e57e8d247e87c105527942a3ae8085a124fccb46c156
MD5 d028168b29970f379e98cc0a5c7d1457
BLAKE2b-256 bf37f1a0005ce89943bd9f588e2c2842391a9c9d0826927d20ef408945ddbfdd

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 67375f0d332327a4fe4736e5fc5d578c62af501e67493ab4eaaa6a7cb2e111f7
MD5 6f00e6b682441f1ed884d8b42a7be7ce
BLAKE2b-256 8ed3f2172b7ae2d95ab7b1ee85cf026859031ab19c72c789025a314e9f8ddc7a

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 88a003fa658498ebe06e2c4a2110e28ef86b2a307b2b82d9f936597b2ce5432e
MD5 babe5e453bd03cd8fe9a135b6bbe460a
BLAKE2b-256 d02e7e7c1605aa31c2fa0fa0e2598910e8cae29ab8229175a1049a19d402ca0d

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b5149c75875073b31fe95f992202d0275d5a56da2481e453e5181ece43ea152a
MD5 4f5c73c32a567a7915ce23633a71df97
BLAKE2b-256 c57f52ddab3476854b7fdc81dd12dfb660a9bb403fd5687010b25ea220aff0bb

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4ee6bd1558f0b13d5e617b4eac29fb3ccb1aa117a4d725be0d19006e57c828d5
MD5 22ae09457b2d402361af569f9e7c730e
BLAKE2b-256 4ad74a746645fd5b533652f8f89bac2eb7d2920e69292dfb19f4cd4953814b8c

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8abaf9b0620e9ca398971348f0e19e96179fd8dfbe242092e37e42a5fe51632
MD5 3e461561621ec8d9dcf27dda56696db8
BLAKE2b-256 1ec353945c60669d884c82cfb68647b519426329926fa1d70f54d870ca7f46a2

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7fa8d5b500d514d96fdcede215d9cca41b54f42c13d694e2ea1513667ef7b4e
MD5 6d959efe4b7e87c3ae38bd21fac82e94
BLAKE2b-256 07252812e12ee5e06d077b1b8717776429bcd07cc32d790f8ac2de4e52f8ef1f

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1cea4c5a4ebe9c9a287c58c14000be0c7122d53a8cccca807e0916f762e248d4
MD5 60502293698222303fdde20327c3e20c
BLAKE2b-256 9b2f70822a82e3177cb972609a9335efa36dc534799b83834739b3ef76544bc5

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 778d85dbfe5a58386611e649bf257a5efd7ad0b66319191771f08e3fadc7b761
MD5 be27bb8400fcc69a8424c83ca6e0e4c4
BLAKE2b-256 1f85ebe1273e443d0e8cd1b86af7b2680ae71b3a9b541ae643e7739d4d7f4169

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp39-none-win32.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 7b35f6225309a36dc2b5146b44afa94dbea5ee3ed9737c44c0effa41075317d6
MD5 0f26f4203f446b80122b27ae63473367
BLAKE2b-256 e659b240dbd6086e9069a85f0695ea723424873532555f193cc9478300754169

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f97f5ace682fb0670cf548d0675d75957f66ec7d7255ab06fb2fa89eddc0e44d
MD5 7f79f31e9a263fb1e633349ca1ca9fb4
BLAKE2b-256 225960ecfe9dc4ca5ed4d4290da8e0ff5d3b0fa3b95d8d711dd9c287f01b0c83

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0df01fcf48af12bf20a1d1ace83bf5ba9739a955fd5b90f3145cd21496f449b5
MD5 192a24716170c81ea8c1a7e83af48c12
BLAKE2b-256 e7af76f9cbe32b512735d4284e141767b7078bc161fd5ee48ab034a545dbd7bf

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6d5dbb0f0581034eb2477284bea5b8a1fb32670df09c95733b353e9b471c00d8
MD5 e495374b71dc198ec6d290aa73097031
BLAKE2b-256 b4d7d302fdd6ae38e495a9ca3fe17649a34d1542693dde0d0ee41268a30386ce

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b29ef8a698a879ab87b317bad7da092469ea399ddacf3b1cf2bf77d5264143e0
MD5 7dddd2a1e378866ab7cc08f35e3da7c1
BLAKE2b-256 cde183e90e10f49fb959da048ef00025c477222c7f46543e7d72318920c75ee5

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 085076d37d2b3722443459abce32faaa8e27a637f67425bb29f2565089844cbb
MD5 014f54c7b7bf2a042c2e5c5ea8142148
BLAKE2b-256 e3dd182bdee75a4e186e24bcf8ecef92d2193df35594d8ed571d64b241bbda89

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9214ae22e163f0981911f58616c5d86db8b7d878d5c29a821e89d0d6da4c5640
MD5 c0781e25ff5a015dda0d0cbad130ab89
BLAKE2b-256 3e1edd37776aeedd6ae4c9e47693d9f0fd12b33f8540142b33e9a28975b80975

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 9ef84e55b883ae8c29e6704a24d46de95e3fa4a4664993a053a6e00bd412cf64
MD5 db47bd555416b8eba79afb8ead092b4c
BLAKE2b-256 1d1339b4c98654814bf1f06558c7dfd9ad1d6403a746419519897fda18ca0f65

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp38-none-win32.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 90eb9539f17cf21af183e11cd5cff92ad6d7382a3410fca435bad11302ec0af6
MD5 5b0ee053c0851b73c25e5bda40ff0fd6
BLAKE2b-256 d096a5bca0db126980418ea43a4f16febf1932c979b285d4b36a97c3b3959d59

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08b94e6226477169966436b10cf68db200e2620885a2d60e97c7d729f6aed344
MD5 1ffa8caa7f11c6b100661220f353a127
BLAKE2b-256 3c29e842cb93345f07ef16d9138e3931a634adf1338bbf2deeb67d0e1df99fff

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 db62a0f20f2b4fddbf9c8c9151c92a9f72229d84717a76e3995c1936a6c1c9cd
MD5 25ad9f1ed713d9a7f71fa8cb1828f601
BLAKE2b-256 801557390daadd5d7dfcd9e5978ce9d7b607aabe2f930bfbd79116355e0f6834

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c2a8329bcab8a64be39d5b7f6f19621e7e5cb31ae98314c44812ab6bcedc5be6
MD5 67f0f8e4506de30222698e77ff36d95f
BLAKE2b-256 88472567f981548b5a9f61f80b711feff72b6ed06cb2ab4ebbeff42df818c3d1

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d1aa055c833702cecaae541762b582d20d5b286ad0940bdac86d39e52bdf453f
MD5 a3799d40170b95c6d177c6efbecc7bfc
BLAKE2b-256 127d01f9b5fe7860669899e7d15eb655737c62a5972b8e9e50672c06d520ac2f

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 233970120f16d11d741ff6c84641a6f94fa7fc17dca56b90082065f81731efa5
MD5 f45b48f4f95eb91d2df465722da62eae
BLAKE2b-256 8ea3477dc513b4d0e085a81e828496e0bc5b80f1876d353b500b23e739d74175

See more details on using hashes here.

File details

Details for the file web_rwkv_py-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for web_rwkv_py-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ea3cb0122cf8cbc215d8809266cce3e47273653e7db830d8f2df9b33b0f7c1d
MD5 dd92de9cafd4ad9d63cb745fbbe71979
BLAKE2b-256 78488e0b87f57b0b39e86b939feff5a06232a97db4f47327f77536471a223147

See more details on using hashes here.

Supported by

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