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.3.tar.gz (409.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.3-cp314-cp314-win_amd64.whl (307.5 kB view details)

Uploaded CPython 3.14Windows x86-64

vaporetto-0.3.3-cp314-cp314-win32.whl (295.1 kB view details)

Uploaded CPython 3.14Windows x86

vaporetto-0.3.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (463.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

vaporetto-0.3.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (499.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

vaporetto-0.3.3-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (820.4 kB view details)

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

vaporetto-0.3.3-cp313-cp313-win_amd64.whl (309.1 kB view details)

Uploaded CPython 3.13Windows x86-64

vaporetto-0.3.3-cp313-cp313-win32.whl (294.8 kB view details)

Uploaded CPython 3.13Windows x86

vaporetto-0.3.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (463.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

vaporetto-0.3.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (499.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

vaporetto-0.3.3-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (820.1 kB view details)

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

vaporetto-0.3.3-cp312-cp312-win_amd64.whl (309.4 kB view details)

Uploaded CPython 3.12Windows x86-64

vaporetto-0.3.3-cp312-cp312-win32.whl (295.3 kB view details)

Uploaded CPython 3.12Windows x86

vaporetto-0.3.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (464.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

vaporetto-0.3.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (500.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

vaporetto-0.3.3-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (821.1 kB view details)

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

vaporetto-0.3.3-cp311-cp311-win_amd64.whl (310.8 kB view details)

Uploaded CPython 3.11Windows x86-64

vaporetto-0.3.3-cp311-cp311-win32.whl (296.9 kB view details)

Uploaded CPython 3.11Windows x86

vaporetto-0.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (465.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

vaporetto-0.3.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (502.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

vaporetto-0.3.3-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (824.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.3-cp310-cp310-win_amd64.whl (310.8 kB view details)

Uploaded CPython 3.10Windows x86-64

vaporetto-0.3.3-cp310-cp310-win32.whl (296.8 kB view details)

Uploaded CPython 3.10Windows x86

vaporetto-0.3.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (465.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

vaporetto-0.3.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (501.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

vaporetto-0.3.3-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (825.0 kB view details)

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

File details

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

File metadata

  • Download URL: vaporetto-0.3.3.tar.gz
  • Upload date:
  • Size: 409.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for vaporetto-0.3.3.tar.gz
Algorithm Hash digest
SHA256 b4f9a8cfb22482607f3844c8044c429af9f9a501273226c9d60d9afddebd8980
MD5 72fcfa9092340ff17b7d764a3c4f3335
BLAKE2b-256 aa7969fc504efb9f282ff8078609970596d361a62f6e6b7da3e102f4a82c0d43

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: vaporetto-0.3.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 307.5 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for vaporetto-0.3.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ba6eb40c4985ed990c8c660b2629efc01190aaae7c1d5a2d01b760559ea2f3ae
MD5 8f47e08ad295fd22212d4f93080e4f24
BLAKE2b-256 8710376588d6fd42d17c92beb4b346554625c4fa0a19572596d8d5db69ed191d

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.3-cp314-cp314-win32.whl.

File metadata

  • Download URL: vaporetto-0.3.3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 295.1 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for vaporetto-0.3.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9b8d884bda068d666a55c57b260f8765334fc494c7af594ed81e02eda0b825fc
MD5 3fce183721335f491e4c99bf689e1aea
BLAKE2b-256 ed40f4513c32cba9cd8aef0162814ae9e34e7b120b0b4093e332d46681ec6134

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: vaporetto-0.3.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 463.7 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for vaporetto-0.3.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90ebf2dc7248ec60f77ae7f439446475326ce7abc23e9626eba5275136ca9e72
MD5 8de3a048985c60c75b65e56aadcb8054
BLAKE2b-256 c58b60cc2be6bf997be638c81bd55b1c9ff147e76a613d70e60d2bf8b76df944

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: vaporetto-0.3.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 499.3 kB
  • Tags: CPython 3.14, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for vaporetto-0.3.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 45a7af9d862579e370cc2bdd77b0d69dc75b56ea0825f381219b9729dfe842cb
MD5 6bffa2b67457f54f6ac3d60074ffcef7
BLAKE2b-256 ad1f252544997a403846f962501d6d060d25e60f5711d113f771bd9ff32db712

See more details on using hashes here.

File details

Details for the file vaporetto-0.3.3-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: vaporetto-0.3.3-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 820.4 kB
  • Tags: CPython 3.14, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for vaporetto-0.3.3-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 93dce7063a55f8e8b65902a07ff1cc846ccfaa7f16c4b47615cfee874ceb3c9d
MD5 99571b8a3256063e388626f22826ecb0
BLAKE2b-256 482aff318de3317fb51d0f63afb0969331caf10b55469dddae489e1c38ebfafb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: vaporetto-0.3.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 309.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for vaporetto-0.3.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 256a85827076235794dda2a4589f718b7a60c9886cf97696982c4158e8944c67
MD5 4d6169caf38bbd37c2ba9052f6d6e2f7
BLAKE2b-256 b7458eca1e729588c564e129cc4b4e32b2b2967b8681944511bad06a5929074f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: vaporetto-0.3.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 294.8 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for vaporetto-0.3.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8b98ff0e07cf934375017387aa77c95093ca0c1fe65255bd2b478e652638c84f
MD5 50808f0b1f76c88283369c8ef590b1bf
BLAKE2b-256 143ac3068cea609dab87b12ce58e3264b9bcf34ed8663c6056f5e93797cd897c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: vaporetto-0.3.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 463.6 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for vaporetto-0.3.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb46bfe9ebccf0552b6f7a7bf20403f496784e43eb19cf4c01bdb932e992acb5
MD5 62fae95edae95e698209d2b67a2bc1a6
BLAKE2b-256 6f2e7a1a64f4d54e7c1c617be03a10935c0fa55d2c6821f4f09c4ee46277673c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: vaporetto-0.3.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 499.6 kB
  • Tags: CPython 3.13, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for vaporetto-0.3.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a89cf76f102b1dc13826cece04602f37a6c0c2ccdcc88a170d8c8960fa076204
MD5 1127b5b63ea17c5a6bd419b4f3ddc0dd
BLAKE2b-256 22efae77deabc0f9512f75bed0a3a983f7d0e0aa80228684db4ce395006ea1c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: vaporetto-0.3.3-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 820.1 kB
  • Tags: CPython 3.13, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for vaporetto-0.3.3-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 8d54268aed93577e301c15c728ff11f3581632bf3907fa2f25b08724a5db746d
MD5 b5b83adf44211c2e27cd3d4ebaccb858
BLAKE2b-256 43f923468963541bfb8b47c78f1c0b6a452a797ba3e65b7b811286af0483bd4a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: vaporetto-0.3.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 309.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for vaporetto-0.3.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 15df6e8db88de2c81ec2f5703ecb22b53353685b3824cd116f75caf6ccc03f0e
MD5 5d8e8d4147e13f1a88fceccf38d103e4
BLAKE2b-256 cb524a5eb77c55f673a3ae46731f0b57bf95189a2ea2d1f04ca2c4fcce0e33bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: vaporetto-0.3.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 295.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for vaporetto-0.3.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 275aaa2e53b8353ec0e4fe9daa0719f18804cf8d587258a0ce209e7b3b4af36e
MD5 e38c18e3e048a3863cadd5660cbebb33
BLAKE2b-256 0f7dab10b0e8dd310ba092e6d58a272fcb74f6e9cc9979a8e4195b9f983b853c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: vaporetto-0.3.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 464.3 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for vaporetto-0.3.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41c24b66ff48885db0551df37f6fd75b8733589e924ef5ecbcd507403510cf86
MD5 58dccc09d42a6762d59350538bfbb781
BLAKE2b-256 72b5b9610b34ed1dc649207bdc6f44078d1f453e64e05c07309073364a330652

See more details on using hashes here.

File details

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

File metadata

  • Download URL: vaporetto-0.3.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 500.0 kB
  • Tags: CPython 3.12, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for vaporetto-0.3.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3c6a0f9907fbf435857895b1a2bc8660b6f6cd4107b2c3c3dfef4cb1a5c98035
MD5 72b6475aea1c70bcd86d9313f4f4c8ee
BLAKE2b-256 a8117b9550a12de23d132520ca695bedc89d52a400a059b21c1f7e8eec9403a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: vaporetto-0.3.3-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 821.1 kB
  • Tags: CPython 3.12, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for vaporetto-0.3.3-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 a623c9c767d6612349925b52a6afd55b732e7e27d87bc82768a01d6f82f8aa06
MD5 b6a33140e2463ed87e2773ac5fb547a5
BLAKE2b-256 40a0b60128b76f710822126a3b8cddc26e5da6d2beb94b0aaba1bcf11d23a21c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: vaporetto-0.3.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 310.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for vaporetto-0.3.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1b1be3a2ac3d49f5938dec3e8dd39b7e09dd97063b062fc422d2eabd4b1cba60
MD5 c86ecfbefadab1bed4d5ef0a0286a742
BLAKE2b-256 e5265abfa21290539714a756956cea747753baf299b798a9cf1b7bc6e5f427bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: vaporetto-0.3.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 296.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for vaporetto-0.3.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fb8c53e08805c3325c2ab0f61b2f9cfc11e6713de1ec79303d27a9de344bc62b
MD5 f8a1e1432092f5099f3944487e4f20ba
BLAKE2b-256 730fc4da55fb1a7080b21565b757438519f8be9d9d814b86839fd8952be9949e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: vaporetto-0.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 465.3 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for vaporetto-0.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dbfeba92b25ccdee4d4fc9ca7ad8186d79d90ee0b1e229a8c587ead1762678b4
MD5 d09e81bc4576fd21295741013cd0589b
BLAKE2b-256 730e5a7e4d386d0f198d08c13e57195c81302dbbafdbdfbfc0a87c9394963aee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: vaporetto-0.3.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 502.1 kB
  • Tags: CPython 3.11, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for vaporetto-0.3.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7d21d48ca9427968978d88078ec866bebdfd080a9c3f433b2b74fe1cbc0310d0
MD5 96c0c1b21c58bce2863498617732c8d5
BLAKE2b-256 44a9d02b65231f538445452e71c673ce37ae7400d3c1c88acaa62df68f265742

See more details on using hashes here.

File details

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

File metadata

  • Download URL: vaporetto-0.3.3-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 824.5 kB
  • Tags: CPython 3.11, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for vaporetto-0.3.3-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 077560b692a105b8326afb5bc243f7123e2a320832e299f5eb28f1f8ef9204b4
MD5 b95ddebdb187d2d53456d26a37c74dee
BLAKE2b-256 ec612db9f2e13d216ac4b3e798f1327934f13394cebfa54456a4c0ef20747d7c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: vaporetto-0.3.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 310.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for vaporetto-0.3.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 70748eb94ab9f353b265740b213f8245c53c3b02d2c852a4c59727a540debb95
MD5 ecb73fdf2c9f7217196cffe2595444be
BLAKE2b-256 7c9730069e805542063d51c0949bfc5147d77d97bfed4cb836ef815358a4c44b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: vaporetto-0.3.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 296.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for vaporetto-0.3.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2aabc64a03f45308850f6a4e8e2f1a4e4416567ed373ab211ffa2d6d5b2c1165
MD5 a4053f269392e54a44615ddf99298140
BLAKE2b-256 f725e5a12f46b04ae2360e4dc42d14d26a736919a6a6e8792932123519099f18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: vaporetto-0.3.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 465.5 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for vaporetto-0.3.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab7ad79e4a7c3bef6b98d031bd0f3316521b88ca33e79d9b2e2f98edbf305723
MD5 9fb89fd72933a541608c40327dbbb4ea
BLAKE2b-256 1d5be21be11a2c1e7bae953d46db28f21c9ae35b6782ab6876b4cec5139a4413

See more details on using hashes here.

File details

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

File metadata

  • Download URL: vaporetto-0.3.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 501.9 kB
  • Tags: CPython 3.10, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for vaporetto-0.3.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 aff250692845633c79d3014fb4add250888163780560e96b1de7d870ca0dd26b
MD5 8d7a2b43b1c2dcd26c876de466503e17
BLAKE2b-256 5f5289b98479aff88512dcf1be4483f4c9d1ddac1db51b8f7a8e6abf42eb1481

See more details on using hashes here.

File details

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

File metadata

  • Download URL: vaporetto-0.3.3-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 825.0 kB
  • Tags: CPython 3.10, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for vaporetto-0.3.3-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 ce5c2be794074d3aa565df9f3c8fadf404728b3333fa96e485a4d7d88cf33402
MD5 2a34d90f1a87f401f9b8674a75bbac0c
BLAKE2b-256 98ecd7d3d3770209ad5b641f4dac6576db4dba2fc2800e76f251542fe069b21d

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