Skip to main content

dvpl-converter encodes and decodes DVPL-compressed World of Tanks Blitz assets with LZ4 and LZ4-HC support

Project description

dvpl-converter

dvpl-converter encodes and decodes DVPL-compressed World of Tanks Blitz assets with LZ4 and LZ4-HC support. By default, it decodes, verifies CRC32 integrity, and writes output next to the input file. It ships as a Rust crate (dvpl-engine), a Python CLI installable via pip, and a single-file standalone script that only needs lz4.

crates.io PyPI CI License

Licensed under MIT.

About

Originally a 180-line script I wrote because I couldn't open Blitz's asset files for a side project. I wanted to learn maturin, so the script became a Rust engine bridged to Python through PyO3. Mildly overkill for the job, but it's fast and it was fun to build.

Install

Python CLI:

pip install dvpl-converter

Rust crate:

cargo add dvpl-engine

Standalone script (no Rust toolchain, only needs lz4):

pip install lz4
python standalone.py file.xml.dvpl

Usage

dvpl-converter file.xml.dvpl        # decode (default)
dvpl-converter -e file.xml          # encode with LZ4-HC
dvpl-converter *.dvpl               # batch
dvpl-converter -o out/ *.dvpl      # output directory
Flag Short Description
--encode -e Encode to DVPL (default is decode)
--compression -c 0 none, 1 LZ4, 2 LZ4-HC (default: 2)
--output-dir -o Output directory

Rust API

use dvpl_engine::{decode, encode, COMP_LZ4_HC};

let blob = encode(b"hello DVPL", COMP_LZ4_HC)?;
let out = decode(&blob)?;
assert_eq!(out, b"hello DVPL");

Full API on docs.rs/dvpl-engine.

DVPL format

A .dvpl file is a payload followed by a 20-byte footer:

Field Size Encoding
original_size 4 bytes little-endian
compressed_size 4 bytes little-endian
crc32 4 bytes little-endian
compression 4 bytes little-endian
magic 4 bytes DVPL

Compression types: 0 none, 1 LZ4, 2 LZ4-HC.

Development

git clone https://github.com/MihaiStreames/dvpl-converter.git
cd dvpl-converter
maturin develop --release

License

MIT. See LICENSE.

Made with ❤️

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

dvpl_converter-0.1.3.tar.gz (34.4 kB view details)

Uploaded Source

Built Distributions

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

dvpl_converter-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (278.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

dvpl_converter-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (250.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

dvpl_converter-0.1.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (247.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

dvpl_converter-0.1.3-cp314-cp314-win_amd64.whl (157.4 kB view details)

Uploaded CPython 3.14Windows x86-64

dvpl_converter-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (275.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

dvpl_converter-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (248.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

dvpl_converter-0.1.3-cp314-cp314-macosx_11_0_arm64.whl (245.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dvpl_converter-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl (253.6 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

dvpl_converter-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (247.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

dvpl_converter-0.1.3-cp313-cp313-win_amd64.whl (157.3 kB view details)

Uploaded CPython 3.13Windows x86-64

dvpl_converter-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (275.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

dvpl_converter-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (248.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

dvpl_converter-0.1.3-cp313-cp313-macosx_11_0_arm64.whl (245.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dvpl_converter-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl (253.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

dvpl_converter-0.1.3-cp312-cp312-win_amd64.whl (157.2 kB view details)

Uploaded CPython 3.12Windows x86-64

dvpl_converter-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (275.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

dvpl_converter-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (248.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

dvpl_converter-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (244.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dvpl_converter-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl (253.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

dvpl_converter-0.1.3-cp311-cp311-win_amd64.whl (158.7 kB view details)

Uploaded CPython 3.11Windows x86-64

dvpl_converter-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

dvpl_converter-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (249.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

dvpl_converter-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (246.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dvpl_converter-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl (254.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

dvpl_converter-0.1.3-cp310-cp310-win_amd64.whl (158.6 kB view details)

Uploaded CPython 3.10Windows x86-64

dvpl_converter-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

dvpl_converter-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (249.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

Details for the file dvpl_converter-0.1.3.tar.gz.

File metadata

  • Download URL: dvpl_converter-0.1.3.tar.gz
  • Upload date:
  • Size: 34.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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 dvpl_converter-0.1.3.tar.gz
Algorithm Hash digest
SHA256 0c953e97c5007520542c5da8d042ac0621523395c174d48eabb38c2997b5fc6c
MD5 03508e860ee04a35d32e3590bf8e4eca
BLAKE2b-256 0b133e4047e36394d2d7e7217968ebc2ded5926feef06c5df7dfe199c3a029b5

See more details on using hashes here.

File details

Details for the file dvpl_converter-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: dvpl_converter-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 278.4 kB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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 dvpl_converter-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d109c107543066abf4b1a47558e6a2ba685c7ee165110c1817fbf8520c1ff37
MD5 349289f0aee104c53f1e75a82c3b157f
BLAKE2b-256 1e25158bff7ecc3909840418336d23931318456f769021969c090c45680b86db

See more details on using hashes here.

File details

Details for the file dvpl_converter-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: dvpl_converter-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 250.6 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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 dvpl_converter-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d1ebe9c8998699784001e33ddd5f74debdc5028756ac1a75a6cd89c1f817a579
MD5 06b641b590a1c6c38f326b41ecb53fba
BLAKE2b-256 383025567dc5e7f87aab84f267e77886ec23e92d46bde2dafe88b32ca02b1b61

See more details on using hashes here.

File details

Details for the file dvpl_converter-0.1.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: dvpl_converter-0.1.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 247.4 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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 dvpl_converter-0.1.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9472527b27390aadc763b7407167633f856f9dcb1f412276def21ebbf4f64fea
MD5 abdd44d54e2e11d1f43a5a200a5cb9dd
BLAKE2b-256 a9ccd4faa3c8a811be91daa04d179f5aea39d0cd7baf7c7e31d453c1ff376409

See more details on using hashes here.

File details

Details for the file dvpl_converter-0.1.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: dvpl_converter-0.1.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 157.4 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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 dvpl_converter-0.1.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 db4e5191f545b4ab8ff8871f037088a392bfde7a75d323f49a2bae1439be72bc
MD5 456867fec146c70815a26ff231d39c50
BLAKE2b-256 648c854192fd8a88907e6b691c839f149a43147aa89310b19b995ceef6472ecb

See more details on using hashes here.

File details

Details for the file dvpl_converter-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: dvpl_converter-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 275.4 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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 dvpl_converter-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03827e4198ad530fb57723edded87d4d34f4b94fe2dacb5790b16983b03c2da2
MD5 8073421cf787ddd535861606ab27537a
BLAKE2b-256 e7ffe06432a0f8b688f05d524196db3de8432a9df8ae787c94aeb1edd00e6a2a

See more details on using hashes here.

File details

Details for the file dvpl_converter-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: dvpl_converter-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 248.2 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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 dvpl_converter-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed971537bffc2b09906ae5effd0f2812b7445f4d257779577fca044b0cff6a30
MD5 b36e59235e2896d40d536e414adecd24
BLAKE2b-256 a493d2026b588b01403daab69391e7a5fd2136ef62b99fe175315ff7da06628a

See more details on using hashes here.

File details

Details for the file dvpl_converter-0.1.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: dvpl_converter-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 245.1 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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 dvpl_converter-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2a0769d4c43c7215c1d5c11848ec6cc3b428c71a6a4ab44db093bccb1e04c2f
MD5 604843d930b2634ea21f47119d070b6c
BLAKE2b-256 af0da2a76746613001fe2b792b8b1913d5ac0049059a2602d3afda7cd2a4086b

See more details on using hashes here.

File details

Details for the file dvpl_converter-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: dvpl_converter-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 253.6 kB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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 dvpl_converter-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7321d11977c9b926dc911ccd5ed1fca7fbfb381ce2474bf21d487c11a588e838
MD5 762d0ee8d29b7d5a8a4d24408b8d8513
BLAKE2b-256 795ef421c25e4ecb0bcba88bf4393a7fe6f4b7218aed46de9673607ef121c70e

See more details on using hashes here.

File details

Details for the file dvpl_converter-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: dvpl_converter-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 247.4 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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 dvpl_converter-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 503f1262356b60a0b923a289a9ac9ba92882999f9c7ff7bf0aaeef8d59672226
MD5 efb8cedd48ace74dcf5e32b91b2749c6
BLAKE2b-256 c5bf1f7afeb8d6d205ac41e30409b28c4debd3098944060fac66b705556ce8ee

See more details on using hashes here.

File details

Details for the file dvpl_converter-0.1.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: dvpl_converter-0.1.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 157.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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 dvpl_converter-0.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2c912ee965af1b31de1eb8ff2d8d4d4507f1e4a7d9b096a61a7d5001538faf9e
MD5 ea0effc9fc02a9bab5a2e2c775e08192
BLAKE2b-256 3734cc4ad55646db717835c757ffb916b37321d51948f98b128ae87c4883dfc4

See more details on using hashes here.

File details

Details for the file dvpl_converter-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: dvpl_converter-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 275.4 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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 dvpl_converter-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 855edd206e545762fe6c1671f07bb41c0dde2fc65380619ab0df7be61bd8dff8
MD5 de8c20f28a0c9e42f663549da36646d4
BLAKE2b-256 786208188cf86f3bd0ac6bbb90a5bb2efbf87b3d4e8da289fe63f4e0022333f0

See more details on using hashes here.

File details

Details for the file dvpl_converter-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: dvpl_converter-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 248.4 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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 dvpl_converter-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55255cd25e1e84277783b8062617a85c97c08e7927c5c9550428d7ac783cbe11
MD5 e036f83b4ea3b9ae662fbb93e073392f
BLAKE2b-256 9b09d321c65e267db4c73fed0e030b55a506a08b16c95bd7f18af8b042a1ecec

See more details on using hashes here.

File details

Details for the file dvpl_converter-0.1.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: dvpl_converter-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 245.1 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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 dvpl_converter-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 392a5e83afbd0bc29065400ff1deb376e2aa5d49d42258c3ad975a22b9a6fad1
MD5 1884e2c94ee5767fffa3c3909622599d
BLAKE2b-256 f8b10a1934799c92064d5c9f90e3fc048c5db1a5ef8c5726cd9cc3838ac7c273

See more details on using hashes here.

File details

Details for the file dvpl_converter-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: dvpl_converter-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 253.3 kB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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 dvpl_converter-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ab2b2a95704e25262491af17869b45b0e4d761cc60522e01ed34d1d2d1b30d44
MD5 979eece4e21be4fbfd4722b7e8a83eb3
BLAKE2b-256 f66aa955ea91d32175422db4f573d0d357439b98997347972c086ada72e55bbe

See more details on using hashes here.

File details

Details for the file dvpl_converter-0.1.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: dvpl_converter-0.1.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 157.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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 dvpl_converter-0.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c29a08f378800251baca73e57bdd1dae3c3afd594a9fdee29f65038f1885ff9a
MD5 808359707f2a68f875ddc47083863e62
BLAKE2b-256 973b840aa5c84d873ec366bb5d44a495c102c065fce82046893f2082c0c292cb

See more details on using hashes here.

File details

Details for the file dvpl_converter-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: dvpl_converter-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 275.6 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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 dvpl_converter-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4cf0baa6f6d012034a8b068c056b0ac993abe43ef90af9386fd6946474b0a376
MD5 98077498a0142d25b99720616aca9009
BLAKE2b-256 a029113230c00b6df912f923a9afb784c474d37145d7ca79a278148f4771e01e

See more details on using hashes here.

File details

Details for the file dvpl_converter-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: dvpl_converter-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 248.4 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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 dvpl_converter-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 355a8338464c7141a410203d8fd14683565437ecfdae27c480319bb35eb24ee4
MD5 8d06833d3abb904338c1c43dd12894e5
BLAKE2b-256 cf5520c5ddf774232cd8fd877373cc748e0b40bbbcaaddeba43c834ccc1f2d94

See more details on using hashes here.

File details

Details for the file dvpl_converter-0.1.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: dvpl_converter-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 244.9 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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 dvpl_converter-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6479f33f94c239fc82f260e8f0b7f94bbd05177c9f6916c2024f64377feb17c
MD5 88578ca84f9116405bd890d8eec67deb
BLAKE2b-256 df28fd15b0c971b590488a2fd09cf40f1cb8c090e89dc88b8fd40fbf1198ff70

See more details on using hashes here.

File details

Details for the file dvpl_converter-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: dvpl_converter-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 253.2 kB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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 dvpl_converter-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 31426ac1825edfeae97d4605bace21163b79a45d7daffe636c0ee91a738b682b
MD5 dbe6579377cc396dc6d6d97edf589bb8
BLAKE2b-256 10a6c70baba0fbacd9819491acd7c572248d0cb7d6001a6ba0779fb496e5a98e

See more details on using hashes here.

File details

Details for the file dvpl_converter-0.1.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: dvpl_converter-0.1.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 158.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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 dvpl_converter-0.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0075e8c91769cbd697d6ed54c5154ffdf8f62e2607718e782dbea427d1ad52bf
MD5 c714a9dbc5ff390fb6f64eba07c36291
BLAKE2b-256 e1a7dfc82de41f03d2ac9fefc2539cc7415fda4cb8dfdf28db90d28d818c63cf

See more details on using hashes here.

File details

Details for the file dvpl_converter-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: dvpl_converter-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 277.5 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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 dvpl_converter-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d080037118bc478535f1e472594b87f8976c47e01c5980b8d80c00186cd8c713
MD5 befd13152e4602c19e3f026c6fff1051
BLAKE2b-256 86e2a73c7f3327a9543c424d892f1a34f4743edb91d9381ba9b93d38783855b8

See more details on using hashes here.

File details

Details for the file dvpl_converter-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: dvpl_converter-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 249.9 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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 dvpl_converter-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 564d417ce3adc8882df25de1a2ee132d19c1a706f4b35ffc13e94daf5040065b
MD5 a0071d036cb6ca73396ef783474b265f
BLAKE2b-256 b91970c3f861b883566071940bd4857b2ae8995c6444249e667b2cd1d949485e

See more details on using hashes here.

File details

Details for the file dvpl_converter-0.1.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: dvpl_converter-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 246.5 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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 dvpl_converter-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1845f496de33379033613f64e4768385f56eedf4a9ca6f950cbd80b9615dfa3
MD5 e4ec5880fb31ba5d67071a601e2fb47f
BLAKE2b-256 0e7360f1b1deef8defa0f2d8b7275597823e2646c3610c2cdf8698b4283ee4df

See more details on using hashes here.

File details

Details for the file dvpl_converter-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: dvpl_converter-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 254.8 kB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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 dvpl_converter-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e6da5e16a52a82eaa885c3e6ea916f792d50e408b748ca246f70b9316a98e78d
MD5 8b3ed2aa8ca4c2a9ccf45a7f74c34295
BLAKE2b-256 d73685e8d3d07eb98fca067d6e8ba2abfd66fb12ab8fd665616ae3b06e698603

See more details on using hashes here.

File details

Details for the file dvpl_converter-0.1.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: dvpl_converter-0.1.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 158.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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 dvpl_converter-0.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4a841c19bb6dbf57c2ef46d3b7a15f08018b6351098c6d3699dc7492e3ae9752
MD5 edd92a43239eec102c22bd59c0fd993b
BLAKE2b-256 3dfa03e2e7b79aeba07c5f812b449d4cd424d7c97144a68d72316b9d9f04cafb

See more details on using hashes here.

File details

Details for the file dvpl_converter-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: dvpl_converter-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 277.5 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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 dvpl_converter-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d2abb51ed9ebda2b7a99eed3cb5bfc5d35e97d09b6bec68c7b19c050fc344f3
MD5 5c33aa9bf1012dc945f403bde3137588
BLAKE2b-256 71854a147c89ea43a67184129205e9da5d0350e4398f56c209b0178c524c6064

See more details on using hashes here.

File details

Details for the file dvpl_converter-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: dvpl_converter-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 249.6 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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 dvpl_converter-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3478b2d8f5d034d2df4f9a9d228bbb4185c9f60a505190682453b5ab208840f
MD5 737415b1f5bf52c2e5d7eb46d1073d34
BLAKE2b-256 8649056adb39797db72aacc9fcb3f1b671f44c3033cf6110e9eea692aa65a134

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