Skip to main content

Python wrapper for vtzero C++ library.

Project description

python-vtzero

Experimental Python wrapper of vtzero a minimalist vector tile decoder and encoder in C++

Status Packaging status

Requirements

  • Python >= 3.8
  • gcc/clang++ >= 4.5 (C++11)

Install

You can install python-vtzero using pip

$ python -m pip install vtzero

or install from source

$ git clone https://github.com/tilery/python-vtzero
$ cd python-vtzero

# Download vendor submodules (protozero, mvt-fixtures, vtzero)
$ git submodule update --init

# Compile Cython module
$ python setup.py build_ext --inplace
$ python -m pip install -e .

Example

A complete example can be found here

from vtzero.tile import VectorTile, Tile, Layer, Point

# Create MVT
tile = Tile()

# Add a layer
layer = Layer(tile, b'my_layer')

# Add a point
feature = Point(layer)
feature.add_points(1)
feature.set_point(10, 10)
feature.add_property(b'foo', b'bar')
feature.add_property(b'x', b'y')
feature.commit()

# Encode mvt
data = tile.serialize()

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

vtzero-0.0.1b4.tar.gz (131.0 kB view details)

Uploaded Source

Built Distributions

vtzero-0.0.1b4-cp311-cp311-win_amd64.whl (137.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

vtzero-0.0.1b4-cp311-cp311-win32.whl (129.8 kB view details)

Uploaded CPython 3.11 Windows x86

vtzero-0.0.1b4-cp311-cp311-musllinux_1_1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

vtzero-0.0.1b4-cp311-cp311-musllinux_1_1_i686.whl (1.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

vtzero-0.0.1b4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (573.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

vtzero-0.0.1b4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (563.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

vtzero-0.0.1b4-cp311-cp311-macosx_11_0_arm64.whl (139.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

vtzero-0.0.1b4-cp311-cp311-macosx_10_9_universal2.whl (199.4 kB view details)

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

vtzero-0.0.1b4-cp310-cp310-win_amd64.whl (137.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

vtzero-0.0.1b4-cp310-cp310-win32.whl (129.7 kB view details)

Uploaded CPython 3.10 Windows x86

vtzero-0.0.1b4-cp310-cp310-musllinux_1_1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

vtzero-0.0.1b4-cp310-cp310-musllinux_1_1_i686.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

vtzero-0.0.1b4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (560.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

vtzero-0.0.1b4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (550.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

vtzero-0.0.1b4-cp310-cp310-macosx_11_0_arm64.whl (138.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

vtzero-0.0.1b4-cp310-cp310-macosx_10_9_universal2.whl (198.0 kB view details)

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

vtzero-0.0.1b4-cp39-cp39-win_amd64.whl (137.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

vtzero-0.0.1b4-cp39-cp39-win32.whl (130.3 kB view details)

Uploaded CPython 3.9 Windows x86

vtzero-0.0.1b4-cp39-cp39-musllinux_1_1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

vtzero-0.0.1b4-cp39-cp39-musllinux_1_1_i686.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

vtzero-0.0.1b4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (565.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

vtzero-0.0.1b4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (556.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

vtzero-0.0.1b4-cp39-cp39-macosx_11_0_arm64.whl (139.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

vtzero-0.0.1b4-cp39-cp39-macosx_10_9_universal2.whl (199.7 kB view details)

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

vtzero-0.0.1b4-cp38-cp38-win_amd64.whl (137.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

vtzero-0.0.1b4-cp38-cp38-win32.whl (130.4 kB view details)

Uploaded CPython 3.8 Windows x86

vtzero-0.0.1b4-cp38-cp38-musllinux_1_1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

vtzero-0.0.1b4-cp38-cp38-musllinux_1_1_i686.whl (1.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

vtzero-0.0.1b4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (567.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

vtzero-0.0.1b4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (558.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

vtzero-0.0.1b4-cp38-cp38-macosx_11_0_arm64.whl (139.7 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

vtzero-0.0.1b4-cp38-cp38-macosx_10_9_universal2.whl (200.6 kB view details)

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

File details

Details for the file vtzero-0.0.1b4.tar.gz.

File metadata

  • Download URL: vtzero-0.0.1b4.tar.gz
  • Upload date:
  • Size: 131.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.19

File hashes

Hashes for vtzero-0.0.1b4.tar.gz
Algorithm Hash digest
SHA256 6eb13cadedb5a25547bcead0f9a8d41e3dc865ee8cbb138d74782d45dce2735f
MD5 7a92461227a74ffabecc23dde9fac4f0
BLAKE2b-256 66f29d405e6dd96d45329c37a1ff72001b0d93482cc834f6498a7e10cf1035ba

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: vtzero-0.0.1b4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 137.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.19

File hashes

Hashes for vtzero-0.0.1b4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4495fed619483495951e7c6739964e76692bedfe790c9fb7fea07ca6f6b8b320
MD5 c22408ed20c552544550d279e6fa6ed9
BLAKE2b-256 905b7a8be461dee846753fc3f9a99664fa3bfd15041f93316e4be7b58441798b

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp311-cp311-win32.whl.

File metadata

  • Download URL: vtzero-0.0.1b4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 129.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.19

File hashes

Hashes for vtzero-0.0.1b4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6c91edfcb857ba92c60c048c3b39efb673ad4905d4de7a661b3be3e17877fcf3
MD5 66aa34a4e0b44865e4a14e709ed111f1
BLAKE2b-256 45a3281427d3c67a6e1af74ab92453cec3b3331137feb4247e295577803eb5a5

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for vtzero-0.0.1b4-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 78f54fb1e4462e3fa4a0e995bb94ddcc821a4848526500fb4dea017e0d4daa80
MD5 36f36d1b633fc4e3a98d7101d93957fc
BLAKE2b-256 0fd613fa68a6c4c9bbd4a21432070eefeb241254c87d8d2dbf72c1544857c8a3

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for vtzero-0.0.1b4-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 27892192e0e79e7d1e046abb2bd7a5c39b8c45e84e08b5bed91136ad92a9d64d
MD5 1e54665c21991b23fdd06978d231a0c1
BLAKE2b-256 77d5f2781ef479d1a7a338f6f65da7f53351b647b17e2765e8ece559d4bb980a

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vtzero-0.0.1b4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 86f2b1668007b8f17e4166834569a9c45ec17d0b324ec3a48a604c15c1fa5af8
MD5 d988c7a3ebf7e157e6be895c34e96a92
BLAKE2b-256 0f40b4b91dff1c3815aae809cad7b3601b7c73bf83ac2e1970e985a0bc8aad6d

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for vtzero-0.0.1b4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b42d82345bedadf8de9808f178f94e8c410240cff5cfda84ef7ff06dca31e59c
MD5 ffc680cdd6c0690d7d260856c34ded00
BLAKE2b-256 ccf71c260891d5d7b6768642e3d55b6feea1f33584843adf9b7a872ee788a155

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for vtzero-0.0.1b4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 403ee0b83a2d0c454aafcb978eaceb28c839cb42dced251faf24c8f2a1534a8d
MD5 0671980f9f29efd9220922a0bb7aa6c9
BLAKE2b-256 71ba5e714bb334309285a15c5a415140e5453f56a89105037b8416ec42e2d910

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for vtzero-0.0.1b4-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0615a0c82095ba692c3e8b44c88d2fcaea9f0461b1709a71f2ece85e20a1a196
MD5 09cfc995707ca833dd2b4ec4d9251b7f
BLAKE2b-256 fe1e701092d8206b1ada57daa70b6cdaca0f48ec1c6b1c96cbdc18f217ec9d1b

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: vtzero-0.0.1b4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 137.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.19

File hashes

Hashes for vtzero-0.0.1b4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cfc1c14b757a99ad65c2b0db662d502b1ed842df789e4a11b1147b7ec04d0e2a
MD5 85c794eaa85c1d23535b4e1f2446b365
BLAKE2b-256 be127ca9c3cd1a437f67cd920948910113b9e735e1e5db3e0000f738b83e2dcb

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp310-cp310-win32.whl.

File metadata

  • Download URL: vtzero-0.0.1b4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 129.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.19

File hashes

Hashes for vtzero-0.0.1b4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0a68029a3b5db5abbf08b1f957f5dc7db62e409173bec7ffafd9ac227a55e93d
MD5 a962ec9e082d64b778a430c51861cf85
BLAKE2b-256 5140034ff09d216e3ead8d17c4bdfc3a2515bbfc4811f6f9a0d8d2c7b8048ad8

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for vtzero-0.0.1b4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 492f1ab9b9bf199534e5f1ee54aaaae3f64db8364ea850371c6c5355358f5f76
MD5 63ce1769cb0611fe22ed5f3fc78a7728
BLAKE2b-256 462f5ee69d964d1b0e3bea8fc535821b84555eeeb7b05c46706a8a0446677668

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for vtzero-0.0.1b4-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 849d448e18cd7bedc131c1b2e53d0d56d58af74957d8ceecca802d674cc2f2f8
MD5 2112679376ef41abea5e49203bc8aeda
BLAKE2b-256 3f2dc5fa249686fc9dd4d3f8cc0d42a857176aa34bbfc598e972cfb14824608b

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vtzero-0.0.1b4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0e6c1b91a946b3d244e334bceeb44b24adc73af624be7c2753997b2be35f766
MD5 54e9460182de7d530e2fe276a37a5534
BLAKE2b-256 6e4554e94493c90192118123d0ec7adcf32e02664aa7357eefda44f37d63c77f

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for vtzero-0.0.1b4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d2fe62c3c3abe9059b3b13de2c22d2f4cc7ef571680579035c469f16d94a17d6
MD5 55f61494e37d56111c7b75b3bd614a20
BLAKE2b-256 dd7e04b47fe3203c9332bb637fc2490578040024eae8b8c529d4c3afb482be24

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for vtzero-0.0.1b4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa68856f641e9e8ca564b26d27e1ec1a526c849b30740338f9ecc144d183b3ce
MD5 273a0c5c9cc110c957a5396bdeae9f9c
BLAKE2b-256 68d910b3ae1c96a74065d41acc3ecdcf46e8ba7c9024ecbe02211feaf52e7808

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for vtzero-0.0.1b4-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1a792a5a2f4de81c4e0b29f244c403480c27448aef79042bb3fd8d055e8ec7a7
MD5 0a36d00d9559478c7479eea01239a230
BLAKE2b-256 7c7503fb2b2f49c2fc6c2f7ab2567e9f2c9bbae76dc55884bbce6e716e73591a

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: vtzero-0.0.1b4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 137.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.19

File hashes

Hashes for vtzero-0.0.1b4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7f8cbfcb3df68fd4cf7de9e13d6b45d1611d8017176dc243d81fa105eacf8faf
MD5 da1d2a9cae82379972abe62f2a6badcb
BLAKE2b-256 fe023a8379d30a59eddf6a617fe824b55d8184b8adf31cb454a743b04376182a

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp39-cp39-win32.whl.

File metadata

  • Download URL: vtzero-0.0.1b4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 130.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.19

File hashes

Hashes for vtzero-0.0.1b4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4742d58ba6d38eb63ee76c9a56bdf712e5cab410e754631a8bbb243bb0aea05e
MD5 d57f27a246dc43a258cea98223bbbafe
BLAKE2b-256 015b14053d4d8e4144e27076d10153a57ae0ae8ed592fc1aa3af0679035ff61f

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for vtzero-0.0.1b4-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8551baf094952747fcea336ec25e0d7ad60a52c080ee85235360da3a1594acad
MD5 19ea0c94c379e08cd9cd84e19ca58af5
BLAKE2b-256 afb4331313f2b990b30f4a29b0e3d24d19b73b8e64ee73a128d59fdc87a0d4b5

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for vtzero-0.0.1b4-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 341fcc947dc99f85197151cfe930f251a11f711c83b370d90801215602fa1e5c
MD5 6935d0bff66fbb3bfe883c88b5f9eda6
BLAKE2b-256 d67c343ee30705ce7bb58ffb4d835d307b04ced675cb262643ec44d0bf02a412

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vtzero-0.0.1b4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10de06fade01b9d3633b1885c39d3850224c5062edeb0b9f1e977422d1410c45
MD5 18e6f2c541d52fe92f338fcf289fdecd
BLAKE2b-256 de2245ef24b898ca0c2de3e8398172fe782ba5fc4ca4b8dd31128f24b48bad13

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for vtzero-0.0.1b4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8012def0322eaa757de6a1b120ffb1f9e7eec3c8a17e0737f5a4ff795e35e198
MD5 8d097b5d1e20c191a475a590230035ad
BLAKE2b-256 a8f326628e37ddf523934d9977208ff9691edda301d3ad77a36cf8d598d3752f

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for vtzero-0.0.1b4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7a4e74725fab1262ad2ddd4ee8ed297e13a36c234d544eee80b313fbc9594cc
MD5 4d5c5d782338b63d1fee5eeeaf0c3cd8
BLAKE2b-256 4631cf824cb0ffea886eb1d41eb1bfc63908de5661012b7b56ce1241428f118e

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for vtzero-0.0.1b4-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c9426d816d5d07fab6536d85764bc49ce4e5ac3fcf49086c691e7968d1213885
MD5 0dfe18272e90659b2dd851656ec32f80
BLAKE2b-256 9da52e890821787d957c5740f7a0b76c6e94fc0c6fa16e45dc13d3ccd1c3ba7b

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: vtzero-0.0.1b4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 137.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.19

File hashes

Hashes for vtzero-0.0.1b4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b04812119e6a9e812d0e2e4951d36d1a84bbb1b6b1043307614b4d203d398a74
MD5 336fab8c1ed8204a0d4c385d33d8e7ec
BLAKE2b-256 1c1e23494ce0cf3c5afa07557757f43efeecedac37057acc7b812b2dcfbb84ef

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp38-cp38-win32.whl.

File metadata

  • Download URL: vtzero-0.0.1b4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 130.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.19

File hashes

Hashes for vtzero-0.0.1b4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9e7585a7ddd0675db238c528979a91425613da4dee44d2c312a6b79ca7af40fd
MD5 48f149da86ebe241f50181831ea61f4c
BLAKE2b-256 b9bb62946cef5bdf8e1610349d57da419687412591896a94aed1c65dd45e74a5

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for vtzero-0.0.1b4-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d8fbff8de1923425fb7427b82a541c5790e25a96a43eba012894281ba64028a5
MD5 69172c7451d520d1fbb01dc3e1eafc00
BLAKE2b-256 8160e7a387f6eeb5625be862c286b62672300ee49cfb47837ec22be23d07dedd

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for vtzero-0.0.1b4-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 24ce682157a727406c679d38e01bb5b70eed4c81ef23b5dbbfcb13ecf5647f48
MD5 b35c3ff891f18044e0f6eed12a2a3bd5
BLAKE2b-256 b3c75b8d532c0fbbb9d69aa91c61643d5cd1f5cf30310a790466484e86b2c6b1

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vtzero-0.0.1b4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d1a89a15dd7a7fd77df71de7b99b205f9bbcecc49ea4c4eaceeb47462ce9873
MD5 3c388a0f65756c35925a0a31157faf8b
BLAKE2b-256 58eb0969153d35efbbc6918681ad49dfcf1f39dd7e3b2128c514892e91cdb056

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for vtzero-0.0.1b4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c43c1562c7f5a25b266e21174ef2994015f67d13d84717e07a56ad99541b0565
MD5 78c1d520ef4506c61edc0fb8dd59bfa1
BLAKE2b-256 e65788a659cc362a6457a8234a00f1d18a29e1f26f97c69ed288184d81edab6b

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for vtzero-0.0.1b4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4801d07da661def53d7356bba19fd040fafc51690f6fdd5f18b2a15bb41ee0a5
MD5 5ba059ebfdda94499d41b475bf9c359d
BLAKE2b-256 4331de6aea44fc39f5b850dbce5e6486e2456343433f88fb4d7a3612f0361fb8

See more details on using hashes here.

File details

Details for the file vtzero-0.0.1b4-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for vtzero-0.0.1b4-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0a96e77a3d988b6f0e56a8a91af65b0798a5207e0ea1250a709766f573a3c930
MD5 ab2a8627df868719dd59fd1c7a55dada
BLAKE2b-256 f075a070dd6a0490a6b3d989e9e0688acbdaf7563ac53b42bcab6cbbcf6086a4

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