Skip to main content

Python API for efficient storage and retrieval of single-cell data using TileDB

Project description

Overview

This is a Python implementation of the SOMA API specification for interacting with the Unified Single-cell Data Model.

Installation

TileDB-SOMA is available on PyPI and Conda, and can be installed via pip or mamba as indicated below.

python -m pip install tiledbsoma
mamba install -c conda-forge -c tiledb tiledbsoma-py

To install a specific version:

$ python -m pip install git+https://github.com/single-cell-data/TileDB-SOMA.git@0.0.6#subdirectory=apis/python

To update to the latest version:

$ python -m pip install --upgrade tiledbsoma

In case of illegal instruction errors when running on older architectures --- e.g. Opteron, non-AVX2 --- the issue is that the pre-compiled binaries available at Conda or PyPI aren't targeted for all processor variants over time. You can install from source, as shown below.

To see if this is the issue, on Linux:

grep avx2 /proc/cpuinfo

If this comes up empty for your system, you'll definitely need to build from source to run TileDB-SOMA on that system.

From source

  • Clone this repo
  • cd into your checkout and then cd apis/python
  • python -m pip install .
  • Or, if you wish to modify the code and run it, python -m pip install -v -e .
  • If the TileDB and TileDB-SOMA libraries are locally installed to a custom directory, such as /usr/local, set the path with environment variables TILEDB_PATH and TILEDBSOMA_PATH, TILEDB_PATH=/usr/local python -m pip install -v -e .
  • Optionally, if you prefer, you can run that inside venv:
    $ python -m venv venv
    $ . ./venv/bin/activate
    $ python -m pip install -v -e .
    
  • In either case:
    make data
    python -m pytest tests
    
  • A note about the spdlog package: If you encounter an install-time error like fatal error: spdlog/spdlog.h: No such file or directory you should additionally recursively remove /usr/local/lib/cmake/spdlog , since the system uninstall of spdlog fails to remove this properly.

Status

Please see https://github.com/single-cell-data/TileDB-SOMA/issues.

platform_config format

When accessing SOMA APIs, TileDB-specific settings can be configured with the platform_config parameter. The options accepted by TileDB SOMA are described here, using TypeScript interface syntax:

interface PlatformConfig {
  tiledb?: TDBConfig;
}

interface TDBConfig {
  create?: TDBCreateOptions;
}

interface TDBCreateOptions {
  dims?: { [dim: string]: TDBDimension };
  attrs?: { [attr: string]: TDBAttr };
  allows_duplicates?: bool;

  offsets_filters?: TDBFilter[];
  validity_filters?: TDBFilter[];

  capacity?: number;
  cell_order?: string;
  tile_order?: string;
}

interface TDBDimension {
  filters?: TDBFilter[];
  tile?: number;
}

interface TDBAttr {
  filters?: TDBFilter[];
}

/**
 * Either the name of a filter (in which case it will use
 * the default arguments) or a specification with filter args.
 */
type TDBFilter = string | TDBFilterSpec;

interface TDBFilterSpec {
  /** The name of the filter. */
  _name: string;
  /** kwargs that are passed when constructing the filter. */
  [kwarg: string]: any;
}

Information for developers

Please see the TileDB-SOMA wiki.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

tiledbsoma-1.17.0.tar.gz (753.6 kB view details)

Uploaded Source

Built Distributions

tiledbsoma-1.17.0-cp313-cp313-manylinux_2_28_x86_64.whl (21.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

tiledbsoma-1.17.0-cp313-cp313-manylinux_2_28_aarch64.whl (17.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

tiledbsoma-1.17.0-cp313-cp313-macosx_13_0_x86_64.whl (28.8 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

tiledbsoma-1.17.0-cp313-cp313-macosx_13_0_arm64.whl (26.9 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

tiledbsoma-1.17.0-cp312-cp312-manylinux_2_28_x86_64.whl (21.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

tiledbsoma-1.17.0-cp312-cp312-manylinux_2_28_aarch64.whl (17.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

tiledbsoma-1.17.0-cp312-cp312-macosx_13_0_x86_64.whl (28.8 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

tiledbsoma-1.17.0-cp312-cp312-macosx_13_0_arm64.whl (26.9 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

tiledbsoma-1.17.0-cp311-cp311-manylinux_2_28_x86_64.whl (21.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

tiledbsoma-1.17.0-cp311-cp311-manylinux_2_28_aarch64.whl (17.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

tiledbsoma-1.17.0-cp311-cp311-macosx_13_0_x86_64.whl (28.8 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

tiledbsoma-1.17.0-cp311-cp311-macosx_13_0_arm64.whl (26.9 MB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

tiledbsoma-1.17.0-cp310-cp310-manylinux_2_28_x86_64.whl (21.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

tiledbsoma-1.17.0-cp310-cp310-manylinux_2_28_aarch64.whl (17.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

tiledbsoma-1.17.0-cp310-cp310-macosx_13_0_x86_64.whl (28.8 MB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

tiledbsoma-1.17.0-cp310-cp310-macosx_13_0_arm64.whl (26.9 MB view details)

Uploaded CPython 3.10macOS 13.0+ ARM64

tiledbsoma-1.17.0-cp39-cp39-manylinux_2_28_x86_64.whl (21.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

tiledbsoma-1.17.0-cp39-cp39-manylinux_2_28_aarch64.whl (17.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

tiledbsoma-1.17.0-cp39-cp39-macosx_13_0_x86_64.whl (28.8 MB view details)

Uploaded CPython 3.9macOS 13.0+ x86-64

tiledbsoma-1.17.0-cp39-cp39-macosx_13_0_arm64.whl (26.9 MB view details)

Uploaded CPython 3.9macOS 13.0+ ARM64

File details

Details for the file tiledbsoma-1.17.0.tar.gz.

File metadata

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

File hashes

Hashes for tiledbsoma-1.17.0.tar.gz
Algorithm Hash digest
SHA256 4297f5ca42d23f3361850ffbad0e54e7d0c3713c2a939de1b9aa2ee257bc8c7b
MD5 15b1e66a042ba524708d3688bf3ed31c
BLAKE2b-256 f9b4c52e67edaad7f9ccaa2b293e7ea9f8d8ee230d7aa0981e87df0719e4f8d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for tiledbsoma-1.17.0.tar.gz:

Publisher: python-packaging.yml on single-cell-data/TileDB-SOMA

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

File details

Details for the file tiledbsoma-1.17.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tiledbsoma-1.17.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6a80d1b70bc950a4c114ca11e22ed4f41bf75c95153bbb0ad219855381a28504
MD5 91b668e95afdd70aa14e3e1b516bd4f2
BLAKE2b-256 796ec91bd169c38bdb7705414b315a881db570fdd353677d4ffbb2a75b33887c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tiledbsoma-1.17.0-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: python-packaging.yml on single-cell-data/TileDB-SOMA

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

File details

Details for the file tiledbsoma-1.17.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tiledbsoma-1.17.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 10e304ac32263b58924343f3ef98e1fe849a7d5874e52da94a48d8b59121907f
MD5 3db8ee782f77e947bd3e310bae9e93f1
BLAKE2b-256 5b348941924b5677adf90ff3185139c2c5861e8b918efdf1a8766d3005097da6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tiledbsoma-1.17.0-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: python-packaging.yml on single-cell-data/TileDB-SOMA

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

File details

Details for the file tiledbsoma-1.17.0-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for tiledbsoma-1.17.0-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 c57bb86c45c8c6d6c5dbbe16061d72040a534ba412e96848ab0c1bf7bcac2808
MD5 fa9f3deb80d50c4c810bcbf87b1d7394
BLAKE2b-256 55fb8275feb90173029acdb9175e78dd072a1f8f6d8ac0f66509af0f6c061d23

See more details on using hashes here.

Provenance

The following attestation bundles were made for tiledbsoma-1.17.0-cp313-cp313-macosx_13_0_x86_64.whl:

Publisher: python-packaging.yml on single-cell-data/TileDB-SOMA

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

File details

Details for the file tiledbsoma-1.17.0-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for tiledbsoma-1.17.0-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 c27b68d528f51441baab400c9e32d7e7fddcf2514b0689cd93fb10fd0e63c3c2
MD5 3f2b5bca2c64c6bcd59d8d54d1c8c850
BLAKE2b-256 c9d2647f00653bb56e2d39ff12fd61967363b5228bb441e7efc4f17386e04fbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for tiledbsoma-1.17.0-cp313-cp313-macosx_13_0_arm64.whl:

Publisher: python-packaging.yml on single-cell-data/TileDB-SOMA

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

File details

Details for the file tiledbsoma-1.17.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tiledbsoma-1.17.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ab89ec137e36a3b204b94bf4cf8eeff261701cfbc2f0f8ebf716d6258abfeed4
MD5 2fe7c55dbce4436e6f9d3ff49138678a
BLAKE2b-256 f94a33a6794bc21d7d2053f9ce6bdf003548da5fb927de8cb2a816370c412a0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tiledbsoma-1.17.0-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: python-packaging.yml on single-cell-data/TileDB-SOMA

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

File details

Details for the file tiledbsoma-1.17.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tiledbsoma-1.17.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 306191321aa963f02d2646c12b32b82725f028091abf435683ab9bb591b7685d
MD5 9f7acf59890ca9eb9845fa92a5858ab2
BLAKE2b-256 2c78f2481ac8e3f8a995b14d6e8f89eb112d33d91160eb5a916490272192d1d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for tiledbsoma-1.17.0-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: python-packaging.yml on single-cell-data/TileDB-SOMA

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

File details

Details for the file tiledbsoma-1.17.0-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for tiledbsoma-1.17.0-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 3dedfdca9ad3b98bbae958b60cb1df5546cf0002b2b4693f68d606f4847eccfd
MD5 5ffa794f94402074e27b65d7632b7dcc
BLAKE2b-256 c1b0a301fd6110d1e5a1f5ed5a00c081054d3c1f54227f8a91a07ff0952edc31

See more details on using hashes here.

Provenance

The following attestation bundles were made for tiledbsoma-1.17.0-cp312-cp312-macosx_13_0_x86_64.whl:

Publisher: python-packaging.yml on single-cell-data/TileDB-SOMA

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

File details

Details for the file tiledbsoma-1.17.0-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for tiledbsoma-1.17.0-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 2070790c8ffdb188ceebdc06e09b93d68833cf195e4848fd16d2f1c03f15afe5
MD5 82f4bac737434057449493d429a840a8
BLAKE2b-256 083999d71fd7504640612abb125be8efc12cefb71d6df01667de083fd69f64b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for tiledbsoma-1.17.0-cp312-cp312-macosx_13_0_arm64.whl:

Publisher: python-packaging.yml on single-cell-data/TileDB-SOMA

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

File details

Details for the file tiledbsoma-1.17.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tiledbsoma-1.17.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f8547ede76f170da1db94dfe476e319774621798af7d508da434be6a4690c728
MD5 8d47fb3a23dfe237e7373904653a0059
BLAKE2b-256 e269e455123d06251685a39200739da1e268a1be42972791d9b18410af1a3a3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tiledbsoma-1.17.0-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: python-packaging.yml on single-cell-data/TileDB-SOMA

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

File details

Details for the file tiledbsoma-1.17.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tiledbsoma-1.17.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 46a135ec85c8ada892fbefa7bd699d6ff8ced7e9bdd6c93db95c4939cb06ab65
MD5 42f638ad10cc3e9bc4b2d6c4a8134a71
BLAKE2b-256 c611481fce5dbedadb174053bb012b046f5dcb5f6e49684e0903265c9af2d209

See more details on using hashes here.

Provenance

The following attestation bundles were made for tiledbsoma-1.17.0-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: python-packaging.yml on single-cell-data/TileDB-SOMA

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

File details

Details for the file tiledbsoma-1.17.0-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for tiledbsoma-1.17.0-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 9f170458dd1ca079c7ea5d9fc428776f4e6d658b8d0f2cc31b2d4b08898a6b14
MD5 666a3dbd00948dc12449406fb6dea6e8
BLAKE2b-256 d2e7455ca5ca1a6142c64aedfb2fe933c42bd4e92c153530e9b00f9f847dc47a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tiledbsoma-1.17.0-cp311-cp311-macosx_13_0_x86_64.whl:

Publisher: python-packaging.yml on single-cell-data/TileDB-SOMA

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

File details

Details for the file tiledbsoma-1.17.0-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for tiledbsoma-1.17.0-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 76fc36ea93fd81f1189568a16951ed922f7f521681a4bc2568e0b61d7a547cde
MD5 a618b06ffb890444a2c0330245ec7f97
BLAKE2b-256 d06c20679a0025554e24bab3d5ebb491aec593bbf033e36568eb73c0b91ea989

See more details on using hashes here.

Provenance

The following attestation bundles were made for tiledbsoma-1.17.0-cp311-cp311-macosx_13_0_arm64.whl:

Publisher: python-packaging.yml on single-cell-data/TileDB-SOMA

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

File details

Details for the file tiledbsoma-1.17.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tiledbsoma-1.17.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ed1454163f0fa9e80f0e7d97df12350cf06666f4f505e1955b0fc1edd63f85d2
MD5 ee6d0c6c5a771c73f8ceda984d308a1d
BLAKE2b-256 31a902c035cfb7823c65259d489a77834d81390c31582f442e664b8300966484

See more details on using hashes here.

Provenance

The following attestation bundles were made for tiledbsoma-1.17.0-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: python-packaging.yml on single-cell-data/TileDB-SOMA

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

File details

Details for the file tiledbsoma-1.17.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tiledbsoma-1.17.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 33d154d5bbe8b6e8c1fc76845b623e4f8cbcb1d6f3c2d46b16d70cadd0ec5792
MD5 75114a235408d977e08ed642f22c6d5f
BLAKE2b-256 9d1cd2f56a5bc973d106fd65cd33b71bc308d10ea668377eb125ba83fc1fa2ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for tiledbsoma-1.17.0-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: python-packaging.yml on single-cell-data/TileDB-SOMA

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

File details

Details for the file tiledbsoma-1.17.0-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for tiledbsoma-1.17.0-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 8fb415a63c698b38668928fe7128c89ec2a6dc3c6935d4771d17437b58bf515d
MD5 bcda078e72291027fbd5ee9ccf623255
BLAKE2b-256 eb8b80e51da0b7943aebe98ed8a257f52b53caa25815728eb793e6e2d952dff7

See more details on using hashes here.

Provenance

The following attestation bundles were made for tiledbsoma-1.17.0-cp310-cp310-macosx_13_0_x86_64.whl:

Publisher: python-packaging.yml on single-cell-data/TileDB-SOMA

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

File details

Details for the file tiledbsoma-1.17.0-cp310-cp310-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for tiledbsoma-1.17.0-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 1f423a2f83575e007503f362a6986fc423c3dfeda08f2a850b41a292b8621c78
MD5 68825d4e2eb9e977655abf90fbe768c5
BLAKE2b-256 1bf69ac9cc7f8c4ed054a33643e3ca260bbfdf0b83abc3ada185aaa5b39018bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for tiledbsoma-1.17.0-cp310-cp310-macosx_13_0_arm64.whl:

Publisher: python-packaging.yml on single-cell-data/TileDB-SOMA

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

File details

Details for the file tiledbsoma-1.17.0-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tiledbsoma-1.17.0-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 88fe6b07b573bae04720a444eaa5ea0f1dd39a5c53f746c41db2ce452209428f
MD5 00f231434f3d974c762032edca940fc1
BLAKE2b-256 068e3c6d6dbf842af43d624e4896fdcd3a7ff345587087937b3fa5356da4e668

See more details on using hashes here.

Provenance

The following attestation bundles were made for tiledbsoma-1.17.0-cp39-cp39-manylinux_2_28_x86_64.whl:

Publisher: python-packaging.yml on single-cell-data/TileDB-SOMA

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

File details

Details for the file tiledbsoma-1.17.0-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tiledbsoma-1.17.0-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 25e4ceda3188db82b02c875859ae4de495e11692812ab83bbf913d86a1723182
MD5 1d201ee510756b92aea2e98fde11312c
BLAKE2b-256 f97e856d6aeb80e54394a5d05bd3323b4bf46dd2bc02d4797b9bfdc8de424d99

See more details on using hashes here.

Provenance

The following attestation bundles were made for tiledbsoma-1.17.0-cp39-cp39-manylinux_2_28_aarch64.whl:

Publisher: python-packaging.yml on single-cell-data/TileDB-SOMA

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

File details

Details for the file tiledbsoma-1.17.0-cp39-cp39-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for tiledbsoma-1.17.0-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 6f3f4f49902720b5e62f246a6bdde6ff6bac36aff563a2f49f87e8ed104fdb13
MD5 3b759c7a92c3db7b0e35a8876e3e0d7f
BLAKE2b-256 8a836d8d4c8c36bdbef3068cdb9bbbd57f0d79cf88d0d69e0c67473be748992e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tiledbsoma-1.17.0-cp39-cp39-macosx_13_0_x86_64.whl:

Publisher: python-packaging.yml on single-cell-data/TileDB-SOMA

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

File details

Details for the file tiledbsoma-1.17.0-cp39-cp39-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for tiledbsoma-1.17.0-cp39-cp39-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 bbdfec623d3a7336e0fe6fba190eb28205aeea1d6f6f10c8b3e886251fb4296c
MD5 5561ebf14fe71c56b93198bbff959289
BLAKE2b-256 014d3ba50a24195d3c67d917217a3041e5f7578f81c6a27e8957e598bf0e3058

See more details on using hashes here.

Provenance

The following attestation bundles were made for tiledbsoma-1.17.0-cp39-cp39-macosx_13_0_arm64.whl:

Publisher: python-packaging.yml on single-cell-data/TileDB-SOMA

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 Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page