Skip to main content

Python wrapper of Vaporetto tokenizer

Project description

🐍 python-vaporetto 🛥

Vaporetto is a fast and lightweight pointwise prediction based tokenizer. This is a Python wrapper for Vaporetto.

PyPI Build Status Documentation Status

Installation

Install pre-built package from PyPI

Run the following command:

$ pip install vaporetto

Build from source

You need to install the Rust compiler following the documentation beforehand. vaporetto uses pyproject.toml, so you also need to upgrade pip to version 19 or later.

$ pip install --upgrade pip

After setting up the environment, you can install vaporetto as follows:

$ pip install git+https://github.com/daac-tools/python-vaporetto

Example Usage

python-vaporetto does not contain model files. To perform tokenization, follow the document of Vaporetto to download distribution models or train your own models beforehand.

Check the version number as shown below to use compatible models:

>>> import vaporetto
>>> vaporetto.VAPORETTO_VERSION
'0.6.5'

Examples:

# Import vaporetto module
>>> import vaporetto

# Load the model file
>>> with open('tests/data/vaporetto.model', 'rb') as fp:
...     model = fp.read()

# Create an instance of the Vaporetto
>>> tokenizer = vaporetto.Vaporetto(model, predict_tags = True)

# Tokenize
>>> tokenizer.tokenize_to_string('まぁ社長は火星猫だ')
'まぁ/名詞/マー 社長/名詞/シャチョー は/助詞/ワ 火星/名詞/カセー 猫/名詞/ネコ だ/助動詞/ダ'

>>> tokens = tokenizer.tokenize('まぁ社長は火星猫だ')

>>> len(tokens)
6

>>> tokens[0].surface()
'まぁ'

>>> tokens[0].tag(0)
'名詞'

>>> tokens[0].tag(1)
'マー'

>>> [token.surface() for token in tokens]
['まぁ', '社長', 'は', '火星', '猫', 'だ']

Note for distributed models

The distributed models are compressed in zstd format. If you want to load these compressed models, you must decompress them outside the API.

>>> import vaporetto
>>> import zstandard  # zstandard package in PyPI

>>> dctx = zstandard.ZstdDecompressor()
>>> with open('tests/data/vaporetto.model.zst', 'rb') as fp:
...    with dctx.stream_reader(fp) as dict_reader:
...        tokenizer = vaporetto.Vaporetto(dict_reader.read(), predict_tags = True)

Note for KyTea's models

You can also use KyTea's models as follows:

>>> with open('path/to/jp-0.4.7-5.mod', 'rb') as fp:  # doctest: +SKIP
...     tokenizer = vaporetto.Vaporetto.create_from_kytea_model(fp.read())

Note: Vaporetto does not support tag prediction with KyTea's models.

Speed Comparison

License

Licensed under either of

at your option.

Contribution

See the guidelines.

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

vaporetto-0.3.2.tar.gz (411.4 kB view details)

Uploaded Source

Built Distributions

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

vaporetto-0.3.2-cp313-cp313-win_amd64.whl (312.3 kB view details)

Uploaded CPython 3.13Windows x86-64

vaporetto-0.3.2-cp313-cp313-win32.whl (298.0 kB view details)

Uploaded CPython 3.13Windows x86

vaporetto-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (468.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

vaporetto-0.3.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (503.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

vaporetto-0.3.2-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (841.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

vaporetto-0.3.2-cp312-cp312-win_amd64.whl (312.8 kB view details)

Uploaded CPython 3.12Windows x86-64

vaporetto-0.3.2-cp312-cp312-win32.whl (298.7 kB view details)

Uploaded CPython 3.12Windows x86

vaporetto-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (468.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

vaporetto-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (503.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

vaporetto-0.3.2-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (841.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

vaporetto-0.3.2-cp311-cp311-win_amd64.whl (313.4 kB view details)

Uploaded CPython 3.11Windows x86-64

vaporetto-0.3.2-cp311-cp311-win32.whl (298.6 kB view details)

Uploaded CPython 3.11Windows x86

vaporetto-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (469.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

vaporetto-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (503.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

vaporetto-0.3.2-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (849.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

vaporetto-0.3.2-cp310-cp310-win_amd64.whl (313.0 kB view details)

Uploaded CPython 3.10Windows x86-64

vaporetto-0.3.2-cp310-cp310-win32.whl (298.9 kB view details)

Uploaded CPython 3.10Windows x86

vaporetto-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (469.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

vaporetto-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (504.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

vaporetto-0.3.2-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (849.3 kB view details)

Uploaded CPython 3.10macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

vaporetto-0.3.2-cp39-cp39-win_amd64.whl (313.5 kB view details)

Uploaded CPython 3.9Windows x86-64

vaporetto-0.3.2-cp39-cp39-win32.whl (298.6 kB view details)

Uploaded CPython 3.9Windows x86

vaporetto-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (469.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

vaporetto-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (504.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

vaporetto-0.3.2-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (850.1 kB view details)

Uploaded CPython 3.9macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

File details

Details for the file vaporetto-0.3.2.tar.gz.

File metadata

  • Download URL: vaporetto-0.3.2.tar.gz
  • Upload date:
  • Size: 411.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for vaporetto-0.3.2.tar.gz
Algorithm Hash digest
SHA256 3268114ec52a03d890aaf59a7959f5869a1dc4684f150ad1add8eff23144cc55
MD5 6add1d4028392d93772e1117ec87d5f7
BLAKE2b-256 1b05ee72be9cb45d3e3bc83dd1839d3b64791f9dce2b4d477b692b58eb906146

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6c8ba1c1d8cf77cae09a393645ab0e68f96c6ca1f6aff2f4b41ad6b318273f71
MD5 a28a4285fc177e7b9b5cc4aed4a746c6
BLAKE2b-256 080dd8c6f25c2d2a666efdd1b9321890c65895632c3f805740fa2346c5ab06d0

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: vaporetto-0.3.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 298.0 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for vaporetto-0.3.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 711b3ddb529e954eacfecfa64c74fc4df1c01649ebe1586194aa603b879fa51f
MD5 06fe3600b1abc17abe9f014c52c02e39
BLAKE2b-256 4d93c6f3725ba163a5d4edcba8be4aaec96b6d14ccc01c931f4a0ea15ba8031d

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94e46b896b83f5101d7d1cc8b9495aebdd2e8695f0ff203590510db2f01478c0
MD5 2f0992830a6955853fb55d27ad4eff16
BLAKE2b-256 47ad4e3dc222087d055749060af78e4299425178d9148ecd6a58e8e8d21561ec

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 895d1e087606ef985924424b40607f1ef14d6b46b5b49ba324586ab1f5523c15
MD5 9ca32e5ea7379bcc37844a422b218e66
BLAKE2b-256 2a2b60d6fd7268297f4dc48ec099f72607a3dd62186106cc7659d802c458f242

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.2-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.2-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 39216c1ba1a2ead6f7ee527bcd990d686ace6a25fa1851997d2eba3b4f81fa5b
MD5 916285acb0524951a1cb5b562fdbfdb6
BLAKE2b-256 b663234f8581276508547233e81829b5e3930af8e357d6202e7f0f03e291408f

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6dae5b769a6d4df2fc33985862045462d3eaa1b3ff25b2b125793fdd2f5be689
MD5 57ad868ebc7feb1758c1d63d56543c01
BLAKE2b-256 b7ab5861b7d096a1c26a026b3d37befa44bd55d378709257ac6ae5003f7acdc3

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: vaporetto-0.3.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 298.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for vaporetto-0.3.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 119b260698e9dfaed4650de7cb60d6b6acc0a5e0326d8991200568ae0b464039
MD5 90e09dd14be4c41bb107a62ee17f3013
BLAKE2b-256 f81b07fed64dd036a71e3a6a9def8774953073e43b6bc88bf4d57b4c24a82e81

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 104b956495ce1784eba6d2cdf8094848a54bebb8868172ceb5f65120caf5dcdb
MD5 a2e35632d9d8543632d9f7aab0648c5e
BLAKE2b-256 b10f0b84be4e6e4cb7cf0711f97a79f29b57fbad0be57f1abb4d1621aec45f53

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e4a1863088469c42925f0afa0b2ec174d702204034490fc6eabfce901aaa268b
MD5 00221cc5384beb3fda6348383372649c
BLAKE2b-256 d434a5474ee39c74d0efecb56ac5a9dfdd30aa9978f02734de0a189b604f68ed

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.2-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.2-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 aadcbb351eb292dea329e6a91f662904c8e9484a8fbc81cb9b12d607b6a658a6
MD5 5ab275bbd48e0b8d3253450d2b7fff2a
BLAKE2b-256 00c0e6be4e845f1f752ae6e65a4a97e2334ce4a50de65ab31ac72e12d9b06702

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a1702291ca2010560584fafeb27fb6badeac55996dd9e4af0310f7800cd44a67
MD5 cbc41ee1ce57617d6168cd2bc5e118c9
BLAKE2b-256 114060d292bbbf0a488f6a8877c05a0397750513c89946024bf6d6d46c10c510

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: vaporetto-0.3.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 298.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for vaporetto-0.3.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 caa6e9ba508daca7456b43529a5ec62b41be7d7765767178e73255e18cc2a318
MD5 33607f7a4acdbc57619ec8268915073b
BLAKE2b-256 73bca88ab94f53b6a0da33fad897a8093864c3dd0d4603e35aad89a1e15390a6

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ab072dc33d964443c3dc87030b2dfe28efe77f8b92cc117cd159eef646fd8a5
MD5 71a93b1c8974fe9878fc9d972bfe3ec4
BLAKE2b-256 b0eb0466f5ae03ef42de6a6fc1345061c67bc8e83f319f5e5196ac7f79a1589a

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c81cf66d93b866e71701d247c9592f043f9f0c62af139250caec485606983219
MD5 ec3312829dcba1090d6d00224a776f33
BLAKE2b-256 4170c28d79ffad4762d96d3c5406db92350c181a6fedbb0cfed80ad4a9447c0e

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.2-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.2-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 c82589f766b58d94efcc9cf3371c80333d6631a142db7ac3774dff28d94921b7
MD5 76ce462050284577ace4c1e372f1182f
BLAKE2b-256 abd0ded41d1ad1fa7ef5fde9b99345b360ba818cf1cf2baec0bbc17e03ef63b8

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0a410de032c867ca2d7c394a37e7dd67f60776d9ae6c4525a218aa640ca854d8
MD5 1e569cb3b04bbf4d23fef8098f16ecd5
BLAKE2b-256 db9bbd0313e20e9bd66878f0078a8207106230d329a279b9bee8b0cfebd48006

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: vaporetto-0.3.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 298.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for vaporetto-0.3.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d79d7fb30f51e7e35c8223c505a5495f99ff4fcfe161118db72575d435de1cc7
MD5 2b73a7420cb7be94d1c72d489ab03040
BLAKE2b-256 c3abce09f15a42254b38f40a7718bd428a29abef1afc5963dab0b3a8c054bf3c

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f4dbb1a32068a779fabb14446cb6fcb59306609fe5a106c93970f266de548e0
MD5 4538051c6e138971eef086ad1c1205a0
BLAKE2b-256 2adf6619573e88fcac8441e5e1ae2f2f9f15ce16b872b9c83e2395392b0de324

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a0044bad02e3b259919d0edbe915baae6ca2169f6249f53787467281b4b960f9
MD5 05b07811767730e5c8196345942f500d
BLAKE2b-256 1119b7429e926dc1f98e6f7865980f78edf7b9b1d51789ab09b2dc20565cfbd9

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.2-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.2-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 3f5c3fe6f7d0be379412d92b335e94b03c8fd4baff8ca6c0a3036a0009c45553
MD5 66aad19d5d925602797dacbee1351c11
BLAKE2b-256 cf807f6139d225b5fb1e7dfad6da2606b6efac7093fc7e47887fc3f9ac413dde

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: vaporetto-0.3.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 313.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for vaporetto-0.3.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3d6ec47a45493618856efcbdb15f76df5d67c01cc205fd25914fe284365b2f68
MD5 b4511d8dec5e274fe01d56eb223af89c
BLAKE2b-256 9acd87b8d15aa09a54e59146946998c5e1a3c19b66004b873c0e838125b226fa

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: vaporetto-0.3.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 298.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for vaporetto-0.3.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 167b6048fd47a5c4f9bba38f27977a6cf2b85e50f91246a526ac3670895e4c81
MD5 c80c59bddf7c7b8dd2c4b6a0bae29480
BLAKE2b-256 60f680727bb86ffbc045cb0bdc5828c40a8bca31a762c7312c4ab1ea026ce592

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ce4a6d6bd13f792e8f38f528132e64e35bbf3f76167d374a82a93f0dc9d79fb
MD5 7f3eca425ed5ffb5b9d52c2645ca2e0f
BLAKE2b-256 009c54882a8451b902a34fdcc6b08d83d701e5430d6292df7d1479b60bb1c7ab

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 71360473ff85b297b0d289d0cbd625c95262aa8ab76899002692096088b12775
MD5 5c9c263058a0b3f6108b57d161e7a1f7
BLAKE2b-256 c25b9e97bf597423120a5af3a1509cbccee8598947df4f0516a35ea58c7ccdb6

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.2-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.2-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 e06f72a200a5c9fbb17c2015a8f5df21ab908b21c85855e7180a4f5531704195
MD5 721a6741d993eae5c4bd0459515181c5
BLAKE2b-256 b58f47357411e11848eea15fda42dcfe2a76da5d2c155fdcadb11d6cebfae39e

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