Skip to main content

High performance Lottie renderer powered by rlottie

Project description

PyLottie-Convert

High performance Lottie renderer powered by rlottie.

pylottie-convert lets you load Lottie (.json / .tgs) animations and export them to image formats like GIF, WebP, and APNG.

Installation

Install from PyPI:

pip install pylottie-convert

If you want export features (GIF / WebP / APNG), install Pillow too:

pip install "pylottie-convert[all]"

Or install specific extras:

pip install "pylottie-convert[gif]"
pip install "pylottie-convert[webp]"
pip install "pylottie-convert[apng]"

Requirements

  • Python >= 3.9
  • numpy
  • pillow (optional, required for save_gif, save_webp, save_apng)

Quick Start

1) Load from .json and inspect metadata

from pylottie_convert import Animation

anim = Animation()
anim.load_file("assets/sample.json")

print("Size:", anim.size)       # (width, height)
print("FPS:", anim.fps)
print("Frames:", anim.frames)
print("Duration:", anim.duration)

2) Render a frame to NumPy RGBA array

frame0 = anim.render(0)
print(frame0.shape, frame0.dtype)  # (H, W, 4) uint8

3) Export animation

# GIF
anim.save_gif("out.gif", fps=anim.fps)

# Animated WebP
anim.save_webp("out.webp", fps=anim.fps, quality=90)

# APNG
anim.save_apng("out.png", fps=anim.fps)

4) Load Telegram .tgs and export

from pylottie_convert import Animation

anim = Animation()
anim.load_tgs("assets/telegram_sticker.tgs")

print("TGS size:", anim.size)
print("TGS fps:", anim.fps)

# Export to GIF/WebP
anim.save_gif("telegram_sticker.gif", fps=anim.fps)
anim.save_webp("telegram_sticker.webp", fps=anim.fps, quality=90)

Load from JSON string

from pathlib import Path
from pylottie_convert import Animation

data = Path("assets/sample.json").read_text(encoding="utf-8")

anim = Animation()
anim.load_json(data)
anim.save_gif("from_json.gif")

Load from Telegram .tgs

from pylottie_convert import Animation

anim = Animation()
anim.load_tgs("assets/sticker.tgs")
anim.save_webp("sticker.webp")

API Overview

Main class: Animation

  • Loaders:
    • load_file(path)
    • load_json(data)
    • load_tgs(path)
  • Metadata:
    • width, height, size, fps, frames, duration
  • Rendering:
    • render(frame) -> numpy.ndarray (RGBA, uint8)
    • iter_frames()
  • Export (requires Pillow):
    • save_gif(path, fps=None, loop=0, disposal=2, optimize=False)
    • save_webp(path, fps=None, loop=0, quality=90, method=4, lossless=False)
    • save_apng(path, fps=None, loop=0)

Notes

  • Ensure the input file is a valid Lottie JSON or valid .tgs file.
  • Export methods raise RuntimeError if writing output fails.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

pylottie_convert-0.1.1.dev3-cp314-cp314t-win_amd64.whl (151.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

pylottie_convert-0.1.1.dev3-cp314-cp314t-win32.whl (133.9 kB view details)

Uploaded CPython 3.14tWindows x86

pylottie_convert-0.1.1.dev3-cp314-cp314t-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pylottie_convert-0.1.1.dev3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (364.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pylottie_convert-0.1.1.dev3-cp314-cp314-win_amd64.whl (142.6 kB view details)

Uploaded CPython 3.14Windows x86-64

pylottie_convert-0.1.1.dev3-cp314-cp314-win32.whl (127.4 kB view details)

Uploaded CPython 3.14Windows x86

pylottie_convert-0.1.1.dev3-cp314-cp314-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pylottie_convert-0.1.1.dev3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (364.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pylottie_convert-0.1.1.dev3-cp313-cp313-win_amd64.whl (139.4 kB view details)

Uploaded CPython 3.13Windows x86-64

pylottie_convert-0.1.1.dev3-cp313-cp313-win32.whl (124.1 kB view details)

Uploaded CPython 3.13Windows x86

pylottie_convert-0.1.1.dev3-cp313-cp313-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pylottie_convert-0.1.1.dev3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (364.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pylottie_convert-0.1.1.dev3-cp312-cp312-win_amd64.whl (139.4 kB view details)

Uploaded CPython 3.12Windows x86-64

pylottie_convert-0.1.1.dev3-cp312-cp312-win32.whl (124.0 kB view details)

Uploaded CPython 3.12Windows x86

pylottie_convert-0.1.1.dev3-cp312-cp312-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pylottie_convert-0.1.1.dev3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (364.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pylottie_convert-0.1.1.dev3-cp311-cp311-win_amd64.whl (138.0 kB view details)

Uploaded CPython 3.11Windows x86-64

pylottie_convert-0.1.1.dev3-cp311-cp311-win32.whl (123.0 kB view details)

Uploaded CPython 3.11Windows x86

pylottie_convert-0.1.1.dev3-cp311-cp311-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pylottie_convert-0.1.1.dev3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (361.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pylottie_convert-0.1.1.dev3-cp310-cp310-win_amd64.whl (137.6 kB view details)

Uploaded CPython 3.10Windows x86-64

pylottie_convert-0.1.1.dev3-cp310-cp310-win32.whl (122.3 kB view details)

Uploaded CPython 3.10Windows x86

pylottie_convert-0.1.1.dev3-cp310-cp310-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pylottie_convert-0.1.1.dev3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (360.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pylottie_convert-0.1.1.dev3-cp39-cp39-win_amd64.whl (137.6 kB view details)

Uploaded CPython 3.9Windows x86-64

pylottie_convert-0.1.1.dev3-cp39-cp39-win32.whl (122.5 kB view details)

Uploaded CPython 3.9Windows x86

pylottie_convert-0.1.1.dev3-cp39-cp39-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pylottie_convert-0.1.1.dev3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (360.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

File details

Details for the file pylottie_convert-0.1.1.dev3-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for pylottie_convert-0.1.1.dev3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 667794ad42a3d88499994d2522075756cc420bec8d230e08d43675d70406c069
MD5 750645fedd7652536dc5b5ed9460586a
BLAKE2b-256 b81cd7ed101bef0e8eb9289cbfb533d13c50e5b13220d6fbdffc7cd4b18d09a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylottie_convert-0.1.1.dev3-cp314-cp314t-win_amd64.whl:

Publisher: wheels.yml on hoanganhcoder/pylottie-convert

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylottie_convert-0.1.1.dev3-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for pylottie_convert-0.1.1.dev3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 368955662cd5a54fd3c297a585f5702176c088622fe874452080f66206d703da
MD5 b994e78f0a1d7a487bf737f1155d851b
BLAKE2b-256 d4e2dfbea6938380de503c70bc98345100d314065ccc0d44ee66dc7e36df544e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylottie_convert-0.1.1.dev3-cp314-cp314t-win32.whl:

Publisher: wheels.yml on hoanganhcoder/pylottie-convert

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylottie_convert-0.1.1.dev3-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylottie_convert-0.1.1.dev3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 60ba5777f7ed1ceaf370cefe74d48a086602d0601c1f0f1f0a29092cc69f6c1a
MD5 38c2430f4dcb9f6f812762833fc0d4c8
BLAKE2b-256 4f55cf9cc82a412cebefd8b64b85f5c779347bea0ec9b7992ec1378dccf2ae63

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylottie_convert-0.1.1.dev3-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on hoanganhcoder/pylottie-convert

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylottie_convert-0.1.1.dev3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylottie_convert-0.1.1.dev3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7f6ec7256204af3c42982c5db1593768b221e39050b5c49e27d88dcf7062227b
MD5 7559ce2948ec3bb827c90c00d03b4c8e
BLAKE2b-256 a4be52aad9cf56b2d219cd62bc6e0df12ef5642371af2be31afffc4e26c61565

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylottie_convert-0.1.1.dev3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on hoanganhcoder/pylottie-convert

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylottie_convert-0.1.1.dev3-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pylottie_convert-0.1.1.dev3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 628ba3236136fd0a324b212d6c31a6f5fdcf29ec9b1954f8ca48d66a84d85ad1
MD5 51405627c0cd2814f06993872d76ba69
BLAKE2b-256 fd0efa2fc13c8e12c74d541fe08e143528e73f42bd60e3c360772ba6e84b7a3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylottie_convert-0.1.1.dev3-cp314-cp314-win_amd64.whl:

Publisher: wheels.yml on hoanganhcoder/pylottie-convert

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylottie_convert-0.1.1.dev3-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for pylottie_convert-0.1.1.dev3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 570f566cadcccda75139b9ab122afecff6410fd122981295f2e95454ba7b6679
MD5 81768a4dbd63a6125056537aebf1873e
BLAKE2b-256 f3abce6aed37a73c3a9c74f4c998a446fe9d8a7adc2d1fa4301c748de3554696

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylottie_convert-0.1.1.dev3-cp314-cp314-win32.whl:

Publisher: wheels.yml on hoanganhcoder/pylottie-convert

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylottie_convert-0.1.1.dev3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylottie_convert-0.1.1.dev3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 abf8a9b1e778fab83e0a915224a3f52f1142c3db3961c95e051c748b4ce98d90
MD5 7b361e540946cd132c744a0cc96a4d5e
BLAKE2b-256 0152d84dc68c75778b34d460857afb47fe66fd0fb80997dc99b71fada7b0503d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylottie_convert-0.1.1.dev3-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on hoanganhcoder/pylottie-convert

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylottie_convert-0.1.1.dev3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylottie_convert-0.1.1.dev3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a9d75467d1947dcc6dc15eab0d54000fdb6ea8abfd53f57fbaa289b8b54d248d
MD5 cb46b9b7d71b095ce6276cb3a7db4167
BLAKE2b-256 949b40fd2a22835a16b339dbe74516e46fd57030ae01bb69ec1b5e560c32258f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylottie_convert-0.1.1.dev3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on hoanganhcoder/pylottie-convert

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylottie_convert-0.1.1.dev3-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pylottie_convert-0.1.1.dev3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6118caf7412b12594eb35844119fbeb8d82d1b2bf001304ceb755f5bb221d85d
MD5 ac50c3426417a4c35c06527e34a4f7ef
BLAKE2b-256 9365956065aa63683529372da3864fb2bf2ad8338a40ed011d639498cde0bfb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylottie_convert-0.1.1.dev3-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on hoanganhcoder/pylottie-convert

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylottie_convert-0.1.1.dev3-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for pylottie_convert-0.1.1.dev3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f7f5735bf1ae833828f8f76ff5549a4440ab25904febae04243d928d6f9cc828
MD5 89469f48a5838aa3e01cc0ee5dfea44d
BLAKE2b-256 467f559a5227200c6ccb8227c48fad11a2483afcaefcb6c9105d0ca46014e723

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylottie_convert-0.1.1.dev3-cp313-cp313-win32.whl:

Publisher: wheels.yml on hoanganhcoder/pylottie-convert

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylottie_convert-0.1.1.dev3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylottie_convert-0.1.1.dev3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f9590c393218d8ef628b1203e96ded4fa2b57f663954f98b9eaaa2094cc57092
MD5 d5ab98db120d461f1c3375f04cdb87a4
BLAKE2b-256 43ad5d616cc6c17ddd388ca4eaeb5950d6efcc47b14dcd3965bce9551f5bd41a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylottie_convert-0.1.1.dev3-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on hoanganhcoder/pylottie-convert

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylottie_convert-0.1.1.dev3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylottie_convert-0.1.1.dev3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7d1e0bc329ec162e1c2678143db8f2dde702f289b658ba5373c796d3f8e4ada0
MD5 d2d7673768545027de559b8eb6dfbd4e
BLAKE2b-256 05a3ebea995fdb412ecb0deb7f9d9bb31e3d92390de835797377aae8f583bc44

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylottie_convert-0.1.1.dev3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on hoanganhcoder/pylottie-convert

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylottie_convert-0.1.1.dev3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pylottie_convert-0.1.1.dev3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9fe319e475a998d29769c776c51c77bfc6668757becc4e620b776f26e135eec7
MD5 99c44fc319d292fdbf7a1e4eaebba34a
BLAKE2b-256 9e467f06a812d6c0e596510c3c3c30b3822b8852bbf7ae449af0913ad02f584a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylottie_convert-0.1.1.dev3-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on hoanganhcoder/pylottie-convert

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylottie_convert-0.1.1.dev3-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for pylottie_convert-0.1.1.dev3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 96a3c280b92c2e6069723741a764316895bcc1ec4abe82d61d935e66a20a5752
MD5 a707b953d09e37656b0e0665357d6489
BLAKE2b-256 d49b9023d523643d67fe05490108680d021ed33fcf83e31300e5379390ef0be5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylottie_convert-0.1.1.dev3-cp312-cp312-win32.whl:

Publisher: wheels.yml on hoanganhcoder/pylottie-convert

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylottie_convert-0.1.1.dev3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylottie_convert-0.1.1.dev3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c8827da757c56989c3e3e9d9f46c8271ee703e747fff1e091056c1ba400726e9
MD5 db3a57a2f9d93f57134babe32058d9fb
BLAKE2b-256 4cf7055cc10831b9bcff447bb358dbef4616fa55fe77d7fdd78364852e73a0ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylottie_convert-0.1.1.dev3-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on hoanganhcoder/pylottie-convert

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylottie_convert-0.1.1.dev3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylottie_convert-0.1.1.dev3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 763336ccff10df823250ced545d10747c0e924b810d0cde4d61ac72837b2b869
MD5 ceaf007a77e16a7737318113bc0e26b1
BLAKE2b-256 65ec2efa540114dadc85236c094685a91be672f9b03bc69a98633976cb991bac

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylottie_convert-0.1.1.dev3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on hoanganhcoder/pylottie-convert

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylottie_convert-0.1.1.dev3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pylottie_convert-0.1.1.dev3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a101488166d164eae7d85568145cd1ed9707747d4c3572e1c9e19f62431ef062
MD5 043b053fbfb42d2498957cae79c28101
BLAKE2b-256 1abb0827277564e6ace766a832fdb1df2766a6aaf5cc6861687449a0e23f6fdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylottie_convert-0.1.1.dev3-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on hoanganhcoder/pylottie-convert

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylottie_convert-0.1.1.dev3-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for pylottie_convert-0.1.1.dev3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e18bd99783c01f1857ded3291d9d35d705a87f607d31971384afef6c7a534a25
MD5 82ab9795006670c0b906d1bb3116a371
BLAKE2b-256 4932a5bb76f3be3bf540c602d953aeb5e42894a536cdef73424e56cfead91418

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylottie_convert-0.1.1.dev3-cp311-cp311-win32.whl:

Publisher: wheels.yml on hoanganhcoder/pylottie-convert

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylottie_convert-0.1.1.dev3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylottie_convert-0.1.1.dev3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4eb4b3c23a98ea8b99a6312c4e30318330fb78fef51b945ab3ac355cbf16fa1a
MD5 3ab43731b026b2ae503954f2870155ae
BLAKE2b-256 2c7791f800ece0d07da31910e05f00c6fdee177e5963327c16d14dc81cfa88d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylottie_convert-0.1.1.dev3-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on hoanganhcoder/pylottie-convert

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylottie_convert-0.1.1.dev3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylottie_convert-0.1.1.dev3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3abb36542ac19d65995a63a5c42deadeacd2bf6bf661aa21a92f21194450bf5d
MD5 dada7e4817dd20a2bdc6100e5e27c852
BLAKE2b-256 b27fbd6c50bb812fc85d26f46da3041a1c829e1c985558c48539e18c895c7342

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylottie_convert-0.1.1.dev3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on hoanganhcoder/pylottie-convert

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylottie_convert-0.1.1.dev3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pylottie_convert-0.1.1.dev3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c9dae12050a0b1ae0e9ca677984975f3df636cac13bf41ee5f83a052ec2242ff
MD5 9384814b2146df3f7530d0895ea92c1e
BLAKE2b-256 4098de514ba734d9ad5c3acee350433df05b26aac7aac410df4659d8a3dfbff9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylottie_convert-0.1.1.dev3-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on hoanganhcoder/pylottie-convert

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylottie_convert-0.1.1.dev3-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for pylottie_convert-0.1.1.dev3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a8c51dc3cb69efac40f56e9cc488f57bb142338f5aecb77d11c5873b5bb77f15
MD5 ead3990fbb02d1e01b25042b2fafa0aa
BLAKE2b-256 49342ad14530460b173a00e02606fdfa5a10adef2c405ef99c115f467ea1b575

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylottie_convert-0.1.1.dev3-cp310-cp310-win32.whl:

Publisher: wheels.yml on hoanganhcoder/pylottie-convert

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylottie_convert-0.1.1.dev3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylottie_convert-0.1.1.dev3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16366b1f70d9c7cbf3619292b16ff882a6140ab895d0dfd15d8b6fd4c43ffd89
MD5 30e12734be2c2053c8583f5241d83dd3
BLAKE2b-256 f48691c0fd4ac166dc995bb2c397ca033dcfbe1d52698a95aa473276c31b991b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylottie_convert-0.1.1.dev3-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on hoanganhcoder/pylottie-convert

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylottie_convert-0.1.1.dev3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylottie_convert-0.1.1.dev3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7107cf041279e34a3869875c21109bc6d5acab14f01be717c5b6601886c29b9b
MD5 29994af2133b9bcb033dc738bcf2803a
BLAKE2b-256 748e8f4fd8005fc68bed197e18b0ef4190f50b7903cd834d38ce9a3fd560711c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylottie_convert-0.1.1.dev3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on hoanganhcoder/pylottie-convert

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylottie_convert-0.1.1.dev3-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pylottie_convert-0.1.1.dev3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 93e225e3422e975a5d716db2546a247c8462794061b201a1c2a67abb28ee0673
MD5 8d396d3d913c3935c5f5b394052fb1ae
BLAKE2b-256 0be7b522bb0b23427b235800d8316dc63dbfd8ac075126339f99f82d0cd0fb15

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylottie_convert-0.1.1.dev3-cp39-cp39-win_amd64.whl:

Publisher: wheels.yml on hoanganhcoder/pylottie-convert

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylottie_convert-0.1.1.dev3-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for pylottie_convert-0.1.1.dev3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d115cb0fc9e51d703a2c5d58f9147be79c6ec906d299e021ad6a365b7ed8a619
MD5 fad1d6b04568892a8a24659dcb554b02
BLAKE2b-256 77419e9c4e8fb1bc53dc890f6904b58f62ffd8b6809bcc4d908417de0da20e86

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylottie_convert-0.1.1.dev3-cp39-cp39-win32.whl:

Publisher: wheels.yml on hoanganhcoder/pylottie-convert

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylottie_convert-0.1.1.dev3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylottie_convert-0.1.1.dev3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a9310e6502641446026fa4ccac75ba384c7041a58dc4c41969b848034a5bda7
MD5 705d324ea71ea3ecd7d5bb8cad21e849
BLAKE2b-256 88e56b94ac5e46d79cc11e8992b502a5211afe0d76a8802c66b5b3c9ade25c6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylottie_convert-0.1.1.dev3-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on hoanganhcoder/pylottie-convert

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylottie_convert-0.1.1.dev3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pylottie_convert-0.1.1.dev3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b1d1c267ca5537d4baeca0a1a0ca14970ad9fb41dc6449ac66cca3c21d28fb8c
MD5 ef182ae016f9bc3744bd0218f20a66d5
BLAKE2b-256 dc220467e0bfa56b46b41b8b033a9d3ebab3f51b16badc8295cdf9307354931f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylottie_convert-0.1.1.dev3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on hoanganhcoder/pylottie-convert

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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