Skip to main content

Generate images of the sky w/ accurate stars for star sensor simulation

Project description

starfinder

starfinder is a Rust & Python package that provides functionality to read, process, and render star data from the Tycho-2 catalog. It's built with Rust for performance and exposes a Python API for ease of use.

https://archive.eso.org/ASTROM/TYC-2/data/

Download catalog.dat from there, put it in data/tycho2/

.
├── Cargo.lock
├── Cargo.toml
├── README.md
├── data
│   └── tycho2
│   ├── catalog.dat
│   ├── index.dat
│   ├── suppl_1.dat
│   └── suppl_2.dat
├── poetry.lock
├── pyproject.toml
├── src
│   └── main.rs

Rust

cargo run --release -- --min-ra=0 --max-ra=60 --min-dec=-30 --max-dec=30 --max-magnitude=11 --width=1000 --height=800 --output=example.png

C++

mkdir build
cd build
cmake ..
make
render --max-ra=60 --min-dec=-30 --max-dec=30 --max-magnitude=11 --width=1000 --height=800 --output=example.png ../data/tycho2/catalog.dat

Installation

To install starfinder, you can use pip: https://pyo3.rs/v0.22.2/getting-started

pipx install maturin
maturin develop

Note: This package requires Python 3.8 or later.

Usage

Here's a basic example of how to use starfinder:

from starfinder import StarCatalogArgs, process_star_catalog_py

# Create arguments for star catalog processing
args = StarCatalogArgs(
    file="path/to/your/tycho2_catalog.dat",
    display_count=10,
    min_ra=0.0,
    max_ra=360.0,
    min_dec=-90.0,
    max_dec=90.0,
    max_magnitude=6.0,
    width=800,
    height=600,
    output="star_map.png"
)

# Process the star catalog
process_star_catalog_py(args)

This will read the Tycho-2 catalog, filter the stars based on the given parameters, and generate a star map image.

API Reference

StarCatalogArgs

This class represents the arguments for star catalog processing.

Parameters:

  • file (str): Path to the Tycho-2 catalog file
  • display_count (int): Number of stars to display in the console output (0 for all)
  • min_ra (float): Minimum Right Ascension in degrees
  • max_ra (float): Maximum Right Ascension in degrees
  • min_dec (float): Minimum Declination in degrees
  • max_dec (float): Maximum Declination in degrees
  • max_magnitude (float): Maximum visual magnitude (lower is brighter)
  • width (int): Output image width in pixels
  • height (int): Output image height in pixels
  • output (str): Output image file name

process_star_catalog_py(args: StarCatalogArgs) -> None

This function processes the star catalog based on the provided arguments.

Example

Here's a more detailed example that demonstrates how to use starfinder to create a star map of the brightest stars:

from starfinder import StarCatalogArgs, process_star_catalog_py

# Create arguments for star catalog processing
args = StarCatalogArgs(
    file="tycho2_catalog.dat",
    display_count=20,  # Display info for the 20 brightest stars
    min_ra=0.0,
    max_ra=360.0,
    min_dec=-90.0,
    max_dec=90.0,
    max_magnitude=3.0,  # Only include stars brighter than magnitude 3
    width=1200,
    height=800,
    output="bright_stars_map.png"
)

# Process the star catalog
process_star_catalog_py(args)

print(f"Star map has been generated: {args.output}")

This script will create a star map of the brightest stars (magnitude 3.0 or brighter) across the entire sky, output information about the 20 brightest stars to the console, and save the star map as "bright_stars_map.png".

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

starfinder-1.0.0.tar.gz (75.9 kB view details)

Uploaded Source

Built Distributions

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

starfinder-1.0.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

starfinder-1.0.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

starfinder-1.0.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

starfinder-1.0.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

starfinder-1.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

starfinder-1.0.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

starfinder-1.0.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

starfinder-1.0.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

starfinder-1.0.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

starfinder-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

starfinder-1.0.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

starfinder-1.0.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

starfinder-1.0.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

starfinder-1.0.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

starfinder-1.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

starfinder-1.0.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

starfinder-1.0.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

starfinder-1.0.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

starfinder-1.0.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

starfinder-1.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

starfinder-1.0.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

starfinder-1.0.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

starfinder-1.0.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

starfinder-1.0.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

starfinder-1.0.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

starfinder-1.0.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

starfinder-1.0.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

starfinder-1.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

starfinder-1.0.0-cp312-none-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86-64

starfinder-1.0.0-cp312-none-win32.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86

starfinder-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

starfinder-1.0.0-cp312-cp312-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

starfinder-1.0.0-cp312-cp312-musllinux_1_2_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

starfinder-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

starfinder-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

starfinder-1.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

starfinder-1.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

starfinder-1.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

starfinder-1.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

starfinder-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

starfinder-1.0.0-cp312-cp312-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

starfinder-1.0.0-cp312-cp312-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

starfinder-1.0.0-cp311-none-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86-64

starfinder-1.0.0-cp311-none-win32.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86

starfinder-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

starfinder-1.0.0-cp311-cp311-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

starfinder-1.0.0-cp311-cp311-musllinux_1_2_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

starfinder-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

starfinder-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

starfinder-1.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

starfinder-1.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

starfinder-1.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

starfinder-1.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

starfinder-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

starfinder-1.0.0-cp311-cp311-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

starfinder-1.0.0-cp311-cp311-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

starfinder-1.0.0-cp310-none-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86-64

starfinder-1.0.0-cp310-none-win32.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86

starfinder-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

starfinder-1.0.0-cp310-cp310-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

starfinder-1.0.0-cp310-cp310-musllinux_1_2_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

starfinder-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

starfinder-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

starfinder-1.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

starfinder-1.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

starfinder-1.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

starfinder-1.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

starfinder-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

starfinder-1.0.0-cp310-cp310-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

starfinder-1.0.0-cp39-none-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.9Windows x86-64

starfinder-1.0.0-cp39-none-win32.whl (1.5 MB view details)

Uploaded CPython 3.9Windows x86

starfinder-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

starfinder-1.0.0-cp39-cp39-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

starfinder-1.0.0-cp39-cp39-musllinux_1_2_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

starfinder-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

starfinder-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

starfinder-1.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

starfinder-1.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

starfinder-1.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

starfinder-1.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

starfinder-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

starfinder-1.0.0-cp39-cp39-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

starfinder-1.0.0-cp38-none-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.8Windows x86-64

starfinder-1.0.0-cp38-none-win32.whl (1.5 MB view details)

Uploaded CPython 3.8Windows x86

starfinder-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

starfinder-1.0.0-cp38-cp38-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

starfinder-1.0.0-cp38-cp38-musllinux_1_2_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

starfinder-1.0.0-cp38-cp38-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

starfinder-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

starfinder-1.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

starfinder-1.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

starfinder-1.0.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

starfinder-1.0.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

starfinder-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file starfinder-1.0.0.tar.gz.

File metadata

  • Download URL: starfinder-1.0.0.tar.gz
  • Upload date:
  • Size: 75.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for starfinder-1.0.0.tar.gz
Algorithm Hash digest
SHA256 bd6ce48c384dcb9a9f106efd311202d0f7fa6337274fe63933621006f748db2f
MD5 a82ee5a46021035f11f034957e256030
BLAKE2b-256 44f0db57d00f93eaa82ac9e29c4e68b9fb7e0218b24d4270a87c306c14a0e780

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5611e9aa4c34e8cff60fa8e0b9b343b7afa629240573d6bed15e463e065b5a6f
MD5 bf239a566a2e2d1644ff8677c0895e2d
BLAKE2b-256 9c6b1631f7cb1a52ecdba68503cf63f20f8288d216e5dc73142e6e1f0c6b2588

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 17a0fbde89a91c836ce79276dbc9deda407213f0a2ba24fb0102e1efdcc8fa59
MD5 e962d09c04fd8cea2ede099bc6ac59ed
BLAKE2b-256 8b9d3ba791be27fba88564000ec1554c92c4d39a42d5c8616ed231448659c726

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9609ae53b37420e68f454d631a29fbaee509fe7ea8df80df51a90cd13a49004f
MD5 d1d7ad46d1733348a002b9a17e92d6aa
BLAKE2b-256 e9b45427364ec8369bd99e4365d414dc768885e1bfbe0a4686c10a0649108be9

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 588a229752fdf29702df596bd0a08f5e935190eddb950e1fa97760c0d6037b10
MD5 fc0046713eabe7d7239db677309a246c
BLAKE2b-256 24bb298b330ba59a41df3cd22e98263da971eb8296d1d46015645b504938f15c

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b606360e298d7ed4be43ed131eb632bcf1576d9515443490b8d079348dfc0318
MD5 ebbf7be4e178e4aeb5ad7b442c048b89
BLAKE2b-256 8dd750bdb51c0af189df1b5251db2deb4b7f3db5cf2bc0a192e50e7d6a17f64f

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 690e73fe13952f4aa083b8badfe94d43dbaef31874581316970b03f11695670d
MD5 5ea718c0424bbfd1c08a35e8053803fd
BLAKE2b-256 7dae7df32a05f9e7b016487f581d03bced787f3af4c183ae4e345669f83ff7a5

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c4ee933844a41c846cc7f5bd2e356ab66b8e9c059ef12b409a9d5e6065bf640b
MD5 f58cd835d7109f1d9def9bf3ad518ed8
BLAKE2b-256 c686d0a6382f2a8273aa90b59722b31d3ff9d90cc96d5ea6b0e11b2b5f186744

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bdad1c24a87c5a3b14c8b31ecdd3f01605f3a3042ee50b8a04ef1a67f4c45b23
MD5 dfead41c182a64d249dd57863f76f58c
BLAKE2b-256 97dd274628de54c360aac75f299485ae599721fb7417ac97a27d7855d221d486

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4d1b3cf048666ea5cff7031c5d81256f8748baebf09d0b9e75fd1a37042b745c
MD5 ec07acd0b35fe2dc8bc45ab88e0ed038
BLAKE2b-256 8b90c9ad982a9f6dac76c62f1906f74ef713e5c03e6daf86632bc3bf10368d36

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c20bde7316f52a1eeaff5da08feba33ad72ba8adf4522f9d4bb5fd76deaf4b94
MD5 61f90a067401bcbb92da381d54964b99
BLAKE2b-256 7a787ef619f719bc6aed8d883d81f425d6fd9a7813e2350c6d34cfa5a5ab8600

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8b3a848003c95e9edbcfeb9dbea6208e80154175f736a87ae5cffcf17b07dbf9
MD5 4458811edab816ad319dc3e8c769451f
BLAKE2b-256 62d15447c8d81a3b861878fd0af760c642baf70ae20bd942421a17c032f1ceb3

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 08d9d4c794c10213faa07511904f2c204d1b945d4cb64071728429bf8f9352bf
MD5 18aa65b372e3984f05f74e809b8a5c85
BLAKE2b-256 6dbd8f665dd4849bc88984c3d146109ee8be7936c39c94310fde0fc40fe33d34

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3f9b487be66cf6d5b0a4583f9e6438854ad62314637b8eda5fbf4eab4dc34a61
MD5 3218a889f26f84447caad39a478fe1a4
BLAKE2b-256 cfc67519646ce9c9c10d7a5481afef4739d2fee0c358b222245e0149a544fe6e

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 472e8fe5e3a480313a4535107156c3e90630b63616371138440c8fd91a3f5cc8
MD5 ae6d32acfd125a3c420c66f3ea25ee98
BLAKE2b-256 ffd06773a235cc8034dc493d0d3f8d51c1d07e39b6468a56513b62f72d25837b

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10ab5dc7aad22b3ee657073598961e18416441477cb4414d4fb5d2702533f7d1
MD5 ebd721a9fa9515eec1f4e05b65c8b721
BLAKE2b-256 e334a9a992db3ec656e12dd4d58a8e796f229613da8fcef6a33e530415e4fefa

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9a09a307cda34ca13dff47935454eb7c4cea1cba26515e51e4e89e53d5036507
MD5 dbdad17cada51de4ff7ad1cb7eb542d3
BLAKE2b-256 e636dcb0389dc85b8a6515f91e7ce5c02299d5188921f8becda9a2f43321c87d

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4d4614cc6de3037e16b4b8d5a958d81596f45a97436b78f27b1bb3a723e85731
MD5 16205495ff23cae55d03023fa852da40
BLAKE2b-256 8423e2e55439653ca17108e450784c76d523cfe1cde47213c8c9a170e18a2b3a

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 33b48f5de1cbd4fd9511dd6dce98f012fb41e3111902c3f988973f11883a30a5
MD5 a72a7ffefa845f90b6637f204af8c676
BLAKE2b-256 5cd7c3c697362c1222fbde59ffa3dc56f581a9a46691b12e7f3e15374692dd1f

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fac508fdba8a42dde0cd446b70d9b900237bf9e24879e5763ceb5a13811f2f24
MD5 a0d5a0acb8ea495e89241bc867c00a9e
BLAKE2b-256 53172f3971016de67b701a3e3ddf9a80c3c41ae1f6182e83c601072883a38e0f

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f2bdb9f741397b9b61eef8409b85efacfb487da88ff8313521a7923a59c5b649
MD5 cb1042f88fe9d9dc0af6e67852e77817
BLAKE2b-256 ba51955aab174ec493a69f4f2ea6ddaab59d93f5d5bea7221e2d1d83c1fe288a

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 79c1b7282ca964727b133c111e707e13eab09e313964e8e538e1ffc175f0ca80
MD5 8da4a1cdc147d61264fd555c26f3e321
BLAKE2b-256 3057e0d96c4316d167f015042cc82daf50c120457d2136cd7054d5a426337c9a

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a372ac1c4d0c9d3dc025b4f5f80f8b474ab058b5f03843fd15a46fcf7c7f0541
MD5 8368ad0e69055f2ef7c07be32a29e9c2
BLAKE2b-256 20a8f0aae7251ca2d4ef7a8be0e254a567f5b17c05e414ecde5f2fecc80b6911

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ea1b8653db386319e96c0306156fa92fb20d43b46e5efbaccd1eb834b0ef67ca
MD5 da3c32d50b99995c76d0cd6320e0132c
BLAKE2b-256 c14bde5bb77ae4bc886a321e4a10818d67dffeded988601d207a29034ed79a01

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f1375079143fa24f208411170e5b20204ccf585ab02f17e417aa7064b7a4e5e7
MD5 a36b4ed90eb157444d8b1805e6bb71dd
BLAKE2b-256 ebf6b429b1275d7ecb32145cf4c746e28eda16255d89e26b8032c19dfeaa7c43

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 090fa23a6494afc3156b8de6cdfb8169ffea7f1a09df748d5c13873bf6be4a66
MD5 7ef9a779149e2eb0967f787ee5ec0399
BLAKE2b-256 f017580624b5acfa44e4d827ac04cdbb92a8a8b27fd6a5af924882d4d1d1e36f

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9ba4e445caccd924f1be683789b7f70be758259773579e95a1c210a85d86f620
MD5 9cc2e6705b9813820b5f7cdcd218dfcd
BLAKE2b-256 d41e6772ed5cdbfe2f290638b12c210f10f4eb3d6e366ffe8be551203aaef0b0

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 68ef4e0b85bb1a1ebe7b970e571fb6f807c8ac9c3b6eb08fa377ef3c7b92bf26
MD5 832c168a080d82bceb334af93161b534
BLAKE2b-256 9a66cbef76003590d2700ea053ed5650408852eca2d908235faa8996f15b0575

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b77c2547d57cfbd85f2b90af4b9076b7323991a4877207a411d4f92372168ae
MD5 74dc401296d72c70d20830742c699054
BLAKE2b-256 9d5e831c0db14b15909c150cb3b8d4eee1e8a17ba34bee673cb519efb9fd4b20

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 b4bde1695d9665f34af7377f1d06cc6e30484ea99811fdf0941e89cd21603827
MD5 313fc1f6bf9a11a909da0bf3c31b3d47
BLAKE2b-256 ea04f1dad4608de7e63d8fd7b8ea4412fd10987607cb017fb1acdaa986a3ff43

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp312-none-win32.whl.

File metadata

  • Download URL: starfinder-1.0.0-cp312-none-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for starfinder-1.0.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 129cef9bbb41b7b60aaa6543f8a0e00f0a5777cd6f9b94be2ce12e040558c339
MD5 5906d00a5797f6eed6bb4fb3d5054862
BLAKE2b-256 51cd5b0fb90bf75281d45d6fc1d10ba58b96dc5fb3eec1870fd7a55fc3c22ae7

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b8d80e6af16a1095b4aa9f18705c1a16f34f48a14ea186b65c9d50c199f24ea
MD5 3e82ab0a0179672dad93e3ea91420bff
BLAKE2b-256 28db2c7565b8a096fa0472d788b1371b04082f704997e05e5ad426517862977e

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ecd58fa9a9f1aa58167cff54b3db0ada5da018ae16505f8fcf04ffc36a136207
MD5 b0017de812ee3a3aadf58e5133e00a93
BLAKE2b-256 0a98ceff1bcd4bd767c1992136efb3f8d4f005acc0ef59706acd09c3953779ba

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 436fc1d53eabbfaeb383e5291833daed03a560b6c025cacfb472e9abb8a7d5c1
MD5 4614cbf9899d776a21c99d15419dd35c
BLAKE2b-256 9ec99564558414a23716ddd6661661349746f2799f90c0907825c32df0876ba7

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ba4063f7faa29c211a6a54fdcf2f40efb03b73a886c4373dccc041e7ffd44105
MD5 ff0c3d21920cb9e13bd3f89d0b58a6c2
BLAKE2b-256 955f7fe44d2d2fa2e9f7d77dcd0a4608798c045ff1e16e3c4020b877315d6640

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f84cb4a9e1eecb038bcde62047315412f08d27ae83768f4886aeefd8ee21b66e
MD5 084285e05875e4a953d2b4c25804739b
BLAKE2b-256 163848b6b2aaa8ad8867b73acdc48632fca18091efc38bed37ac1a18f012a2b1

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7195367ccf8b73ace67b7309a24803db327fecd61bab22ac8a5677e933e1ca12
MD5 5cc64089942bbb663e08cf91c00f5416
BLAKE2b-256 98b2e1569820d2455aa3da350c7d83ac9dda4d7b086dd7e7beadd9fe00be7d4e

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6d75cde92ccec9795ef908af5fbb21a83ad697a331b1331df74702e40c650559
MD5 b99038a70e7353ee92ac161e4ba7c44a
BLAKE2b-256 444c0cfb4ec82bb3f917eb9c2192eaf9778a7dc60c24e9a705918f7c541b8c7d

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d1bc4dff3fefb4a00114760c095de1f7cfa96fac7ef7c3064ffe729c96e0d30e
MD5 7022285a3c1135b7c76cd69a16dfaf11
BLAKE2b-256 e9d1e9bfb616cb260bc47de668f712d845defc25f1e7dece7581b82135ce814e

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7d75a0713baa567f9d5a494e1a0a82c415b5b4e2aa1ec459b1e4aceb2d652c6a
MD5 147910799a122b8f2e0e97a35be26981
BLAKE2b-256 583343c73854d764b74c19e57dfe3ef3c4389ae81afdb3b3343f7e1442a085cf

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fccaee3602b97d690a6d40306cda562fc698da19e2b2dd932d5ef13fbb73228a
MD5 2d1072d34e366a0f16f87ff2643c2115
BLAKE2b-256 17b78ffca125c184da83941bad43939501016180062e2ebee9861c25c2e2e93f

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c70cf8333b9945d592a456f309e8512e5a6b18ed0c8e903e533fd840f641eb99
MD5 245e99befbff33b99b267da341f7847c
BLAKE2b-256 d8b2a79e93aaaf41553fbc0905ceaee1484bd46eb44db05d42fc5c4b28ee7f4f

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c0199e23de2e5e24dd32dcf7a4f713bfddf569011f76a1fea835abd13892c013
MD5 004dd9e3adfa7d5dfb6a12b8dfbf3068
BLAKE2b-256 15709680de56f09c9a0f1a30983e6a4ea5cb1a155c6579abfc938da025df00b6

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 e56db6de7245914fe203ea7ecfe7525b22b33f6d9df602b7bfe1c99ef81edb9c
MD5 c61d44416343d5faec6a7e64722f08db
BLAKE2b-256 5fa496c1f990d9a1038c895897a85ad2d3f54cea9fcc70edc9e3d943905757ec

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp311-none-win32.whl.

File metadata

  • Download URL: starfinder-1.0.0-cp311-none-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for starfinder-1.0.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 a481c82dc3215d935267b2aaf6e31ef0e5a99cfe595e816d460c4445d0fde2dd
MD5 73cc4adee0a839fbec74d6044e08ccf6
BLAKE2b-256 adaf1f385d10202990e2b0b2fa9591a978fce20c443786b31e46ae500e72f648

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b75d08979cb237cc3a641ed624022f775ea199507021b2fc97051b224cfef80b
MD5 9bdb3291c7abbc758211ce603d6a6f3e
BLAKE2b-256 3dee5ae2ec6531939fc0123143ee31eba1e45b14e8ff9c97f000245024a961da

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d4e380f6326edebdc625e884b661122ab359e82147925b74aff8a13f9c2da051
MD5 a224fe902f2f8335c0e7d31f0994960c
BLAKE2b-256 f9e5f694593364e6b20bd2fb734311562ff51fb32613177d5ec33bb8d7d75e69

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9b947c7c188334ccac652229ce315aeae677960d852b8cc9d08c94d865cca872
MD5 b50d3fa028cba5273d5baaa8e7b49f0e
BLAKE2b-256 aee1e153393e6dc38afb6ded6f69313293636737942de9ef12964bb61e3125d1

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b431f58248d2fc0dc21aff86dfc049b791eb5259ff1225bd4be48736aa3edc17
MD5 351015824c022e73f935096560ae35e3
BLAKE2b-256 757b30a7b1353c237d1789f9e7c12c161c3f70ebbe4643f75ed55193d63d867d

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af9f2a18911c883e695f4a2f0f4dbd87beef77af606f2539cdd2218b7192aabd
MD5 0797b10180b8131e1f522038ddad0fb8
BLAKE2b-256 054c566c3a3428d844c3321dc0fc39e14dd8abb2b796185304d6152e4c5bcebc

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 facf9900e7934d6b2bb595b0264e85882ba1927d3a5072f5b8f0497fac0ef927
MD5 7e6dbda919eb1f9ad4ba5b6565e86239
BLAKE2b-256 232eb39727f345f4c66adf8179bf25928737d0034e8295fac0bf535d48af9048

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6bcb04d3b76a2de9e7162b8bbef517cd26ff0ec386c597f593288aa267581d98
MD5 ada1855892c36016e2020a403b251288
BLAKE2b-256 a6472775636e0313e6844adc4a5216012fd158c50de1df7d3915aad3b5255cb3

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d7770f0e6b913a20d4473acf333fc3a694bb8efd8419fac7cd8ababf0a355d17
MD5 c71b485ee09dc80eec70238ce1ae2988
BLAKE2b-256 2e580a09e54002ba22cc0f1fee324737a65088ddab6f8c0de1451db6454eac7c

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 221934bdfb14a3b0d85bda017e442cbd22cdaf6bb919d17d4b454da4e32b8d36
MD5 bb2bc639d2291bf0d1d82ebbd51cf313
BLAKE2b-256 b011c671219f76ace9be2ff33429019dec7f13a666f1f47c8039a5ef5bf81467

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 482659ec77cedf9f281409dcf608f7047f9edd8c29ea9bc28fd14cc60983e6cc
MD5 e38df45891563f51b54d86745ddd0286
BLAKE2b-256 51f1912a18071e0d7902f6a8111aec7c0e3f9a535547876aa599c89a4d54bf19

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71062d8070e9cc82cd147e1ebdc327c0b7e4d5c24b6854151543d56e0a8114d0
MD5 322fb94654333ace827de55ed277243b
BLAKE2b-256 b55edcae0d4dee0a56e0215ffee63ae6b7365c59da725ace2770164088e527c6

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f1ca9283b253db518f515cfe226d77afa8038301846e7d607c19035640e56627
MD5 56cf28741fc2b1edbd7c830f769c4dd7
BLAKE2b-256 c7f75e3db8bb48e940c3c6798f5797e9e1aa589c8d83f3464683c9f6faec4c17

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 1046239008e86c2486332622ed4a87f1ae2696f930300bf50b341d804c2f24b9
MD5 4424bb410b8bda1cf121c0a997afa38e
BLAKE2b-256 0115308ce7bf7c98becd6cd192e76d88a4b2e98e6b10876de053e2490aa95166

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp310-none-win32.whl.

File metadata

  • Download URL: starfinder-1.0.0-cp310-none-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for starfinder-1.0.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 75bc7b42e07c816679803dbaf82de3c764c4fb253a88d8e02ca84332ebf60f11
MD5 8f3296b51f3c2bea41963cd04ef67a58
BLAKE2b-256 3f36705eae29ffc3b467f9b574f93a4be917ad9aaefc1d1bf7c1ca189fb0e019

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 293b6d175ccd44eb909f11333417a72a6441a40d37d28b199a0e23b962c6c4db
MD5 428ff27d80f15092bf314f34ed91a690
BLAKE2b-256 13e2fd5c86357dc97414a2e6e88cb6543b661185c271f9d86ec4205fbadd2593

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bf83fddeaa519422f99b90c155998d903d6bf708c21d3297154481893b5433f0
MD5 ab47e6a03197691f254cb9ae824e39c0
BLAKE2b-256 90258e8f87a9565f8d7fc5ebc9ecaa05361b45c7bda2280cdd4aa97b714dfcc3

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1c959b1663ebdfcc781e75ea44485211326e09e4a90bc4a451426fdffaa3fa04
MD5 69de8b444505bda2e11c6af0f9036eda
BLAKE2b-256 74a6c94350278cd30543ac7d2f2b0e959334442f5cf8ba53301d645c2c9de4cf

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b335f0dd9b6d392b64fff1740296a188756085db9cd0660e2426c080598c3760
MD5 a769449dcbfe9b782b72bf864315f0c6
BLAKE2b-256 cdc842879d333db56c705eaaee1f9a822f0840dd916c89552497668df85ad997

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 416b38b4cc113f4b57b048c7f4c2a6b85b85f95a477cfbeb5cc355261f995152
MD5 53ed74f74d228a71483fa21e3a7c24f1
BLAKE2b-256 3a93404f4e0f4efe523e2bcccec6f728f5f6d27b26eede2ea54a5c131552c94f

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9747af4fdd110fed96bbaa30080f30fd6d668475adb8888241f5b50a56d9dd82
MD5 3ebf8b1af9d93f4342fee9e499a3fbb9
BLAKE2b-256 8f74bfd893069fa56b4159de6908a48bbc9118076dc2c8ad275995bed09b3aed

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b59ed8f64e34a3ad8ee895171d300e1824c20c05fb423e6f5a53f54b62b92e3d
MD5 6e130331a9d5ab5074ac8f0abe0538bd
BLAKE2b-256 65bc5d6770f06daab5174f047f9a56f97ef2df618d599cae431fae4b8905c0d8

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 36999ef21f8d789cf98a178bfbeb07547bebd3030697afba0922840ba2c0a356
MD5 ad7a6da52d6a668e6bf0c4ee02ba2711
BLAKE2b-256 d46685d2edbdc721f83998180c7e6197eb09357d7fb2411bea25ace37f6f339c

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c2d2c6088f871d708ae2c1812729b47f48fb8a779c7d11ca814ec594a1ce0162
MD5 f43b1db9e44f97610e7a693025833d24
BLAKE2b-256 bda5dcef7834c7ca7910e38c24dff68da9d1cdec11359936ef0861d2053fe813

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae08e5a829f186057c70993865b801b23d34095d55c3e514d2acc5a2c7aa3281
MD5 69a37000256204889a2d571838cc7b3b
BLAKE2b-256 3a2c4dee395d3d6572b9d30d2ce747bc68f09444ee3037a940187a3fe380af25

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c01fc3480c9749fff656a96b53b102fec4afd2dc2b8fc7e46d59f07d296d086a
MD5 8f238dc8db83b7c72ab430cf0d90e8ac
BLAKE2b-256 c47170a47a760130b77a033ddce4196e4275cf0f3e5765d64b0fad803466f55b

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 c152df67ff719f713b75bbe7e9ffb674c08b3f47cbb39512b8ab8aa46fa54ded
MD5 ecc9a6f1c244449b2877a49bdb54805b
BLAKE2b-256 2096c6299fce15bb27503e564570bddd5c19774ee3dc3ba01e7c5fde40268206

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp39-none-win32.whl.

File metadata

  • Download URL: starfinder-1.0.0-cp39-none-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for starfinder-1.0.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 52c6f678795d51ab44b66a5196dbb815fd992ff216ead80255eb58359b1ed4a2
MD5 3d8e32e31e705130a924598ad88eb007
BLAKE2b-256 d51e2b11bceb04c3b0fd0d2977d3f297d366b2e03a49a3e2a899c50e6cb04f27

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0439e2f2bc67f003230206aa29f2bcbc78a5a6aa1c6f545cacd70d37be3d03d
MD5 eefcecd37d1cd9d628722759de208ed6
BLAKE2b-256 17e0423970ae83a352d213bad7245c434aa8443e3ad3b20ae27a8fd3d8d85b85

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b756eeafa390ed59a7720a2b6d63de97b97822fa3713465b4673aabf3a9f75bb
MD5 e74343c1c97bb469a811cc2b52e0eab6
BLAKE2b-256 629f888a5294ab58f0dc268e1d0adbc51b3582fa7b643808aac1593009fe5f1f

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 52582d7e50efd7360c33586e463c71c82113fce0e26c54fab6b799678d935e08
MD5 4d14b6d1552cbd3462509a87edcb4ec7
BLAKE2b-256 f2a95415c15162333df2a767057f767e56ac425465007071eb3733871f19ab13

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f83de7a5aab46fc15cc8e7d5d6ccd70b5e932c714f18faeacee439cfaeb0ba2
MD5 85f961aff4ecace1b8f83c823c58faa6
BLAKE2b-256 7820a07dc187a316fa16c0ff60b3e45249a77fa2cec6aa698a8f0829b408b01e

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c95284524476d93910cd53a69419ae6268dc764d448745396208e9dc98b669fb
MD5 81063b29c3f2f85ffd1bbddab03bf7d7
BLAKE2b-256 cfaddeee264d9643cd95acb719dd4ee18196e4ea22539d9f8957b529c95b025c

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0e4850895599ca3125f86ef185723bb90f91a362fa1185c35f1a5c4f30a79c26
MD5 ce5d7e00b1563dea7634e9a2b82a685c
BLAKE2b-256 dc611adef64295ee8bd4b06660d159b8573cfc705329c4c8dd92b882917ece76

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c393f330dec77034c4cbd180a562f86e7ceb1e597417727be0e677a9487eecff
MD5 90995b20d092e8521ce8ba0505931df7
BLAKE2b-256 53f028b6841b206d8b3a3c64648f259a82b2ed8fa37bab762bfd059a893f340c

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 315ff3871708dc68c04d8d873a0c88804009862297a39aef46dc6269777d85a2
MD5 c24e88e3742a03be61daae699434465d
BLAKE2b-256 a15097128c809b2531bdeca8373622a59359e690e8fda8eb88c8558799397cd0

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c60097450edeca710729244176e8f247eda7c307297aa8ed94e51f381d99bb81
MD5 e8ad9448841989c25b3cbe31c72a180a
BLAKE2b-256 7a813b902104a1f7a882f57c1b070eb4d64367c7afd0e090cb0b5ef7f345b39b

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f54d29f7e3993eb0ad4f83be32303b830c4a190e75d3e7a201cc2d8ba567181
MD5 42ef701509a8dc43478e635b90d7a7eb
BLAKE2b-256 3e03fa178c0d0b178bda34e59840b3cb9526e53ec46e0e1f70a204f47c706511

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c00860552f2e7aa9c763642972067d71da433219c4f46c5770f0093ef066b9d
MD5 e63e194e45ea7b2f27284f9998baa213
BLAKE2b-256 f23f7270cf0941cfc0cacbcbbc8814b7d3b5170a4accf0f668f6cf888467d9ab

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 5a68f7a8d068498ced988410761d2205fe37c430a88b569ed46af57dba1e2523
MD5 e55c08975772b97dc620f33a9ef71613
BLAKE2b-256 f01b885a560df54b36e3d6551b985c85abf0a37fe10d0466122bd53407dfd4a0

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp38-none-win32.whl.

File metadata

  • Download URL: starfinder-1.0.0-cp38-none-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for starfinder-1.0.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 198a9db6cd50936d119a22b7e92e2f4a0462967bb4ba63518fbcb35f3744b37b
MD5 78a2c04e606497878e3185260b4fb27d
BLAKE2b-256 98e22bc3281379765d09db825dd0fd031d112f1a0addb2c71715485ef54adfa7

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3130f9f846a75d14c289129d5bc743532028d82b396ed83d82ebf8c2f6a28b5f
MD5 2972e7a691164b164d74c62dbe854600
BLAKE2b-256 e908bfa9d9bf3cb441fa6c7f4919ec60a226e86a71bb47d80030e8b8a2182fae

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4e633e64bce37b415c3aeec43e40b9f7364cf1211db0a30d289f497d8356898a
MD5 718b07ad95fa623657d5bbea52442e10
BLAKE2b-256 abe7112979c9971926737c13f0e2507ee93c9b7dddba63b219953ea11010c3bf

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 654c388959b4dd697ccd0965fe3b9466eb1c8f6e5b302be2f03b1ffe0b0382ed
MD5 5718e2ebb9d9fd82682d6f897edadc80
BLAKE2b-256 e57a52c397e66872d07b14cea2daf045183be224290d97626a445f369ba054ed

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0da44d551ca82ab6c995f59ea6626a2fd5f861cf7c8f1fd8e4131309727b60ce
MD5 d6f034876fc1943dd4a6c12b6c1f7177
BLAKE2b-256 b8ea162d7aa3b01b46cc0dc35dcaf250c1da062b12bc9f67f392e1d59b243394

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ad408343c6802860ecceb2e88e97083646462f00635591900262e6b7400878a
MD5 b31d70a9251c50795bef6edadb2c4119
BLAKE2b-256 9a05f75a18786ec2aa912429d73b303a42f38e0b8cb16eb406620415312e8df6

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 752b82968313abe7e6cba281d69e7c6533eeb01b2aa29b1b202eab4887f2372c
MD5 1cb8e15df2f3582f95a703c4360c6af4
BLAKE2b-256 3e5f38176073118f7cf7e980fcc2af8429429627a2379e563a04cbbe4d282704

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f6fc8653907302080d2cfcdaef94bae445a71d134a983c5bfce15634ca853ca0
MD5 85338bebb0acfc2caf536ec1a4e731b8
BLAKE2b-256 2380d71d64907070e2aed6fa3918b5f797ccbc8749883d2c97662057b805fb6a

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c51390bc9b95d99562a920796513d044f7261794db1b9ff675f0ec6844ed8928
MD5 338d937cd0347c7f282c31c7dfad8446
BLAKE2b-256 b78a27098ab0dc5ac3f62b8b8aca4a6bcac1922ca9ffdab7485126d7bb14e274

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 24294e2a082cdbc71fd213241a1ef8c86b1eb15f275c7cc2cdac6b724f2fa005
MD5 e5f83f17bceb0055a701afadd21e21df
BLAKE2b-256 b0e502aeacea7de6722cdfb92d6a1055870485655a436159681431441f62de55

See more details on using hashes here.

File details

Details for the file starfinder-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for starfinder-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5448a82942f3f1efaf79405386e32eab06080731634caae07743d65a3ded0651
MD5 406d43da586098e6cf6dd2903fc31169
BLAKE2b-256 c344bf6e2f58828f935889610969ee784af6ebd5ea71f3bb52fa265773f67313

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