Skip to main content

Universal library for network node layout and edge routing.

Project description

builds.sr.ht status Github Actions ReadTheDocs status PyPI pyversions PyPI wheels Coverage

ilayoutx

Compute fast network layouts. Intended as the upstream companion for iplotx.

NOTE: This software is alpha quality. The API is very much in flux, and the documentation is sparse. Use at your own risk.

Installation

pip install ilayoutx

To include support for fast arithmetic, parallelisation, and visualisation:

pip install ilayoutx[all]

Resources

Quickstart

import networkx as nx
import ilayoutx as ilx

G = nx.circulant_graph(4, [1])
layout = ilx.layouts.multidimensional_scaling(G)

Features

Layouts

  • Shapes:

    • line
    • circle (supports vertex sizes)
    • shell
    • spiral
  • Grid or lattice:

    • square
    • triangular
  • Force-directed:

    • spring (Fruchterman-Reingold)
    • ARF
    • Forceatlas2
    • Kamada-Kawai
    • GEM (graph embedder)
    • Geometric (from netgraph)
    • LGL (from igraph)
  • Directed acyclic graphs (DAGs):

    • Sugiyama including edge routing (only for directed graphs ATM).
  • Machine learning:

    • UMAP (supports arbitrary graphs, not just knn graphs)
  • Other:

    • bipartite
    • multipartite
    • random (supports vertex sizes)
    • multidimensional scaling (MDS)

Packings

Edge routing

ilayoutx includes routines to route edges in a visually pleasing way. This is generally tricky not only because aesthetics are subjective, but also because the task is somewhat dependent on the level of zoom of the downstream visualisation (intuitively, when zoomed out, things tend to look more crowded). Edge routing can be used in iplotx via the waypoints keyword argument of the network function.

The following edge routing algorithms are implemented:

  • Sugiyama edge routing for DAGs.

Wishlist

  • Tree-like:
    • Reingold-Tilford

Rationale

The layout code is in Rust and exposed to Python via the amazing PyO3, with the goal to combine speed (by the machine) with comfort (for the user).

I'm a rust beginner, please be kind when judging this codebase. Feel free to open an issue on SourceHut if you have questions.

Authors

Fabio Zanini (https://fabilab.org)

Download files

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

Source Distribution

ilayoutx-0.3.0.tar.gz (82.9 kB view details)

Uploaded Source

Built Distributions

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

ilayoutx-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (568.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

ilayoutx-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (541.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

ilayoutx-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (369.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

ilayoutx-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (563.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

ilayoutx-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl (535.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

ilayoutx-0.3.0-cp314-cp314-win_amd64.whl (216.2 kB view details)

Uploaded CPython 3.14Windows x86-64

ilayoutx-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (563.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

ilayoutx-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl (536.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

ilayoutx-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (365.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

ilayoutx-0.3.0-cp314-cp314-macosx_11_0_arm64.whl (324.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ilayoutx-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl (329.4 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

ilayoutx-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl (562.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

ilayoutx-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl (535.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

ilayoutx-0.3.0-cp313-cp313-win_amd64.whl (216.2 kB view details)

Uploaded CPython 3.13Windows x86-64

ilayoutx-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (563.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

ilayoutx-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (536.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

ilayoutx-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (365.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

ilayoutx-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (324.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ilayoutx-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl (329.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

ilayoutx-0.3.0-cp312-cp312-win_amd64.whl (216.5 kB view details)

Uploaded CPython 3.12Windows x86-64

ilayoutx-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (563.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

ilayoutx-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (536.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

ilayoutx-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (365.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

ilayoutx-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (325.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ilayoutx-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl (329.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

ilayoutx-0.3.0-cp311-cp311-win_amd64.whl (217.9 kB view details)

Uploaded CPython 3.11Windows x86-64

ilayoutx-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (566.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

ilayoutx-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (539.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

ilayoutx-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (368.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

ilayoutx-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (328.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ilayoutx-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl (332.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

Details for the file ilayoutx-0.3.0.tar.gz.

File metadata

  • Download URL: ilayoutx-0.3.0.tar.gz
  • Upload date:
  • Size: 82.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for ilayoutx-0.3.0.tar.gz
Algorithm Hash digest
SHA256 aa9dfcf2d7704eeb2f15bcbf63132e9a30a1c00de232d0c3e5876d41ec23e231
MD5 5e10ebef877c05f0c6c51decb2a39731
BLAKE2b-256 e86c55300d9f0ca870fe4dd75f1f218eb72b33a9c062ca5257b6d82cf44e37ed

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ilayoutx-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 370e5fc346fde1c0f94e122378865917fdbe694767f15e9dcd0966a455c864d5
MD5 c18ee72652faa379a06859b7d01ff84c
BLAKE2b-256 592703d84624c0491f5373cb2865fac496faace2f05c45d8c8821c2e0e4c2128

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ilayoutx-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b49c56039fb2518286e7edd3fccab85c8a2eb4ca9632883d82bb9adb88aaea3b
MD5 af148b418d0f61debf4bee13c1499052
BLAKE2b-256 2e2103df95530e80db0895bd63815d12ab8c03e99b45e349643d4dcc8e2c3cda

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ilayoutx-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5e9cd386d41600be2c01d361cf0db42d484817e05ab6d07a9fc7d1807f75517
MD5 a78b8767ad658fad9b14be486e47f963
BLAKE2b-256 13ff48f8262501acab7ae44eeac031b9f7dfb0f73874ab7c505fd830ee22a687

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ilayoutx-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d7f0cadfefa0d7c3a72d57f49eb0078b67e23d0faf8e211b342c6f5cee8071f
MD5 266cba6e72aafb94f79cff52aeeef55c
BLAKE2b-256 310435f7cce0d6c81eb34eaad4caf36b52a2437da253fb4a855ea4e9e5060ae9

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ilayoutx-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 64606939df2e573602d34c1266e0ab2b0b5ef808f89ea611111bc42a769ccde9
MD5 9400d8a29b54f28140fbead489eb281a
BLAKE2b-256 79d28df0b3b40f507da186eb71316f226217f0f67d8d7a4b94b655d9856db0f2

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: ilayoutx-0.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 216.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for ilayoutx-0.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a26075707e0d412fbeb63d812481ec028ab18896b1531de658a75c1feb73660c
MD5 4462263acd89936bb80e8c7400d0bb0a
BLAKE2b-256 6ef206bd16e4fe0a58118cf6801867bc9af7cd13e15349d2663e91699a5e672a

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ilayoutx-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f0b57119eacf6e980beb99e9770c5ab19fc6b85e3a5050064a4c362aec8a7321
MD5 db468d45e1d08a2e07228f9a02468e64
BLAKE2b-256 0533f1717601aa908f06821d376207b78698b11d4c4e8bfd70667c9516ff0298

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ilayoutx-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 19b8ccd6fe0feb3c2f1e0e2412afc3d89c6a19639295bd1cded5881c5adec05b
MD5 f8e3383a900bee8d50316388a0729364
BLAKE2b-256 14b8c2d7876837dd2caa913eaeb72cbbc1acdc3ee890c87a3b456fbf4c6408f7

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ilayoutx-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce9e3ec92712f5bb522ac61477a58ce37ca7fe4fc03ada4946797feb6bde80d3
MD5 f0d0a5deafc104a5bff5e482d4c1c78c
BLAKE2b-256 e075d85975d51eeba7226f0d6125dfba89e44aad884203632265150f46936292

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ilayoutx-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 532335fd7fca591f111684f9bd7f5c4458968dc01918e0ef2fd6ab21b76ded15
MD5 ca554e8697c7280d4178165f129f53f7
BLAKE2b-256 acbd614111e5cec09a4adc5a3d2160817a2dd64757e94a0fa479b2ca3966041e

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ilayoutx-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 08f47d94b14638efe0848bd07ef87299827e415c069591b6aa9674beb45ec4c0
MD5 540610238ff4508f686319b916bfaa14
BLAKE2b-256 47d9c6f0b00e5b6022868bf783cf8f7c9d457cd416fee96ae1594896e0e9355c

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ilayoutx-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1aa3c2e1fd48c3f36f765dbbffc89f5d046af2780f82cda62b5d1ea56f14f199
MD5 ea1a4eb412f1061558c39c2be89b1269
BLAKE2b-256 65abc49edea82778c45fc667f450e4ee4b44750adfd724895aeff7afeb0ff11c

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ilayoutx-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 328e572e1308dccebba0d3fc9d40779adf6919d114be2319b006270697e48f20
MD5 0e79f2d3cc692f9a50eba4c36f4b975d
BLAKE2b-256 e74b81ae55336c24d5206079ddaa00974d4cab6266d1903c85172fac68eff2aa

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: ilayoutx-0.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 216.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for ilayoutx-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 70aed47a9000801e2b51117ba7ef28200025cec2b00369f0e32fa27f341197cf
MD5 0e03a7890256a1abdf8ed6aa9edb77b8
BLAKE2b-256 fe864f05a328614c8c066bdc4beb6ed0d8303a9ab605b7fbaa8b3a961023f0d5

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ilayoutx-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd234a806a6998a62361ba2ddfab74fcfb56b8be7e0a8f8f62d67c7fdf68f706
MD5 5d1440c96f90ab758ce879aa97e40aa0
BLAKE2b-256 022bd0c24435b7366789824bbd58d589aa834711f0ac877d50b8ac3224de5075

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ilayoutx-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2285d3bd0457d6be2ba591b4a9f3d45079322b70f4923dea5a33df76c5a2491b
MD5 20bdcfa4b05227671340e6cbc01db9b2
BLAKE2b-256 3988fe70c3b184379a308742884bcccf016665df40f51d466366d173b41b2252

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ilayoutx-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9807cdc762254d28127e29e162db5f143344722d0fbfbb189455b5dece427c91
MD5 4b136e43898196bc00e225c0c1e37110
BLAKE2b-256 ffbc1c661f629623ed14611e848e8a8b8e12b0a65a68319133b7c99210984808

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ilayoutx-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41b6cac9e8803c210862395da79b1160cb00e9401a919066cc3619f83aa35ec9
MD5 f3de2d11d759cde255e32966d93824be
BLAKE2b-256 199b5eb25d439cc6e1cbe2ffc39b9b99c44837d0ea96f641191bef07325e313a

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ilayoutx-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5eed8b155cf6170f11a7bfb0cfa31a3e1db0adf63aa2a260dc527ccb3199dfd8
MD5 09789693fe3e47f11fc774c61192daa1
BLAKE2b-256 44281f4e6437f28031fc8db17eb4a0952b1c25956b25e6fbf83ec6f7110b8bc9

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: ilayoutx-0.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 216.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for ilayoutx-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 502fb8969460ee3fbcf14a27c812d1267516e8c9a7901b4782395c321bb9fa27
MD5 098d004985f5951d8bcb468b48e5c19e
BLAKE2b-256 4cdb692a6b0c119dd95c40b75669322207318ffd617bfdfdff2b0941f517e27b

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ilayoutx-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8acd2414f38836ca919987e9a6b1626b444ff1e8fff154cb60ea7a3b8c04ba8
MD5 b0772463632e10d14ca7767a1dd5e55a
BLAKE2b-256 d8991ce63b86d6b1105baaaceea61e9f8a50b0a0224391fde6554d30e7ebec24

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ilayoutx-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a09d54fb066015fd19c1e99b8b9fbbaa32eea08dd2421ef7fec246642371fba1
MD5 0baca4288a06658888966b41e1d94d5a
BLAKE2b-256 f05e3741ab69225e13277695c1548e82143dfba09a6e6bd40c63731425c39381

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ilayoutx-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 056e6eb3bda1480d972232170ad3b650dc75f64b30bf6bd953ed12e4433888cd
MD5 137dbd923520895c30f407a7ed813bd8
BLAKE2b-256 00a3f1989d33cf7fdcb25e7d21d53a5efe1528992a9b781c6d8e6226e612756c

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ilayoutx-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 37af88293d0c13d4de5d4d04d037adbd5c54e5ec3fe6afd05ebfbe67e6b3bd6d
MD5 621025ebf2745308947b75e164416181
BLAKE2b-256 195309597fabe8c8256eaa352eab7d6ac5f6da7e0d322a1e0b1e2d91ab3dda39

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ilayoutx-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 866ed2ee1ea4223f18cd1976e67d431b858f019e53b104e53de02766c29df65d
MD5 c03db0f566866d924393a978dd0ec99b
BLAKE2b-256 5140e52c45212264eea302255fdb5d9e3f43326f669a95a42e3678e2c32e62d7

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: ilayoutx-0.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 217.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for ilayoutx-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 40beb64ac7098905659df1d67ae9ac6ab54830b9c548479c5e5fbbf2582e7504
MD5 ca72c8329f041b6885a78922775d06f5
BLAKE2b-256 957b1ecb7c44451dfc8539369c8c46075fa2bcfed679618aafae34a59df4994c

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ilayoutx-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aef18ed0e2c040ee794b49eef117b46eac8deed24316cd34772d82ccec28deae
MD5 a7080129d593e1da99be53b2f400afcb
BLAKE2b-256 f6fd51c0a50e353420d6c03ba164a901966dff36a5f390bcc1fe31dfb2238e87

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ilayoutx-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 337aafabc1aaf64099a4d15a2a046ef934a93d05dc2bd3de7e6f8a535218e657
MD5 2de31da54251104da09b6f63bdaa3481
BLAKE2b-256 cdbe0355c8f0cfe42e8f8e8acb636580083d2013a7274563487da32404dc3741

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ilayoutx-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6884ddf0b18e923063a02474e94eeb8f96a34d38024d631e699947455147b529
MD5 c5366295bc65cbcfcdaf7822d6d1ddb5
BLAKE2b-256 89a33d400ddf5467525b466a3ed706d1360024ce424a8a16145d364a88991f85

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ilayoutx-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fee41c6e488e30a2505f0260bfeabe6bb3f4fce92b47c25f081c9e979710775d
MD5 9d5107d57e7b1096bc0cad6ca0fccbf9
BLAKE2b-256 aeee4b8178f019e9243bdf4336af0b0fafc220bea66b3dfc06ef8d4206ce7f26

See more details on using hashes here.

File details

Details for the file ilayoutx-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ilayoutx-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8a4988018a116c8765e618294b0fad1d0094c993ce6420c482df4d874d006c45
MD5 39acfd977f61f23bd0dc50c37760570c
BLAKE2b-256 57a3e19af494ee874d5311f80221946c1461342401f53f2645a5dd4cd454f031

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