Skip to main content

FlexBox layout engine for Python

Project description

FlexBox layout with Yoga in Python

FlexBox is a very neat layout engine available in all browsers. You can play around with it in this Playground to see which properties you need to get the desired results.

This is how to use it in Python with this project:

from flexbox import box, compute_layout

layout = compute_layout(
    box(width=610, flex_direction="row")(
        box(id="cal", flex_grow=1, flex_wrap="wrap", padding=5, justify_content="stretch")(
            box(width=90, height=90, margin=5, flex_grow=1)
            for _ in range(31)
        ),
        box(
            id="legend",
            position="absolute",
            width=200,
            height=200,
            right=25,
            top=25,
        ),
    )
)

# Access the computed layout

(layout / "legend").height
[box.width for box in layout.glob("/calender/*")]
layout["/legend"].x(0.5)  # horizontal center of the legend box


# Make a simple drawing of all boxes in the layout
from domtree.svg import svg, g, rect, text

print(
    svg(width=layout.width, height=layout.height)(
        g(name=name)(
            rect(
                fill="rgba(0,0,0,0.1)",
                stroke="rgba(0,0,0,0.4)",
                stroke_width=".3",
                x=box.left,
                y=box.top,
                height=box.height,
                width=box.width,
            ),
            text(
                x=box.x(0.5),
                y=box.y(0.5),
                text_anchor="middle",
                font_size=10,
                alignment_baseline="middle",
            )(name),
        )
        for name, box in layout.items()
    )
)

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

flexbox-0.0.2.tar.gz (64.8 kB view details)

Uploaded Source

Built Distributions

flexbox-0.0.2-pp39-pypy39_pp73-win_amd64.whl (274.4 kB view details)

Uploaded PyPy Windows x86-64

flexbox-0.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (416.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

flexbox-0.0.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (446.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

flexbox-0.0.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (329.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

flexbox-0.0.2-pp38-pypy38_pp73-win_amd64.whl (274.6 kB view details)

Uploaded PyPy Windows x86-64

flexbox-0.0.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (416.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

flexbox-0.0.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (447.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

flexbox-0.0.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (329.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

flexbox-0.0.2-pp37-pypy37_pp73-win_amd64.whl (273.4 kB view details)

Uploaded PyPy Windows x86-64

flexbox-0.0.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (418.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

flexbox-0.0.2-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (448.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

flexbox-0.0.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (327.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

flexbox-0.0.2-cp311-cp311-win_amd64.whl (140.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

flexbox-0.0.2-cp311-cp311-win32.whl (118.7 kB view details)

Uploaded CPython 3.11 Windows x86

flexbox-0.0.2-cp311-cp311-musllinux_1_1_x86_64.whl (727.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

flexbox-0.0.2-cp311-cp311-musllinux_1_1_i686.whl (795.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

flexbox-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (211.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

flexbox-0.0.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (227.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

flexbox-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl (170.4 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

flexbox-0.0.2-cp311-cp311-macosx_10_9_universal2.whl (319.0 kB view details)

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

flexbox-0.0.2-cp310-cp310-win_amd64.whl (140.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

flexbox-0.0.2-cp310-cp310-win32.whl (118.6 kB view details)

Uploaded CPython 3.10 Windows x86

flexbox-0.0.2-cp310-cp310-musllinux_1_1_x86_64.whl (727.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

flexbox-0.0.2-cp310-cp310-musllinux_1_1_i686.whl (795.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

flexbox-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (212.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

flexbox-0.0.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (227.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

flexbox-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl (170.4 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

flexbox-0.0.2-cp310-cp310-macosx_10_9_universal2.whl (319.1 kB view details)

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

flexbox-0.0.2-cp39-cp39-win_amd64.whl (140.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

flexbox-0.0.2-cp39-cp39-win32.whl (118.7 kB view details)

Uploaded CPython 3.9 Windows x86

flexbox-0.0.2-cp39-cp39-musllinux_1_1_x86_64.whl (727.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

flexbox-0.0.2-cp39-cp39-musllinux_1_1_i686.whl (796.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

flexbox-0.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (212.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

flexbox-0.0.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (227.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

flexbox-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl (170.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

flexbox-0.0.2-cp39-cp39-macosx_10_9_universal2.whl (319.2 kB view details)

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

flexbox-0.0.2-cp38-cp38-win_amd64.whl (140.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

flexbox-0.0.2-cp38-cp38-win32.whl (118.7 kB view details)

Uploaded CPython 3.8 Windows x86

flexbox-0.0.2-cp38-cp38-musllinux_1_1_x86_64.whl (727.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

flexbox-0.0.2-cp38-cp38-musllinux_1_1_i686.whl (795.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

flexbox-0.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (212.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

flexbox-0.0.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (227.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

flexbox-0.0.2-cp38-cp38-macosx_10_9_x86_64.whl (170.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

flexbox-0.0.2-cp38-cp38-macosx_10_9_universal2.whl (319.0 kB view details)

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

flexbox-0.0.2-cp37-cp37m-win_amd64.whl (139.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

flexbox-0.0.2-cp37-cp37m-win32.whl (120.4 kB view details)

Uploaded CPython 3.7m Windows x86

flexbox-0.0.2-cp37-cp37m-musllinux_1_1_x86_64.whl (729.9 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

flexbox-0.0.2-cp37-cp37m-musllinux_1_1_i686.whl (798.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

flexbox-0.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (213.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

flexbox-0.0.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (229.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

flexbox-0.0.2-cp37-cp37m-macosx_10_9_x86_64.whl (168.6 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file flexbox-0.0.2.tar.gz.

File metadata

  • Download URL: flexbox-0.0.2.tar.gz
  • Upload date:
  • Size: 64.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for flexbox-0.0.2.tar.gz
Algorithm Hash digest
SHA256 7fb6889dbbf31939e1e4857697afe3f6a8b5d9f841760845b7a0ad3c04994c4f
MD5 e8ade0a89d9f7122b115949a8d5616e8
BLAKE2b-256 3b62d9480f3ae4560fbf5183fa324482df6dc0b75a3e80768538df287f041817

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 95b8dd32450926932effe8d92bd716b8db5ae0b68a0f29b4b54fd307fd2b644b
MD5 1d02d7ceb10543c980b8dfd505da3b9d
BLAKE2b-256 9a7ad2b86abe639478e2b909865f559bc93e771cf35ed1d5b7e3edbf14a967dd

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8df54dc40705f8ed0a5d95ab5e91a17e1631633615dd47fdb9e285f34ce7d4d
MD5 0d802aac5e8d306e0bfea8310f541c46
BLAKE2b-256 10251f99742e411d886713c4edab41ab90051da184c9f10de8813e1f8bee58ad

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2ba06138021584ac102a26af7625c4518dd2eecebc01a95a31ecd73b27e6b69c
MD5 b9f8fea49619ea520051dfccd0f5795e
BLAKE2b-256 0d3b4beceae068df0582a93a56682b5342fea11fcb5ca6779baf7dd0d93fd232

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d8427a772c88dd5d1b9ba49b6a4380f63348755fbfe4ac6691903d80a2482014
MD5 3f54b575aceafcb1dd9bb4f820e3626d
BLAKE2b-256 15d33ffbfd6c6c651a39f2284b9139edbc5902001fb19bd7b69f17bb801520b8

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 adc11401c39efa25aa7a1e2473c16863c4f63e7d9fe790e196ab2bb41adee4bb
MD5 b26606fc296118e8395a4825af3cde3c
BLAKE2b-256 0899ff8056a77540d2e1713c418820025d94b4fe869d81e57e038128599f1b27

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84ddc7223eb83570063f567299e77a33ba1a3ff4c63c86f9322064d160851a5d
MD5 e209dc7f16a78161c599d9250e6ffb3f
BLAKE2b-256 9f1b4d22bcf5e22f4f771d19a7f795b6846471d8bdcd6ba5e8daf5c5a31fbdd8

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 19281e7c8e378e299f4c48a7049d9b3a8a429848aa4108bea4489e8333977df7
MD5 a26f3da90c580668841cbfbf761e4d77
BLAKE2b-256 9ac9f4ad9c812f61632cc5737b304dc7a4b27a5cf126801c54208a074656b7ea

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 619f06cefea7f6b636518bda8f133d16d9a7d6a509f0f0bfab3b38046b9d3d7f
MD5 f4dbfe2320a17e5da4e8a8b17d43c25e
BLAKE2b-256 e837fbd63cb06eee8aee88f1475ed51597639bd6bd420f0ebe9b8009f0854213

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6b5b70b45d906de5dc68e3b65194b2522a3cc9f29d7ad759879a53558db56cb9
MD5 17b0521999faed324e002fa88d4645d2
BLAKE2b-256 14b83a8660c34030955bab2b31f6ec627e84e9703bdc77baab355d8eea9e6907

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51009518f87a97b352f619e3ea916be7d9c14b1c24d7e51e1e94d78f5ba06e7f
MD5 68916e714374c7114792fe780e70d720
BLAKE2b-256 7056d1c8e158cf5a7569f706b39c2390073cfb78eb8bf3db92ec76fa346738c3

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7bce3737d5e51f8329b78a339cb111b41ef5717dd189d41217090d1b8c873669
MD5 94faec317819c4a600c7ed20bd3b8d51
BLAKE2b-256 c8ca2cbddd1454467d0d5fe8bc557890068cd93a439b62434cb88b57718024a5

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 02154371adb19196659bccdb763d1e465092ee75ef2daca38a48c3e09392041d
MD5 f704e2c6c5b02df41b082003944f7836
BLAKE2b-256 1b086a977b897d77beffa5aa62851e3c69cb2b080ec22d6ada00eb90c5d10cc4

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: flexbox-0.0.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 140.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for flexbox-0.0.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 edcd68b853bfb166a4b0278b20b7d062dce04e4703a198fe51cf2f35380de479
MD5 8d523de352c9a6dbc3e18dc5801ce31e
BLAKE2b-256 cd89674490e11448416a056efb4908f4e0f758c792e070a22821ee54f50e090b

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: flexbox-0.0.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 118.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for flexbox-0.0.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 eafbdb39d774933c3da118a04ae5fd722d3e7ef9138bfc90506e70011445a3f6
MD5 226a9554196e167d69e29f2602a72807
BLAKE2b-256 82b8cc6870a66a06827f12d37593b79d623236b7b419eb725bdc5fdce192b8ff

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 64af80d2c282d48609012f5cb9f290db5c8850cbd9f20ce4a0b74928bcaa6c97
MD5 a464e87bed18c7e871eb5a1216678356
BLAKE2b-256 a18d6ca7ed1dacdc05cbf92f7ca753abc7f0dffe5d48a1d2e240d7cc0563aa3b

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c567d92da095aeb7742670cb7f565f5f56158b5df0879a0dd08e5a120d425f47
MD5 bea985f47984e15b741b85dab8c62ad8
BLAKE2b-256 a55fedee3755aa63a60a351abba1fd57fa73ea8fe94395b78041bf168221fe38

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3727f8b3326f520ed55d73bfb1f7cbe9577e590b4675458e2beab83a5be7fae4
MD5 7fb01ffa5682975a111aa565850e3e88
BLAKE2b-256 32e714acdafdb566fb456681ff4c463eb263bdd1c7629a4f90f34273307f4c23

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e6c815520a42cf4515f36e33de63126bea37479b3c371f139317ba99949fa84a
MD5 b0704c0def7554d17c9965fbaa059747
BLAKE2b-256 1d20b441f004768eb96266853f5766772553540a8b6118d9f3e85214e2597532

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7aeadb51cc5a79c1d8cea3f9a7a7226a2cdfb717818b4dc9e3a482b0c5cc2b6b
MD5 a7375209c42eb7f8bad961e8fdaf1c43
BLAKE2b-256 b09bff4f4a7044980abae2c209f933dd84fc549ef3cc5d3b676da78585efd73d

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7f01c6f2438935fcdf2f493ecd75fc7f9144a09c11bf8655dadb501bd8b716cd
MD5 9ab82f72ee394768a938319c733386aa
BLAKE2b-256 f53dd080a303e132f1ba1e625162e9565f3c9a37d09646a98cca60afbc8cdd6a

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: flexbox-0.0.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 140.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for flexbox-0.0.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 678d8ebc369194bbd67635df1395ec073442c50ce14a8ae7ae2aab532d091ab7
MD5 baed702acdc2078e8123b260ae0922ee
BLAKE2b-256 36ca3a3a59e352ef9372e6bbbb28d6240dd8a4c5c0b67b3d4c8d78d4856d1b05

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: flexbox-0.0.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 118.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for flexbox-0.0.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 95e5830065196ef691317a9789b3cd5673eb6f308db5a7842d80e8b50d3360c8
MD5 0b0a985e964d5b095282b9f8ed46143b
BLAKE2b-256 6e26bc6d084a702a671edecefba32e3c96f13d2ee4665a5619f8d24d6db2a272

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ba206656a038ac3c235935c4cb349e1fd376bf22fb8a88b011630c07c65f3653
MD5 3b84caf19b18102641f97e6c53cf335f
BLAKE2b-256 abd03f4d7c07ef16fe69dad87e9324f8458dc1e9628876b3c09997dab087a6de

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4b37839d689accab062677afaa78d5a393cd031c81a4b55097ef9190f83e71e8
MD5 1faec2cf281655fe0609b1a2afa5e8b3
BLAKE2b-256 f6990634d62ce25c4dbe2f2a1e60145a6912f638cc6851047aa9fbd0964b2f5f

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae558c00bf1f2a068616610a5eed0436d0aa38fa1a53d1a9829fe9fb63a989d6
MD5 4066885f8f5b1fa16633a81da8bb44bb
BLAKE2b-256 6493867c9df77b94923384cc49f0b281ecdf73b712917ab3e0dd6e56d0a618d0

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 489b9c22394aa3f2d483a1d55e2b8ce61ca071f14664e6eba51a095ec433859a
MD5 94a2db288a5217025c6670f98aaa9813
BLAKE2b-256 79d46f0d8376bdb920fcf5f66b9e0ad6f87d9b15754bd0be2d118cec0ae178f8

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2569996896e692ecc5430a476e1ad03f77cc2946da260235dc7cf341bde64dca
MD5 01c1783746590c371302d66c31a80ec8
BLAKE2b-256 eaf49b63fe588cbe04ee82328914455aab1f048ae158543f8a7dd665ecc45555

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e760e8eecb1be9ff34f0b345217d44c3a666ef175eadae061cfeb37d00a82a7e
MD5 537f7465a516030d9d9103621a33972d
BLAKE2b-256 114e38d3afe7c397f42fb156c1e564630eff3404a89393146d16611d226f7a29

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: flexbox-0.0.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 140.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for flexbox-0.0.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 27b14e971a50cef2c2a9789b000b587ca5ff9d30465e2e41a0ad9195eac6883f
MD5 5d1ebc88cfd151052b5185d4a0f7221f
BLAKE2b-256 6d117af48dbd593096bc227c6a33d89c91b3e5ec512bc7825365bef002015d11

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: flexbox-0.0.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 118.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for flexbox-0.0.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8094bb27a543777f250a2029689807f0ac357c0ba987bd5e5d3ebe50155494d8
MD5 e3aad50139f7f31a5dc33680fb9e2720
BLAKE2b-256 a426a61b30a40719b3946d3467e664e74ca68e827b43ad52f895eb6f09f8a241

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 101262fc41c301d7ad4e806f479186f3e97e8a77f4cca15090c90591f81b0e83
MD5 4d13f93212e8f3c2de7ae6b269c71594
BLAKE2b-256 f3f93b231e1505696910b2c4a53fbbce0923ba33335eccf6d87144f783c702d4

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 08ffe9f1c56982f7b7400a620da9d113f3574b3436f3e5b4a92b73948d96c8b5
MD5 d3d276b4d3803c181314f9b6ec20b778
BLAKE2b-256 fe82f71ef4191906f7e00cdc47911e0f4967aef8ec069ce0be8fc300bbfa4ef1

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1102a1c27e60d0ad14d4eb7c023c8c9da4e8091189fbb6bc9e959949290140ae
MD5 8f21376b11ae782f5fe3b346fab5b156
BLAKE2b-256 cc3f09e478eb0292ec2db8ecc25f83f07622996453fd34b6e6e03ab8ddb5ef1e

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 32481c57d0998fbd7954a558fbfc92ee693e33ca782fa99760c9c5f4ef4f50e3
MD5 4727041e9aab7658b5d32af588fa68d3
BLAKE2b-256 c771b5171d4003441eeccc5dbd2208f53f06a45fce6ca4e133a088aeb63d4f78

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5e14ee605f160b07aa17c2f50876f1c7892867f1cec04e83ba2aea3a43e91298
MD5 09588460055e09c0fc86d8362194607d
BLAKE2b-256 5ea383235539ddefeceb382d6bcd0c3eab76ae4e7acda1f158d6e0f043e6f802

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e76dc5a8ae8b411f9b8b522db5d0a95d3beee543bccc7684b6828e429b84e5ce
MD5 31d37725267dd41173b4dc9d5008ce8a
BLAKE2b-256 d07772a7fe8222b3fbc563ede9a15dcbfa593685487035a2d35ccae78e8dc3f6

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: flexbox-0.0.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 140.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for flexbox-0.0.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 096a43e30e8f879d98b9f741b53f287f5afcfca5a51200b5e066e7a11ddc9628
MD5 76709d55fcb385fa2bf7270993dc2017
BLAKE2b-256 bab271a69203d17f2f03e1dcb11ad529a79b870ded59039da013cc4f8c828a22

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: flexbox-0.0.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 118.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for flexbox-0.0.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9e7fb56d8ac65da03eff5d2214d87c80392b87c9e2b8eb41f7a5db261bae885a
MD5 0e111d7e4f27b87e42afa87c628aeee6
BLAKE2b-256 d2e71e5c903a1f757bacc14c7025f5b427dcaeccd7fe552f5c872a4cc7296d27

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5a18e32f1c8548a30dbdfc1c72c176b286eb0cb453dc252df861570ea2ee9bfb
MD5 b9c26e00e26dd4bd7ba18641bb688210
BLAKE2b-256 f878f8ffdb884307134c425db09b599984bccce4d195626610031d0a7cf1e472

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 7a8bec796fa482a788a11e1bda3f2a6bd3069354ef7204cfcf8ffced511bd691
MD5 bab4a9c1e2dd78c6c57f407897bc2d38
BLAKE2b-256 ff9813b933da71a31469c65d77df7fc9d574c9a5c5a33fa94046d35240272aac

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4e09bd62ba9640dbd4e8273ffbea671ab7389d23acc83a8db1d2df73fa38314
MD5 979233c0a1ee9261c3388740fbb56c2c
BLAKE2b-256 ec6585bc046dde2a19257687d27553a701fee4982b5e3cef311e906057c1764c

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d5c41c55fe97a8701582c200259360176971190ae5613dc8aa1520251ecbf385
MD5 4e55b4277bbd4569702ea16d92323939
BLAKE2b-256 7946de857930f890277674350dd8272bb65cdf995606fb085f40be5c92f6d667

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d253b36c4b38daf2cc9aa88853fc4c693483d4f42e5c4960102f0b39d2065d9a
MD5 7c62b52163c335ce6adc8a8b62469d4a
BLAKE2b-256 69c8912e2106af397eb4cf510c81d81fa7a31c13c070f3203663ddae3381a5b0

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 166a3760d5a76d3a3de6227936088ce7125d69e9c8dbbc2509a54b830d38ce6d
MD5 575dae79934a7d9a9f7048b91a99b0fd
BLAKE2b-256 3111850f7cd02d2f1be1ef609f9f12f0e2b39ac2c10ec790d9632680f076b08a

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: flexbox-0.0.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 139.8 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for flexbox-0.0.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7be6acaeb9635bf74d7ad65439b82bfe40ba8b04127b423e6c46a6d05ea8ac1a
MD5 565ce9ce469834bde4c32a3f0020104a
BLAKE2b-256 dbe06b80a85407e0e440f7c653f08568dca5d41a4b666e45e0ef61767403cb26

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: flexbox-0.0.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 120.4 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for flexbox-0.0.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 afd2d8c8722ac54a823439b6722536065b856e2d1ef3b76f15075729e3a9a3e2
MD5 f4b3f029aed51886b606068fe61e6df3
BLAKE2b-256 da6db6e38db2d1fc0201c32e63ead76254cc754327338ad739a46563f20cadde

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fafff4575b37d5c7d9722b8279ee5398e988bc93f472bd135dbfc7795ae63072
MD5 945df630cdf38684740531a1d2da74fd
BLAKE2b-256 941669414f90a268ed1c47c1213898c2f503eba73f287333483612374e361605

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 dd4167056accbf9c6d9362b43be5f8a5029a925c81b06547d4280d11ecad0170
MD5 3241ae9be440d966046279ce252bbc0a
BLAKE2b-256 c11d4e0e84abc45557a15926a22e2b0606df635c27064eb0a88dec2050bee74d

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ef6955c198edf898045dc3a695e6977d7d5f72970dc9ef5f8b01afd49ca659e
MD5 4d09b12740b8d7ff6a508674ab1e23b5
BLAKE2b-256 201166025647cd522a70c9f28f707378561798ed91d5d84b0758a40ef865dec1

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a3ba4aeede34675e6769a0417626cc5cd9c479cfb8d1c11dcd093ba59fe394e7
MD5 99d878b9ee535d0948df1e26e1e8951f
BLAKE2b-256 62fd734f783bfb9e455f6d272b3fe08273a4646d549e455280acb235179fedbc

See more details on using hashes here.

File details

Details for the file flexbox-0.0.2-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for flexbox-0.0.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 91fd8266ff270c370c59f2bb1c9d84c957718f3e46b300bdcb51821610acbded
MD5 3e0a219b83cf692372e3cc516a78e90a
BLAKE2b-256 3d10789e088897e76a5b7a4003138705422ce2c51c82068a20245a1163285140

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