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. daachorse 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 daachorse 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.3'

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.0.tar.gz (411.3 kB view details)

Uploaded Source

Built Distributions

vaporetto-0.3.0-cp311-none-win_amd64.whl (299.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

vaporetto-0.3.0-cp311-none-win32.whl (281.6 kB view details)

Uploaded CPython 3.11 Windows x86

vaporetto-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

vaporetto-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

vaporetto-0.3.0-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (874.7 kB view details)

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

vaporetto-0.3.0-cp310-none-win_amd64.whl (299.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

vaporetto-0.3.0-cp310-none-win32.whl (281.6 kB view details)

Uploaded CPython 3.10 Windows x86

vaporetto-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

vaporetto-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

vaporetto-0.3.0-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (874.7 kB view details)

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

vaporetto-0.3.0-cp39-none-win_amd64.whl (300.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

vaporetto-0.3.0-cp39-none-win32.whl (281.9 kB view details)

Uploaded CPython 3.9 Windows x86

vaporetto-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

vaporetto-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

vaporetto-0.3.0-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (875.2 kB view details)

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

vaporetto-0.3.0-cp38-none-win_amd64.whl (300.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

vaporetto-0.3.0-cp38-none-win32.whl (281.4 kB view details)

Uploaded CPython 3.8 Windows x86

vaporetto-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

vaporetto-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

vaporetto-0.3.0-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (873.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64) macOS 10.9+ x86-64 macOS 11.0+ ARM64

vaporetto-0.3.0-cp37-none-win_amd64.whl (300.0 kB view details)

Uploaded CPython 3.7 Windows x86-64

vaporetto-0.3.0-cp37-none-win32.whl (281.4 kB view details)

Uploaded CPython 3.7 Windows x86

vaporetto-0.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

vaporetto-0.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

vaporetto-0.3.0-cp37-cp37m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (873.8 kB view details)

Uploaded CPython 3.7m macOS 10.9+ universal2 (ARM64, x86-64) macOS 10.9+ x86-64 macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for vaporetto-0.3.0.tar.gz
Algorithm Hash digest
SHA256 441f1dd34eff80c6de9340551738a30eb383c3910602c4a22deb974ea7a81026
MD5 e5d1d1dfc16edb134444c61ec2e522f8
BLAKE2b-256 c473b00e4e5e45e771edadc089e7fb03ae7f47f0c9525361fecf71dd9a44e933

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.0-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 f7fba3444656ee78a1c1b8553a9a790e187b478fc1b397aa6d2809032cc189c4
MD5 4542013ccc43ed7fb4aa42c572bde5db
BLAKE2b-256 bb9075759d3ca9f7fc257743763e3f3e0721aebfcd2e2920e468e7226232df6b

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.0-cp311-none-win32.whl.

File metadata

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

File hashes

Hashes for vaporetto-0.3.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 31eb4fe13b26b92416212053cd2d41554b116dc506c1b73f459f4dcf5c03a977
MD5 cc7055e4fca2eb9edc2130e733b2c417
BLAKE2b-256 f746d4a365e3175d1840df2c737fdc2758351f45d9aff028f78e8b6dc38df802

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for vaporetto-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2c50010c78c1ace3deb740b92b78787bfabf795d43daeeff422c20beace1143
MD5 2f6e13336affffb1ddac912e0b6bc463
BLAKE2b-256 5838ce3bc4506db087717bf2e04ff844347ab1add7d7f5be37360213e0cfdcf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for vaporetto-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3dcdb3f4320cec43c8afe9715a08aab98126f824b99925e4ce87a31b7f3da177
MD5 12971c92ee65c6863748b9406bb7f7ff
BLAKE2b-256 78533ee49c970056c1275ac0ea7c75fb5abdc68b34f8921413c7e128b9704444

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.0-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.0-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8ee3f13a8dda3ec7336a468d96e5b89498e0cdafa77b37f79b5d8b4dd06c70eb
MD5 bfd3e47718635e3bef0471b3f7b47802
BLAKE2b-256 d6d547bafc27d514b23c02be36e0384d28d13d5bb4f41a2d7a3ffa3823b7852f

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.0-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 3642b45c71ff14297b8143a039c3c859111441d66304adb84006a46c578d0df0
MD5 a0fc0363ec4b0ce3be7cac1acf454cff
BLAKE2b-256 b4393dc73468dd69d3a66f1a7e6a3bb2844762779f4b832929fa26fab73cd487

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.0-cp310-none-win32.whl.

File metadata

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

File hashes

Hashes for vaporetto-0.3.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 b55fa56dd68c6f25fdf7a27790fc5fadef7b46b9f3620cc623c73d98c6dfde56
MD5 0628aedc97c8072c84ce4be14250d5da
BLAKE2b-256 f22887c4342ec31ec973421a6e8dcf60a8b8b89a26b011fa5303c77c9d43018b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for vaporetto-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 59980ae497d016c1ac84db3f65dd978457e6cf0017c3786299121358d1d6744d
MD5 2a2931dd7f9bbd2eec5b59e71486f6b7
BLAKE2b-256 7f9ccae73918c5d57cf52f558dde820d69bb8fd7ea9714b42579a127a5f1ee54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for vaporetto-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e2d3a603563f6abeadeab2a1b5cf69edd7b87afbb1e02ce1d7c711be07d5fc4c
MD5 c48a3cab001bcf172bc73523aeea8071
BLAKE2b-256 4060d32e56b6d6594c5515ca9e26b4153ce40e6d6b9aa85d03a0fef447a31103

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.0-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.0-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 cb505eb3a8fd3b9f166470283f4faa0ed34f0026eded800106d7f152b4c83a58
MD5 176760653a4caa498e2d80c054f027ef
BLAKE2b-256 995d42def0cbd2a95849a7a33dd3a093b4e8e5d56ff96702f2e76ed2c052e3f9

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.0-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 b9782f281a78508c92da7fdf47413a224cc404797a804e960543d40bbeb476f0
MD5 09cae73393b294ec33fb4c08bb6c8eb2
BLAKE2b-256 bef532ec151b293b74e7e4aa38dd6c6a56fcb6fe3a91476a8b64776f7051002e

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.0-cp39-none-win32.whl.

File metadata

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

File hashes

Hashes for vaporetto-0.3.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 92d2afdbf6da7eabc045bcf80c5d21f822b460f3b24e1188452fcfa27142e3d7
MD5 fabfe4ce1b0e02719cdc1c16a37a1480
BLAKE2b-256 a557ec288a41d754c08ae118634a03c2d2bb596fb579d04b9667ed746ec47901

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for vaporetto-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d5e5e97d1af352d433d25db8a122293ffab94973cfe98b6e2132935e73ef983
MD5 ba2623bd72709d5d92cd4173b1f7ed48
BLAKE2b-256 1fa26d4e09851933bf2001e884f66bcfb5638165d869ecaed17ae83839913b8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for vaporetto-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1d3f1f0225f98833d9d929ed183aa5ec1a87ee118ae75eae99e65aff34262180
MD5 f9a6be11f541f55ef9bdbec0a7e1fd8d
BLAKE2b-256 26ebd1bba13674eebdb8834d57813c523c33609d18fe150dc56e34afda77016b

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.0-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.0-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 51197cc5a81b77991e997c8a81a75694cacb8a91b55c188fbd9312d1483d0e5d
MD5 05f28a47bdb66c91f8924517cb442ea9
BLAKE2b-256 70a413f6c90d83907a775e0cab11b24aec8c12b4e854e23c32d2afb84e0b77d2

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.0-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 873764e7ef961b0bc5aecf7f018a95621b2193f9994e60600ad591380f891008
MD5 3a52c901cb0149b3821be998c8175cd7
BLAKE2b-256 0ba3a80fad1a3c8c4a856f66c4301d0bb45c96732695f6a34107515adb7de294

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.0-cp38-none-win32.whl.

File metadata

  • Download URL: vaporetto-0.3.0-cp38-none-win32.whl
  • Upload date:
  • Size: 281.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/0.14.17

File hashes

Hashes for vaporetto-0.3.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 5669107b6ded5ddd4494d9e031ba81279953c6278f8f0579df525a20e716118c
MD5 7f2cd7ec81c44a9680b35df669893d23
BLAKE2b-256 9eecf70b851a9d142dce1eaea0e036800fea41b6c21ea5727eed11e33d8ce1ab

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eeeb0f34f5b3caed488d2f45ce9059358b9ed86e8352ffd171861fe647b40db5
MD5 5d8ad96c32b2779a1495690fb9935161
BLAKE2b-256 a5468b6eb5d3521be6f883628542617bcae5efa991c0c1670deff4b4d22f11c0

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c177f2e58d2d4aa163f25c9fa0b21daedff203c1b11bd303f15efc7b1dffcb6c
MD5 ad2a20f898a74273d1df32b4b9945736
BLAKE2b-256 e6909c87a8350fadcb42a9e2f721a6820b183094b634bc4a286de691bbe0cac8

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.0-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.0-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9c7299cbb1dc8b4c2eac63de944f6a719145758ef997dd8f38414fddc078f212
MD5 86a3cba23660fcaaf7875ba88aa56e43
BLAKE2b-256 aab6c60bc7e26f5acd968c3ca50529f537dde096b309c704f639431ec8d0d1bd

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.0-cp37-none-win_amd64.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 f0691b682a44d2a8e5faf58e58fab0fd7bf98f6f44ba265d3e55b843ec9ea606
MD5 2be04f7c57a36544c38d775f73a65e2d
BLAKE2b-256 7b965626e8a4d56c1f224d1678cdd7a1990e974cde57b2ab162096cf6cb393d7

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.0-cp37-none-win32.whl.

File metadata

  • Download URL: vaporetto-0.3.0-cp37-none-win32.whl
  • Upload date:
  • Size: 281.4 kB
  • Tags: CPython 3.7, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/0.14.17

File hashes

Hashes for vaporetto-0.3.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 3d54fbc7b9e0e1404755f804f38279f438c804300ff7ca0ab1b50e7f74dda3dd
MD5 97f2dfde82cd6b60079379bf95f65ee6
BLAKE2b-256 b18b9567fea1ff46b3347110be80b08a34ac94cd7d02ccea7e47e60ce20d00e3

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ce04686455b57cd4ed4a87f289ba16b746aeb5c42c3e31fa357c35ebd893787
MD5 0ff57b0a6da1632151c1ae88e207944c
BLAKE2b-256 3cd9c1197b19d14933f804ff09b751017f972687f71a7d60ff45caee19ea26da

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9b543c3b9519be93b3f4b76e06e0e9f76f5cb83c3bd1b69da229a16b19897ad9
MD5 aa666f5ad5391f706ffb11fe519641d2
BLAKE2b-256 49fd3dfac6751a8e1fbea50910d979be02b3fb6e77c9cebef90cdd9a458c2438

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.0-cp37-cp37m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for vaporetto-0.3.0-cp37-cp37m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d4887d578d1be70b0775dffe956fd4c3f5a94bc9f6bbbe6ed07acad20b2ea2fb
MD5 db44f33ded5fa20519c0137243643314
BLAKE2b-256 cae7b388af5d3fcf7c0e5318022be7ed2e49f1a8629b8f35d5d67d23d29c28ea

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