Skip to main content

Python implementation of the Fast Linear Assigment Sorting Algorithm

Project description

Fast Linear Assignment Sorting - FLAS

main_pic

FLAS allows to sort 2d grids based on similarity. This directory contains the python implementation and shows how to use it.

Features

  • Implementation of FLAS and DPQ (and other metrics to quantify an arrangement)
  • Allows frozen fields
  • Allows empty fields (holes)
  • Deterministic random when seeded
  • Installable via PyPI
  • Easy to use python interface with numpy support
  • Fast implementation in C++

Installation

pip install vc_flas

Install from sources

git clone https://github.com/Visual-Computing/LAS_FLAS.git
cd LAS_FLAS/c_python
pip install .  # or
pip install -e .  # for develop/editable mode

Usage

Basic Usage

Given that you have N features with D-dimensions, you can sort these features based on similarity with the following code:

import numpy as np
from vc_flas import Grid, flas

N, D = 241, 3
features = np.random.random((N, D))
grid = Grid.from_features(features)

arrangement = flas(grid, wrap=True, radius_decay=0.99)

sorted_features = arrangement.get_sorted_features()
height, width, dim = sorted_features.shape
assert (height, width, dim) == (16, 16, 3)

# show_image(sorted_features)

Working with Arrangements and Labels

Often you need not only the features sorted, but other objects (like images for example) as well. See this example for more information on that.

Creating Grids

There are more ways to initialize grids. See here for some examples.

Metrics

Once you have sorted your features, there are some methods to evaluate the quality of the arrangements.

arrangement = flas(grid)

print(arrangement.get_distance_preservation_quality())
print(arrangement.get_mean_neighbor_distance())
print(arrangement.get_distance_ratio_to_optimum())

About

Kai Barthel, Nico Hezel, Klaus Jung, Bruno Schilling and Konstantin Schall

HTW Berlin, Visual Computing Group, Germany

Visual Computing Group

This is an example implementation of the algorithms from the paper

Improved Evaluation and Generation of Grid Layouts using Distance Preservation Quality and Linear Assignment Sorting

Published in COMPUTER GRAPHICS Forum: (https://onlinelibrary.wiley.com/doi/full/10.1111/cgf.14718)

Reference

Reference to cite when you use any of the presented algorithms in a research paper:

@article{https://doi.org/10.1111/cgf.14718,
    author = {Barthel, K. U. and Hezel, N. and Jung, K. and Schall, K.},
    title = {Improved Evaluation and Generation Of Grid Layouts Using Distance Preservation Quality and Linear Assignment Sorting},
    journal = {Computer Graphics Forum},
    volume = {42},
    number = {1},
    pages = {261-276},
    keywords = {interaction, user studies, visualization, information visualization, high dimensional sorting, assistive interfaces},
    doi = {https://doi.org/10.1111/cgf.14718},
    url = {https://onlinelibrary.wiley.com/doi/abs/10.1111/cgf.14718},
    year = {2023}
}

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

vc_flas-0.1.7.tar.gz (27.1 kB view details)

Uploaded Source

Built Distributions

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

vc_flas-0.1.7-cp312-cp312-win_amd64.whl (105.0 kB view details)

Uploaded CPython 3.12Windows x86-64

vc_flas-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

vc_flas-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (125.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

vc_flas-0.1.7-cp312-cp312-macosx_11_0_arm64.whl (90.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

vc_flas-0.1.7-cp312-cp312-macosx_10_15_x86_64.whl (100.4 kB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

vc_flas-0.1.7-cp311-cp311-win_amd64.whl (104.5 kB view details)

Uploaded CPython 3.11Windows x86-64

vc_flas-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

vc_flas-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (126.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

vc_flas-0.1.7-cp311-cp311-macosx_11_0_arm64.whl (91.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

vc_flas-0.1.7-cp311-cp311-macosx_10_15_x86_64.whl (101.4 kB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

vc_flas-0.1.7-cp310-cp310-win_amd64.whl (103.5 kB view details)

Uploaded CPython 3.10Windows x86-64

vc_flas-0.1.7-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

vc_flas-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (125.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

vc_flas-0.1.7-cp310-cp310-macosx_11_0_arm64.whl (90.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

vc_flas-0.1.7-cp310-cp310-macosx_10_15_x86_64.whl (99.9 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

vc_flas-0.1.7-cp39-cp39-win_amd64.whl (103.1 kB view details)

Uploaded CPython 3.9Windows x86-64

vc_flas-0.1.7-cp39-cp39-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

vc_flas-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (125.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

vc_flas-0.1.7-cp39-cp39-macosx_11_0_arm64.whl (90.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

vc_flas-0.1.7-cp39-cp39-macosx_10_15_x86_64.whl (100.0 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

vc_flas-0.1.7-cp38-cp38-win_amd64.whl (103.6 kB view details)

Uploaded CPython 3.8Windows x86-64

vc_flas-0.1.7-cp38-cp38-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

vc_flas-0.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (124.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

vc_flas-0.1.7-cp38-cp38-macosx_11_0_arm64.whl (90.2 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

vc_flas-0.1.7-cp38-cp38-macosx_10_15_x86_64.whl (99.8 kB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

vc_flas-0.1.7-cp37-cp37m-win_amd64.whl (104.1 kB view details)

Uploaded CPython 3.7mWindows x86-64

vc_flas-0.1.7-cp37-cp37m-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

vc_flas-0.1.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (126.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

vc_flas-0.1.7-cp37-cp37m-macosx_10_15_x86_64.whl (99.9 kB view details)

Uploaded CPython 3.7mmacOS 10.15+ x86-64

File details

Details for the file vc_flas-0.1.7.tar.gz.

File metadata

  • Download URL: vc_flas-0.1.7.tar.gz
  • Upload date:
  • Size: 27.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for vc_flas-0.1.7.tar.gz
Algorithm Hash digest
SHA256 07ec06eb988dc4dff811b279024b173afe530c2da7c949f43bafac43e9a63f18
MD5 02ecf26f58162f7b15153f4c1158f048
BLAKE2b-256 e447e303055783a82b5f02624240b80d82e898458df14861217d55aaa01c3e64

See more details on using hashes here.

Provenance

The following attestation bundles were made for vc_flas-0.1.7.tar.gz:

Publisher: BuildAndPublish.yml on Visual-Computing/LAS_FLAS

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

File details

Details for the file vc_flas-0.1.7-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: vc_flas-0.1.7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 105.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for vc_flas-0.1.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7d690dd7297683d9c2ce0058f9018354e8efbd3ef6c5604cd21b14794b217c85
MD5 d55c7f2b34709203d1115569e4b53bcf
BLAKE2b-256 99b38783c12b54280b2f1375387ddf5fd910e1e3b9f4fa868a93e9a9f1d3b1a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for vc_flas-0.1.7-cp312-cp312-win_amd64.whl:

Publisher: BuildAndPublish.yml on Visual-Computing/LAS_FLAS

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

File details

Details for the file vc_flas-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for vc_flas-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a514ca7c193c30d07bd6c0a0d99f5efcbf8faca6d22586a70d23ad5d53521fc8
MD5 47fbb8bab86dd88abc31acc20419cd09
BLAKE2b-256 62d2e2abb381be6197b5d164f154bef9a98221a83448595e7b8ef78b89e0387b

See more details on using hashes here.

Provenance

The following attestation bundles were made for vc_flas-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: BuildAndPublish.yml on Visual-Computing/LAS_FLAS

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

File details

Details for the file vc_flas-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vc_flas-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c837fc06c4d9c51c8e52be964c0116bf644441bda4a1743a3d099c7d0d046aae
MD5 fa585bc0cc3ffaaa774e5c858564cf0a
BLAKE2b-256 c6e7c42936a78e8dae1f7b5c3ebc6a86b4fb87aaeb3b1cfac72f2d19c462a9c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for vc_flas-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: BuildAndPublish.yml on Visual-Computing/LAS_FLAS

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

File details

Details for the file vc_flas-0.1.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for vc_flas-0.1.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d7bb910711297b8dbd9ea99834af33c77eb01d55be5ec029115adb308853a8a
MD5 8e56e69abeef4178f9878d27e0f769f0
BLAKE2b-256 859446e8194aa35a4cf54ec4c2a7245f811c027c3d531b98e8e84b57d73484a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for vc_flas-0.1.7-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: BuildAndPublish.yml on Visual-Computing/LAS_FLAS

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

File details

Details for the file vc_flas-0.1.7-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for vc_flas-0.1.7-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5894209b6d09f174fb1b09ec8e029295e388819d4aa9f3c267a68bb04119f1bf
MD5 f5105b0532f44448950bd8048af033d7
BLAKE2b-256 06f1c37392acf2e1dbaf41507fb3961214839649268440b2a93c16cc714bf22b

See more details on using hashes here.

Provenance

The following attestation bundles were made for vc_flas-0.1.7-cp312-cp312-macosx_10_15_x86_64.whl:

Publisher: BuildAndPublish.yml on Visual-Computing/LAS_FLAS

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

File details

Details for the file vc_flas-0.1.7-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: vc_flas-0.1.7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 104.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for vc_flas-0.1.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ea58ffd6996081992c7b1942b179eb92e25c8963e50f3c701992942e74f1421d
MD5 cda2d945007de5874378839a1527310b
BLAKE2b-256 d3183e968b06df067652476adafefda0400d4a2dfeba745646078e2fa95cec8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for vc_flas-0.1.7-cp311-cp311-win_amd64.whl:

Publisher: BuildAndPublish.yml on Visual-Computing/LAS_FLAS

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

File details

Details for the file vc_flas-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for vc_flas-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e56270c600ff71e3e86c17c36eb2f7e03164736de368fa27cb6aadad3537fa4a
MD5 96a9de38a980b1ca24fffda7c599b1d2
BLAKE2b-256 b2328b0a79ab46197b6d2b7ce784f6675de123a1dd7df27ee1325c6d6fd7f51c

See more details on using hashes here.

Provenance

The following attestation bundles were made for vc_flas-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: BuildAndPublish.yml on Visual-Computing/LAS_FLAS

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

File details

Details for the file vc_flas-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vc_flas-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6d0ed8bedcb8288bb991bcd372689aebb7a651ac71cda0753eb0910211d98be
MD5 294b520ecdfa62e875699875c08544b9
BLAKE2b-256 e98233804a758a368927cf6cb5310d4ea622681a911ed7d25a229f9ad5352fa0

See more details on using hashes here.

Provenance

The following attestation bundles were made for vc_flas-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: BuildAndPublish.yml on Visual-Computing/LAS_FLAS

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

File details

Details for the file vc_flas-0.1.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for vc_flas-0.1.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4336afa4072b68a78bec4eda3868e653fa340dc93178ebd5fe4210268d0b655b
MD5 d95063e2d1b6893a5bf86d60525f22c7
BLAKE2b-256 0ef6ee1825bf13829d4cddc001ff7dd69656000063c8f2be3102cf66e101ca12

See more details on using hashes here.

Provenance

The following attestation bundles were made for vc_flas-0.1.7-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: BuildAndPublish.yml on Visual-Computing/LAS_FLAS

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

File details

Details for the file vc_flas-0.1.7-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for vc_flas-0.1.7-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8a9bbc33184b6072c064235588ab3aea4a082b90737251345e059f3f288e39fd
MD5 f8e1c53ece3fb5dbb2cca21ad8174f67
BLAKE2b-256 6b6df1ddb15d50a7d04c96ea1c34fd38d121e9ae84c2be208771d479a2d19698

See more details on using hashes here.

Provenance

The following attestation bundles were made for vc_flas-0.1.7-cp311-cp311-macosx_10_15_x86_64.whl:

Publisher: BuildAndPublish.yml on Visual-Computing/LAS_FLAS

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

File details

Details for the file vc_flas-0.1.7-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: vc_flas-0.1.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 103.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for vc_flas-0.1.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 402957e52dd150f5dff553c98fd80bc30616ddbb810c9c920e1a5fcb45fb7703
MD5 d4d45597b3a9195202fcf51f0a52d6d4
BLAKE2b-256 02aea9d34e0b9f6efef2f5ba95feca62e0baa0e641aa78fa0b4fb3b90d837ec8

See more details on using hashes here.

Provenance

The following attestation bundles were made for vc_flas-0.1.7-cp310-cp310-win_amd64.whl:

Publisher: BuildAndPublish.yml on Visual-Computing/LAS_FLAS

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

File details

Details for the file vc_flas-0.1.7-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for vc_flas-0.1.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68099ed133d2d14056f9157a2daea64c36ef8b3ccaeaa9f7a7344cbb1511c588
MD5 6da6a88f5453b49eaa752360321299f1
BLAKE2b-256 3068ef16fd54fa6f92b216db9d9f6d2e4e5fed6724b234fb473cd8e9accb0aae

See more details on using hashes here.

Provenance

The following attestation bundles were made for vc_flas-0.1.7-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: BuildAndPublish.yml on Visual-Computing/LAS_FLAS

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

File details

Details for the file vc_flas-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vc_flas-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a1692e67df8f0fed03891b13e043966c40ca1d256959131f2ae066b561273a9
MD5 1ed3e403ab39cce73fee80621c78c356
BLAKE2b-256 b2821dbd804f7f62dad2122d1760bd5448b43b6a43a39cf0fc24ca06ddfbc1f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for vc_flas-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: BuildAndPublish.yml on Visual-Computing/LAS_FLAS

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

File details

Details for the file vc_flas-0.1.7-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for vc_flas-0.1.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 311c3a7301b06528afc62f18c006c3d55e6617cbee92eea5c798ff4e47662510
MD5 5428f166e87adc44885b3b8dc98374a3
BLAKE2b-256 c3eb955943290ff86f0abf8f83cda4672d3031ca2e1a6085b3f963db5a549d86

See more details on using hashes here.

Provenance

The following attestation bundles were made for vc_flas-0.1.7-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: BuildAndPublish.yml on Visual-Computing/LAS_FLAS

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

File details

Details for the file vc_flas-0.1.7-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for vc_flas-0.1.7-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 58f3a528aede7cbf5a90581b2176e011be952050d72c74f48d1a721e68f677ad
MD5 64413ab6b6fc7fabfcffc5a57472a4a1
BLAKE2b-256 87912d09c3b7b633facbb64d9d7e1f7d788fa85667d9fc62d4de948a6eb07df1

See more details on using hashes here.

Provenance

The following attestation bundles were made for vc_flas-0.1.7-cp310-cp310-macosx_10_15_x86_64.whl:

Publisher: BuildAndPublish.yml on Visual-Computing/LAS_FLAS

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

File details

Details for the file vc_flas-0.1.7-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: vc_flas-0.1.7-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 103.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for vc_flas-0.1.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b8c2b6389a770a1866f5a73c5ff351dd045c47a43fac0d4ad76e4480bc3a55af
MD5 ac09a4f807f15d5cbbea5662ba1e0cfd
BLAKE2b-256 51640535c9619f953b1cc256880afc0ebb645c1b2553b36d307d27d331b2965f

See more details on using hashes here.

Provenance

The following attestation bundles were made for vc_flas-0.1.7-cp39-cp39-win_amd64.whl:

Publisher: BuildAndPublish.yml on Visual-Computing/LAS_FLAS

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

File details

Details for the file vc_flas-0.1.7-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for vc_flas-0.1.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd0b99d4e201107077765217f816a7dce574b733cd01d50a8a6b657c49830a5f
MD5 d3107f4f8121f3fb2017047080ea5910
BLAKE2b-256 4a44c71e9bf1073c23c352ae86d39d2175046cc11559eecf4039a6c419985158

See more details on using hashes here.

Provenance

The following attestation bundles were made for vc_flas-0.1.7-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: BuildAndPublish.yml on Visual-Computing/LAS_FLAS

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

File details

Details for the file vc_flas-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vc_flas-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ede68024474fe016d5fa23e44667ddf1d723e9646ab96ad2370a759b078e50cf
MD5 ed1d5c832328f16647a90cba1a517c6c
BLAKE2b-256 b8abce9b27a6f5d4916efbcae2149265e8e3f643552b9291da732c067034ac66

See more details on using hashes here.

Provenance

The following attestation bundles were made for vc_flas-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: BuildAndPublish.yml on Visual-Computing/LAS_FLAS

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

File details

Details for the file vc_flas-0.1.7-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for vc_flas-0.1.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50def0eee1bb61f224bd753688eef8efdd02a315e344c309cab0363f2173ad05
MD5 c6a3e3f8a85bf0b6c22132331bf242f1
BLAKE2b-256 60d416e40d55442b44f2334e097af42056d5bd260342638ec2ed606da3fe7d89

See more details on using hashes here.

Provenance

The following attestation bundles were made for vc_flas-0.1.7-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: BuildAndPublish.yml on Visual-Computing/LAS_FLAS

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

File details

Details for the file vc_flas-0.1.7-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for vc_flas-0.1.7-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 01e138184f9c23ad732f1a05a5e5979036e95827bff734d5fbe8952cda615fa7
MD5 ff97c6a75dfc6f5ef28893cb1cc16309
BLAKE2b-256 53ed55922f0525828eddae82165dcd4f7eab2bb844e2a48c71f88922878b2918

See more details on using hashes here.

Provenance

The following attestation bundles were made for vc_flas-0.1.7-cp39-cp39-macosx_10_15_x86_64.whl:

Publisher: BuildAndPublish.yml on Visual-Computing/LAS_FLAS

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

File details

Details for the file vc_flas-0.1.7-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: vc_flas-0.1.7-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 103.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for vc_flas-0.1.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 75b4ec456bac0190b63a87d6f54fe6cfd990d733ce9ebf7eeb4135513e7fb010
MD5 cdb31aecf3ec432b9dd059d63a2c6326
BLAKE2b-256 825e0eb30a809e582170794f6056a1d793df89b07ebde0e5a358fc3a7449a7f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for vc_flas-0.1.7-cp38-cp38-win_amd64.whl:

Publisher: BuildAndPublish.yml on Visual-Computing/LAS_FLAS

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

File details

Details for the file vc_flas-0.1.7-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for vc_flas-0.1.7-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e26d9bee9a7eeba3e0334a552360214e65c61fc4a2cd608f612b515f75054cf2
MD5 147b0705e70aee8cf42d3ec1e3ec98d0
BLAKE2b-256 f84274d94bda1a924e995a0aebca6347e21a71737cc08a662f493a3960ffc737

See more details on using hashes here.

Provenance

The following attestation bundles were made for vc_flas-0.1.7-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: BuildAndPublish.yml on Visual-Computing/LAS_FLAS

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

File details

Details for the file vc_flas-0.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vc_flas-0.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 112949853ba61ff07135ac48bb30751fca0ea2b0dce547db4f6e1e8c79d60c86
MD5 fd12abbcf8a3753060693967eed05937
BLAKE2b-256 5b5d5c456471261e5379c5cfed45abf819916cb67494791eb875d7971e7decb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for vc_flas-0.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: BuildAndPublish.yml on Visual-Computing/LAS_FLAS

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

File details

Details for the file vc_flas-0.1.7-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for vc_flas-0.1.7-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d2f3494c3182054ef7872aae867059705feb64b30e0e860dea3ead55ba7bcb2
MD5 00c06af46fee224ebed51608f1572b51
BLAKE2b-256 f020e0c3c36ecb94c8e7073f4d46b8723e213743ea533591f7179c598391ce8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for vc_flas-0.1.7-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: BuildAndPublish.yml on Visual-Computing/LAS_FLAS

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

File details

Details for the file vc_flas-0.1.7-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for vc_flas-0.1.7-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a46506cef1e204232d48819d7b50fba0ea197bdbe8bc0fe040291878d2984469
MD5 6a2f5494ba458ab409620e7c03909384
BLAKE2b-256 6c72a9702b0c6b15be2f7cfe5a590f1010d59df74bf4cd42c643fd54d4e5bebe

See more details on using hashes here.

Provenance

The following attestation bundles were made for vc_flas-0.1.7-cp38-cp38-macosx_10_15_x86_64.whl:

Publisher: BuildAndPublish.yml on Visual-Computing/LAS_FLAS

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

File details

Details for the file vc_flas-0.1.7-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: vc_flas-0.1.7-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 104.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for vc_flas-0.1.7-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4e6907a0615256705e720a97e2164e68d8b85633650237f6e3e8af92119557e6
MD5 c3ed4153fab424a6c5f0aa55db7ea1db
BLAKE2b-256 d12429d25cd3afb20a668274287a0e47916d10c507be8b0a0dc7595265addc15

See more details on using hashes here.

Provenance

The following attestation bundles were made for vc_flas-0.1.7-cp37-cp37m-win_amd64.whl:

Publisher: BuildAndPublish.yml on Visual-Computing/LAS_FLAS

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

File details

Details for the file vc_flas-0.1.7-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for vc_flas-0.1.7-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1371e2d641b608bb5318fb0f62a91e2e8bbb9dc47ea0dea31630b4791901ed1
MD5 60cbd92b57b20d0e23a1d2593ed0b011
BLAKE2b-256 73e9fa5e52f5cbf3149472d7c0e6315bc8bb3c0cfb2b9f6a96ad6ca34f9b0ec5

See more details on using hashes here.

Provenance

The following attestation bundles were made for vc_flas-0.1.7-cp37-cp37m-musllinux_1_2_x86_64.whl:

Publisher: BuildAndPublish.yml on Visual-Computing/LAS_FLAS

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

File details

Details for the file vc_flas-0.1.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vc_flas-0.1.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 882c566a0d243effcd735e571ec73e28b17df52fad085763041a39d2867f3ce1
MD5 4ae782ce7b97837ea53841d62815b4aa
BLAKE2b-256 53c2751878c8cd34ed4202d4bd6be72a8d514c1a395613b41b469b2243bf7913

See more details on using hashes here.

Provenance

The following attestation bundles were made for vc_flas-0.1.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: BuildAndPublish.yml on Visual-Computing/LAS_FLAS

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

File details

Details for the file vc_flas-0.1.7-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for vc_flas-0.1.7-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3ffc09d510157e1e3702243c26f8f49cdafd7f776ab4f75d13a1ec8704197d82
MD5 d3b1ea186c254541f25d8c93acba6834
BLAKE2b-256 560212c8b819a3d3b98c03450c30563d1d3bc870254b3630cc856f3ca2d49e25

See more details on using hashes here.

Provenance

The following attestation bundles were made for vc_flas-0.1.7-cp37-cp37m-macosx_10_15_x86_64.whl:

Publisher: BuildAndPublish.yml on Visual-Computing/LAS_FLAS

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