Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

PyIced

GitHub Workflow Status Documentation Status PyPI PyPI - Python Version OS - Windows | Linux License

Python bindings for Iced.

Iced is a cross-platform GUI library focused on simplicity and type-safety. Inspired by Elm.

Installation

Precompiled wheel:

$ pip install pyiced

From source:

$ pip install .

To install from source you need to have a recent version of Rust installed in your $PATH.

Rustup is probably the most easy to use option to install and update Rust on your system.

Quick Example

from pyiced import (
    Align, button, ButtonState, column, container, IcedApp, Length, text,
)


class ExampleApp(IcedApp):
    def __init__(self):
        self.__incr_button_state = ButtonState()
        self.__decr_button_state = ButtonState()
        self.__value = 0

    def title(self):
        return 'Counter'

    def view(self):
        increment_button = button(
            self.__incr_button_state,  # To track the state across redraws.
            text('Increment'),         # This is content on the button.
            on_press='incr',           # This value is received in update().
        )
        value_label = text(f'{self.__value}', size=50)
        decrement_button = button(
            self.__decr_button_state,
            text('Decrement'),
            on_press='decr',
        )
        return container(
            column(
                [increment_button, value_label, decrement_button],
                align_items=Align.CENTER,
            ),
            padding=20, align_x=Align.CENTER, align_y=Align.CENTER,
            width=Length.FILL, height=Length.FILL,
        )

    def update(self, msg, clipboard):
        # When an event occurs, this method is called.
        # It can optionally return a list of async functions,
        # to handle the event.
        match msg:
            case 'incr':
                self.__value += 1
            case 'decr':
                self.__value -= 1


if __name__ == '__main__':
    # This function only returns if there is an error on start-up.
    # Otherwise the program gets terminated when the window is closed.
    ExampleApp().run()

Bigger Example

Please find the source code in examples/chess.py.

Release files for pyiced 0.3.0a7

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pyiced 0.3.0a7
File Size Uploaded
pyiced-0.3.0a7.tar.gz 84.4 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for pyiced 0.3.0a7
File
pyiced-0.3.0a7-cp310-cp310-musllinux_1_1_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-64 Details
pyiced-0.3.0a7-cp310-cp310-manylinux_2_24_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.24+ x86-64 Details
pyiced-0.3.0a7-cp310-cp310-manylinux_2_24_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.24+ x86-32 Details
pyiced-0.3.0a7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
pyiced-0.3.0a7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32 Details
pyiced-0.3.0a7-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.12+ x86-64 Details
pyiced-0.3.0a7-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.12+ x86-32 Details
pyiced-0.3.0a7-cp39-cp39-musllinux_1_1_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-64 Details
pyiced-0.3.0a7-cp39-cp39-manylinux_2_24_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.24+ x86-64 Details
pyiced-0.3.0a7-cp39-cp39-manylinux_2_24_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.24+ x86-32 Details
pyiced-0.3.0a7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
pyiced-0.3.0a7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32 Details
pyiced-0.3.0a7-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.12+ x86-64 Details
pyiced-0.3.0a7-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.12+ x86-32 Details
pyiced-0.3.0a7-cp38-cp38-musllinux_1_1_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-64 Details
pyiced-0.3.0a7-cp38-cp38-manylinux_2_24_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.24+ x86-64 Details
pyiced-0.3.0a7-cp38-cp38-manylinux_2_24_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.24+ x86-32 Details
pyiced-0.3.0a7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
pyiced-0.3.0a7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32 Details
pyiced-0.3.0a7-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.12+ x86-64 Details
pyiced-0.3.0a7-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.12+ x86-32 Details
pyiced-0.3.0a7-cp37-cp37m-musllinux_1_1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64 Details
pyiced-0.3.0a7-cp37-cp37m-manylinux_2_24_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.24+ x86-64 Details
pyiced-0.3.0a7-cp37-cp37m-manylinux_2_24_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.24+ x86-32 Details
pyiced-0.3.0a7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
pyiced-0.3.0a7-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Details
pyiced-0.3.0a7-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-64 Details
pyiced-0.3.0a7-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-32 Details

Total release size: 146.2 MB

Release files / pyiced-0.3.0a7.tar.gz

Download URL pyiced-0.3.0a7.tar.gz
Size 84.4 kB
Tags Source
SHA-256 checksum
How to use checksums
9dacae4d49a8407e0fa26eacee1c49384d6f38d71016afcafde88d0897e85202
BLAKE2b-256 checksum
How to use checksums
bb853fff4cf5a79afb6c0315d616deb88ac0911c2c940534ca607da101484c5c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/24.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.9.10

Release files / pyiced-0.3.0a7-cp310-cp310-musllinux_1_1_x86_64.whl

Download URL pyiced-0.3.0a7-cp310-cp310-musllinux_1_1_x86_64.whl
Size 5.6 MB
Tags CPython 3.10 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
c6bcb2fc72078874c40d5da78c1c39372336bf2b7768508d0346f1bdf71a8b30
BLAKE2b-256 checksum
How to use checksums
dcb68c74dc567c21b1986ff5a627d086cf103d21c0a2535b1111496dedfc42de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/24.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.9.10

Release files / pyiced-0.3.0a7-cp310-cp310-manylinux_2_24_x86_64.whl

Download URL pyiced-0.3.0a7-cp310-cp310-manylinux_2_24_x86_64.whl
Size 5.0 MB
Tags CPython 3.10 Linux glibc 2.24+ x86-64
SHA-256 checksum
How to use checksums
9f03ca62291e97a6f33dcf0c4bc5608d31bee16dc509b2623fe9a1122d87b6bb
BLAKE2b-256 checksum
How to use checksums
4b7e3063642ea62f700c084f89b18f777fd2845818f2cc9f83dc698ce80d4db5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/24.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.9.10

Release files / pyiced-0.3.0a7-cp310-cp310-manylinux_2_24_i686.whl

Download URL pyiced-0.3.0a7-cp310-cp310-manylinux_2_24_i686.whl
Size 5.3 MB
Tags CPython 3.10 Linux glibc 2.24+ x86-32
SHA-256 checksum
How to use checksums
4e358027c7e9c6af35e379d0e95ed965cde9b1694552901d53a7d404138d52ce
BLAKE2b-256 checksum
How to use checksums
03132eced6e9b98a4dfc8e50ad70fd4232642931ace16c5326a8a5f938b3eb63
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/24.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.9.10

Release files / pyiced-0.3.0a7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyiced-0.3.0a7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.0 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
0784f38ae5349707fc29cc2b0818b557e394d647f46ef2b1438a7a4448104b49
BLAKE2b-256 checksum
How to use checksums
65ae3179b1db6cba541905c51ff1cf045c7027ed65df4e386b8d95dde8e41f5f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/24.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.9.10

Release files / pyiced-0.3.0a7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pyiced-0.3.0a7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Size 5.3 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
9f1ac199cabdbd7c07673be2fb7c03aded42272b6c98b5522c8985b59a3b18d9
BLAKE2b-256 checksum
How to use checksums
e362e7c736fb260e0d92ddb808d084711e5c9a5631c91510515c39ca7d22454e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/24.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.9.10

Release files / pyiced-0.3.0a7-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl

Download URL pyiced-0.3.0a7-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Size 5.0 MB
Tags CPython 3.10 Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
fc2e6dda994000e076da8ed5b534cd9498a79925193f7bfa695e1d795813d9c2
BLAKE2b-256 checksum
How to use checksums
fb8a07e8a1102dd9aec7e90f906496adf07fa54520a1bd34b5ab741c3aabf0db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/24.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.9.10

Release files / pyiced-0.3.0a7-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl

Download URL pyiced-0.3.0a7-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Size 5.3 MB
Tags CPython 3.10 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
7e4a4d7c0500fd1be170ade1c4c28e35a73cb798a68f40a0b8aabab49607e5cc
BLAKE2b-256 checksum
How to use checksums
5b7ba9ab014bb8999087a2591560fb8b56fa60252ceb003e8967a5f4c77ae5ea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/24.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.9.10

Release files / pyiced-0.3.0a7-cp39-cp39-musllinux_1_1_x86_64.whl

Download URL pyiced-0.3.0a7-cp39-cp39-musllinux_1_1_x86_64.whl
Size 5.6 MB
Tags CPython 3.9 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
8751b01b6773eca1d5cc67f27b56b4e3628dafdf3e5a16607af5fcb69f2b0f89
BLAKE2b-256 checksum
How to use checksums
d37c9c2a7a0bc78615a07c58cf1440cb7a49f50fc2fd0e5dd58e0d5b2034abf7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/24.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.9.10

Release files / pyiced-0.3.0a7-cp39-cp39-manylinux_2_24_x86_64.whl

Download URL pyiced-0.3.0a7-cp39-cp39-manylinux_2_24_x86_64.whl
Size 5.0 MB
Tags CPython 3.9 Linux glibc 2.24+ x86-64
SHA-256 checksum
How to use checksums
0743c4cadeffd73f0a89442bfd3b57355044332dba4a7c57f311b700506758cb
BLAKE2b-256 checksum
How to use checksums
8b84a35684199687c53fe3ca28187183913a4dadbbfdbb9d86c8d6c5a32c477f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/24.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.9.10

Release files / pyiced-0.3.0a7-cp39-cp39-manylinux_2_24_i686.whl

Download URL pyiced-0.3.0a7-cp39-cp39-manylinux_2_24_i686.whl
Size 5.3 MB
Tags CPython 3.9 Linux glibc 2.24+ x86-32
SHA-256 checksum
How to use checksums
cdba50670879da8d397e595c398463d687ad4b17a33566acc90756cf2d19d297
BLAKE2b-256 checksum
How to use checksums
26c103a33760190107702b1f97d0f8279ad7bd5be6e66a4355daf8207ca7ba11
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/24.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.9.10

Release files / pyiced-0.3.0a7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyiced-0.3.0a7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.0 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
21733664a85c1d3fa32b2c4dac23c3b11ff4a3751366bd8d73702f450c8d60a5
BLAKE2b-256 checksum
How to use checksums
df096e01640786ab8168f455056e35437b16a7735333cdb38ed5206c2a6d63fc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/24.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.9.10

Release files / pyiced-0.3.0a7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pyiced-0.3.0a7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Size 5.3 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
94ea00418876800cf7f4280a31b5ad59b99170a07e50b1d7e40c40e61fd78588
BLAKE2b-256 checksum
How to use checksums
69d750d45f9af86fa56cf8193c236b437a85b3c82f5b39b9ed1da4c9d3868cc0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/24.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.9.10

Release files / pyiced-0.3.0a7-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl

Download URL pyiced-0.3.0a7-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Size 5.0 MB
Tags CPython 3.9 Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
404a7a19c1800a868eab75cdc1e9f69d41b3fb511a5131870305e50c13c60312
BLAKE2b-256 checksum
How to use checksums
319bc51c95f091bbdfb8dcc4b03dd88819c000c8057c41bb4fa39ffd9de21284
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/24.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.9.10

Release files / pyiced-0.3.0a7-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl

Download URL pyiced-0.3.0a7-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Size 5.3 MB
Tags CPython 3.9 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
5de88af549a331fa7eb21d8f751400a1f21f6ef50fe07208fe547eb4c13d64da
BLAKE2b-256 checksum
How to use checksums
3af3606915ddbdf7f55b6983d16f2d1eac7b91acd04bbd672fa07d3f51396c84
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/24.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.9.10

Release files / pyiced-0.3.0a7-cp38-cp38-musllinux_1_1_x86_64.whl

Download URL pyiced-0.3.0a7-cp38-cp38-musllinux_1_1_x86_64.whl
Size 5.6 MB
Tags CPython 3.8 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
c87f092ccc2dbe211788247e50d751a29b4c3844768e200ca471671de91a855b
BLAKE2b-256 checksum
How to use checksums
0830245997f3c48675b94f8f80d2a21c7fb49157c3446e72ac8ad6f056d90caa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/24.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.9.10

Release files / pyiced-0.3.0a7-cp38-cp38-manylinux_2_24_x86_64.whl

Download URL pyiced-0.3.0a7-cp38-cp38-manylinux_2_24_x86_64.whl
Size 5.0 MB
Tags CPython 3.8 Linux glibc 2.24+ x86-64
SHA-256 checksum
How to use checksums
55857a4b9f18375caf2ed3adfd27285953ce6d8076a13b1df6840df62a593196
BLAKE2b-256 checksum
How to use checksums
a30ee1875040580e83bd358dfc739c4a72467df457b16147dfcb8851b4a1b858
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/24.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.9.10

Release files / pyiced-0.3.0a7-cp38-cp38-manylinux_2_24_i686.whl

Download URL pyiced-0.3.0a7-cp38-cp38-manylinux_2_24_i686.whl
Size 5.3 MB
Tags CPython 3.8 Linux glibc 2.24+ x86-32
SHA-256 checksum
How to use checksums
1edbe37afd92848ade5497c0a5ea86c82e1e71dc8fd2ed141ff2e15857978b27
BLAKE2b-256 checksum
How to use checksums
9144bc0722ec6b484546b760a51a3d5d2b7b63a10648cc7c830ea984b53869d3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/24.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.9.10

Release files / pyiced-0.3.0a7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyiced-0.3.0a7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.0 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
55036198c329a38c3dd3e798c974158e24330c924cb1e90dc501cc4382a5d708
BLAKE2b-256 checksum
How to use checksums
0ce66dbf52de50354e3c84f9773826cf781c78655fb4c3d027730086e0f342e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/24.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.9.10

Release files / pyiced-0.3.0a7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pyiced-0.3.0a7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Size 5.3 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
f6521774f28c73055cd58726cc64a9c82889b2a9813be8c4d2cd2679993fb6e3
BLAKE2b-256 checksum
How to use checksums
067be72d44189e7a3a07d27e34aea3aa8d13e2a71a26914d80b884fec162a64f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/24.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.9.10

Release files / pyiced-0.3.0a7-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl

Download URL pyiced-0.3.0a7-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Size 5.0 MB
Tags CPython 3.8 Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
f909872bda571cf5331624f8d48b94d4fe8f1738ed09012cf608551bd9c2ec7b
BLAKE2b-256 checksum
How to use checksums
dd54883e8c69ba7deadcbdc14cd12d2870941b954abfbf1997085496b5d9fddf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/24.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.9.10

Release files / pyiced-0.3.0a7-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl

Download URL pyiced-0.3.0a7-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Size 5.3 MB
Tags CPython 3.8 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
882fe0fcec824e98b86686b99a2e426409773b2228e355a7c64a808905b32dc4
BLAKE2b-256 checksum
How to use checksums
89c9dc48db34de864ba66fb5bcc3a1daaf4d978543be9f1fed2ab09d4e334f24
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/24.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.9.10

Release files / pyiced-0.3.0a7-cp37-cp37m-musllinux_1_1_x86_64.whl

Download URL pyiced-0.3.0a7-cp37-cp37m-musllinux_1_1_x86_64.whl
Size 5.6 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
5663baf9b3e66f3cb363b6e31f60d842cfae7a9cc0628b7bdb9346394c0ccdfa
BLAKE2b-256 checksum
How to use checksums
d08992b3ac467bf8d5a69a71fec333bd80b330f26827758797faac0ca900b482
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/24.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.9.10

Release files / pyiced-0.3.0a7-cp37-cp37m-manylinux_2_24_x86_64.whl

Download URL pyiced-0.3.0a7-cp37-cp37m-manylinux_2_24_x86_64.whl
Size 5.0 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.24+ x86-64
SHA-256 checksum
How to use checksums
c9ce85d203f461475fe1fb0e244222f8051fe2977f40deba0f94891165768100
BLAKE2b-256 checksum
How to use checksums
4f32d6c5289109ecd6ec1edf3e9e9b565ac24d40501095eeb38bb77461d5547f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/24.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.9.10

Release files / pyiced-0.3.0a7-cp37-cp37m-manylinux_2_24_i686.whl

Download URL pyiced-0.3.0a7-cp37-cp37m-manylinux_2_24_i686.whl
Size 5.3 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.24+ x86-32
SHA-256 checksum
How to use checksums
d676b0428346b845bb96da51af3737ddc3821aa89cbf1e580163c57653ef2679
BLAKE2b-256 checksum
How to use checksums
39db74a6cf3a9d4916879b5eb67efdb4979a915b0ea10c40178ae8c5fd40686c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/24.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.9.10

Release files / pyiced-0.3.0a7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyiced-0.3.0a7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.0 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
21470eccfc764bae7d3ae6ace431b0aee1b39e85f5046bf9c5fb72a3dc581a1e
BLAKE2b-256 checksum
How to use checksums
8b091232a38ea17267e6c7361b5a114d549dd4bbc7cc062decdb93d65c1a96db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/24.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.9.10

Release files / pyiced-0.3.0a7-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pyiced-0.3.0a7-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Size 5.3 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
e6dd7e7607a6104c283fe67fbaf7e9a6dcf15f33b1757d9ee84a33a126827381
BLAKE2b-256 checksum
How to use checksums
bdfe6b5bfd3b22764387fe208898e9a9ff89435dbd94a442687325470270c8b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/24.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.9.10

Release files / pyiced-0.3.0a7-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl

Download URL pyiced-0.3.0a7-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Size 5.0 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
0d2e80553472c9e9d6586f33fddf34c786d72c1c13bf967906eb3bbbf82fa850
BLAKE2b-256 checksum
How to use checksums
071e7ce2a19813d4fad134e16f8cf50497859e3b564cf518ab0ac6158396c7c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/24.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.9.10

Release files / pyiced-0.3.0a7-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl

Download URL pyiced-0.3.0a7-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Size 5.3 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
b9f2802535c68940e9d3f84e885c219d4c24787e4e27cf40c319cc3bd2d67a1d
BLAKE2b-256 checksum
How to use checksums
39df5a17e7e6cb1c79697dd189cab63220a556fc91e94ff81d3c24fd209b0838
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/24.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.9.10
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page