Skip to main content

Atmospheric science research utilities

Project description

Skyborn Logo

PyPI version PyPI - Python Version PyPI - Downloads codecov License Tests Platform Code style Build Status Documentation DOI

System Requirements

Operating System: 🖥️ Cross-Platform

This package supports Windows, Linux, and macOS. However, it has been primarily developed and tested on Windows.

Note: While the package can be installed on different platforms, some Windows-specific features may not work on other operating systems.

Installation

To install the Skyborn package, you can use pip:

pip install skyborn

or

pip install -U --index-url https://pypi.org/simple/ skyborn

📚 Documentation

Full documentation is available at: Documentation

🎯 Key Features & Submodules

📊 Spatial Trend Analysis & Climate Index Regression

Skyborn provides ultra-fast spatial trend calculation and climate index regression analysis for atmospheric data:

Precipitation Trends Comparison

Key Capabilities:

  • High-Speed Spatial Trends: Calculate long-term climate trends across global grids

    • Linear trend analysis for temperature, precipitation, and other variables
    • Statistical significance testing
    • Vectorized operations for massive datasets
  • Climate Index Regression: Rapid correlation and regression analysis with climate indices

    • NINO 3.4, PDO, NAO, AMO index integration
    • Pattern correlation analysis
    • Teleconnection mapping

Other Applications:

  • Climate change signal detection
  • Decadal variability analysis
  • Teleconnection pattern identification
  • Regional climate impact assessment

🌍 Skyborn Windspharm Submodule - Atmospheric Analysis

The Skyborn windspharm submodule provides powerful tools for analyzing global wind patterns through streamfunction and velocity potential calculations:

Streamfunction and Velocity Potential

Key Capabilities:

  • Streamfunction Analysis: Identifies rotational (non-divergent) wind components

    • Visualizes atmospheric circulation patterns
    • Reveals jet streams and vortices
    • Essential for understanding weather systems
  • Velocity Potential Analysis: Captures divergent wind components

    • Shows areas of convergence and divergence
    • Critical for tropical meteorology
    • Identifies monsoon circulation patterns

Applications:

  • Climate dynamics research
  • Weather pattern analysis
  • Atmospheric wave propagation studies
  • Tropical cyclone formation analysis

🔧 Skyborn Gridfill Submodule - Data Interpolation

The Skyborn gridfill submodule provides advanced interpolation techniques for filling missing data in atmospheric and climate datasets:

Gridfill Missing Data Interpolation

Key Features:

  • Poisson-based Interpolation: Physically consistent gap filling
  • Preserves Data Patterns: Maintains spatial correlations and gradients
  • Multiple Methods Available:
    • Basic Poisson solver
    • High-precision iterative refinement
    • Zonal initialization options
    • Relaxation parameter tuning

Applications:

  • Satellite data gap filling
  • Model output post-processing
  • Climate data reanalysis
  • Quality control for observational datasets

The example above demonstrates filling gaps in global precipitation data, where the algorithm successfully reconstructs missing values while preserving the underlying meteorological patterns.

Curly Vector Plotting

Skyborn provides an NCL-like curly_vector renderer for atmospheric wind fields while keeping a Matplotlib and Cartopy compatible API.

Curly Vector WRF Example

Key Capabilities:

  • NCL-like Curved Vectors: Curved tails and lighter arrow heads for cleaner large-scale flow visualization
  • Matplotlib-Compatible API: Works with standard axes and Cartopy projections without switching to a separate plotting stack
  • Flexible Inputs: Supports regular lat-lon grids, xarray datasets, and curvilinear grids such as WRF mass-grid wind fields
  • Vertical Cross-Section Support: Supports latitude-pressure and similar vertical profile plots through the same curly_vector API
  • Projection-Aware Rendering: Supports global rendering with different central_longitude settings and Cartopy projections

Skyborn curly_vector also supports vertical cross-section rendering, for example latitude-pressure plots using meridional wind and scaled omega:

Curly Vector Vertical Profile Example

Minimal Example:

import cartopy.crs as ccrs
import matplotlib.pyplot as plt
from skyborn.plot import curly_vector

fig = plt.figure(figsize=(12, 6))
ax = plt.axes(projection=ccrs.Robinson(central_longitude=180))

curly_vector(
    ds,
    x="longitude",
    y="latitude",
    u="u",
    v="v",
    ax=ax,
    transform=ccrs.PlateCarree(),
    density=0.9,
    color="black",
    arrowstyle="->",
    linewidth=1.2,
    arrowsize=1.2,
    zorder=3,
    integration_direction='both',
    ref_magnitude=30.0,
    ref_length=0.1,
)
ax.coastlines()
ax.set_global()

Performance Benchmarks

🚀 Windspharm Performance

The Skyborn windspharm submodule delivers ~25% performance improvement over standard implementations through modernized Fortran code and optimized algorithms:

Windspharm Performance Comparison

Key Performance Metrics:

  • Vorticity Calculation: ~25% faster
  • Divergence Calculation: ~25% faster
  • Helmholtz Decomposition: ~25% faster
  • Streamfunction/Velocity Potential: ~25% faster

⚡ GPI Module Performance

The Genesis Potential Index (GPI) module achieves dramatic speedups through vectorized Fortran implementation and native 3D processing:

GPI Speed Comparison

Performance Highlights:

  • 19-25x faster than point-by-point implementations
  • Processes entire atmospheric grids in seconds
  • Native multi-dimensional support (3D/4D data)

GPI Global Distribution

Accuracy Validation:

  • Correlation coefficient > 0.99 with reference implementations
  • RMSE < 1% for both VMAX and PMIN calculations

GPI Scatter Comparison

📖 Citation

If you use Skyborn in your research, please cite it using the following format:

@software{su2025skyborn,
  author = {Su, Qianye},
  title = {Skyborn: Climate Data Analysis Toolkit},
  year = {2025},
  doi = {10.5281/zenodo.18075252},
  url = {https://doi.org/10.5281/zenodo.18075252}
}

Or in text:

Su, Q. (2025). Skyborn: Climate Data Analysis Toolkit. Zenodo. https://doi.org/10.5281/zenodo.18075252

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

skyborn-0.3.18.tar.gz (844.1 kB view details)

Uploaded Source

Built Distributions

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

skyborn-0.3.18-cp314-cp314-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.14Windows x86-64

skyborn-0.3.18-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

skyborn-0.3.18-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

skyborn-0.3.18-cp314-cp314-macosx_15_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

skyborn-0.3.18-cp314-cp314-macosx_14_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

skyborn-0.3.18-cp313-cp313-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.13Windows x86-64

skyborn-0.3.18-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

skyborn-0.3.18-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

skyborn-0.3.18-cp313-cp313-macosx_15_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

skyborn-0.3.18-cp313-cp313-macosx_14_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

skyborn-0.3.18-cp312-cp312-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.12Windows x86-64

skyborn-0.3.18-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

skyborn-0.3.18-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

skyborn-0.3.18-cp312-cp312-macosx_15_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

skyborn-0.3.18-cp312-cp312-macosx_14_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

skyborn-0.3.18-cp311-cp311-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.11Windows x86-64

skyborn-0.3.18-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

skyborn-0.3.18-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

skyborn-0.3.18-cp311-cp311-macosx_15_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

skyborn-0.3.18-cp311-cp311-macosx_14_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

skyborn-0.3.18-cp310-cp310-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.10Windows x86-64

skyborn-0.3.18-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

skyborn-0.3.18-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

skyborn-0.3.18-cp310-cp310-macosx_15_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

skyborn-0.3.18-cp310-cp310-macosx_14_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

skyborn-0.3.18-cp39-cp39-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.9Windows x86-64

skyborn-0.3.18-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

skyborn-0.3.18-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

skyborn-0.3.18-cp39-cp39-macosx_15_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9macOS 15.0+ x86-64

skyborn-0.3.18-cp39-cp39-macosx_14_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

File details

Details for the file skyborn-0.3.18.tar.gz.

File metadata

  • Download URL: skyborn-0.3.18.tar.gz
  • Upload date:
  • Size: 844.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for skyborn-0.3.18.tar.gz
Algorithm Hash digest
SHA256 0d6fc6cda3db7f8d8d3fb0117fb2794dc2e0e07740390f732cae7a5a789e159f
MD5 35c6e3d08170116180c27429a283c9bb
BLAKE2b-256 55412e191e2e07a77982bd982eb4bdff2746de4386a184fb827bd6ea277ea2d2

See more details on using hashes here.

File details

Details for the file skyborn-0.3.18-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: skyborn-0.3.18-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for skyborn-0.3.18-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b6101f2ca9769b88ca0e3c5e1119b96dd75e770bafb56e2cd5ea3fda821dfed5
MD5 87b096f686e3cd5caa9d91c0167ed21f
BLAKE2b-256 e89625f7add1315e50c737de6f0b30c489fc6302454a5dc901be163f2c35ebaa

See more details on using hashes here.

File details

Details for the file skyborn-0.3.18-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for skyborn-0.3.18-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 34dd47a8384ce5d300ae112dd310ee98c7d524a704b5c8b07351b9a678e03fcc
MD5 61fdbfb4212be9308db8e12b84326963
BLAKE2b-256 8959a833e56954361f85e3ebe6d05a763f4cc779a92d6bfb1024a33027237825

See more details on using hashes here.

File details

Details for the file skyborn-0.3.18-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for skyborn-0.3.18-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b83ff534a0ab6c929ca8a5e5a399602d0e1584739e84da07dbd41dec3b19b72b
MD5 273b4e41e586479261116af27139832a
BLAKE2b-256 4103108b1ebc5a9634c977e2c979ff156c5166742d333b28235d85bf74e309d3

See more details on using hashes here.

File details

Details for the file skyborn-0.3.18-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for skyborn-0.3.18-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 79621b6a27f42ec888119a6811d990f4e7c5ee414c72069188d66acb54e1487a
MD5 c4481d4fb8b308330b3552880d220963
BLAKE2b-256 fc058700e551ba71c53a757939e0969b9cbae1f3f6f4cc7710e3021502792144

See more details on using hashes here.

File details

Details for the file skyborn-0.3.18-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for skyborn-0.3.18-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 149ce3b1630e9791669054c59677ca813ae38260212a9545b2267e605b35eba4
MD5 a7fd032a2232e520db2fd4419e728689
BLAKE2b-256 8951986e0578ac1fca83fa3e9bbf7b12f6c35350daf82ec1dcffadbf33e60927

See more details on using hashes here.

File details

Details for the file skyborn-0.3.18-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: skyborn-0.3.18-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for skyborn-0.3.18-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e3530f2a0c9c2066edb78057c1a4142d0819c1c5c3675c634357aa736041d0fe
MD5 ded89c2099f35449b803be8e56fb2f01
BLAKE2b-256 2a50a14c8af7b83d072bf3303fce139d1566ce122d9f9e8fd4a7ca383611ec38

See more details on using hashes here.

File details

Details for the file skyborn-0.3.18-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for skyborn-0.3.18-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1e17ba6f5ca49a701cb340185be42e81dcac97e98912484160301d316f632013
MD5 e9ef27d1f3a12f24e1c44b012d457521
BLAKE2b-256 b8a1de33ab17ec3454a9e2bc517d785f751160dbaf636a0a7a8ea88044c34579

See more details on using hashes here.

File details

Details for the file skyborn-0.3.18-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for skyborn-0.3.18-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 c195c7bf45c3c7d913b520f745d812ed172016b0bc6dc52978649f279b4dcbe8
MD5 7fab72c26fcfa43293d964460d9cbbd6
BLAKE2b-256 695859687bc3bdec9dfe8e1b0e0515c451df8bab9ce74aa0a33c86d9f000d3aa

See more details on using hashes here.

File details

Details for the file skyborn-0.3.18-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for skyborn-0.3.18-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 bbd9fbd42763340954a69fcc53ee17060136ba162be99a15e37322740a96f688
MD5 c37e6d8ec165ac25d404b49c746e5f16
BLAKE2b-256 c1765229dd3ef56f610bffadf5db4dc4c4f744a5a02d7de7095e9d52a578acbb

See more details on using hashes here.

File details

Details for the file skyborn-0.3.18-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for skyborn-0.3.18-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 95e9bebb3832a831dccfc291ecd4b6814bb18a93afb60a5be9007854fa901ddb
MD5 a3274ea647c3e9f0fa6a7e7aac03d6e2
BLAKE2b-256 f899b307c0dc7f063aaef81ba115c61e26ba9ac708a6d1e26e3ccd9bfa90ec45

See more details on using hashes here.

File details

Details for the file skyborn-0.3.18-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: skyborn-0.3.18-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for skyborn-0.3.18-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 03db1ec634696256967dd8bbb8ae84e0bd38d715ce0e67420b88b22e89ee0d77
MD5 52cad35381365c45ade131f9343a8ad2
BLAKE2b-256 98456227d83d2ea38479e1ab7573923852907703da4049de77545c552d5764aa

See more details on using hashes here.

File details

Details for the file skyborn-0.3.18-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for skyborn-0.3.18-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fd290302e8bb5a733d6de52e8fc31b7e6b3f7e5059fff48db150e790bfcb9596
MD5 99f080e40e1c0e1ea973dfcaab4587d7
BLAKE2b-256 412467d7d2154ca3d06c1ad576968281fb3f2d83f28e1d76edb634532cbd3a89

See more details on using hashes here.

File details

Details for the file skyborn-0.3.18-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for skyborn-0.3.18-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 9c5ee1b031a665582697f0e1aa6628eef1da871beb8ca510b6ac6e80b5aad40b
MD5 d6d0c2752b89e3a12d1d60012af5e6ff
BLAKE2b-256 83058a18c6a9ae528489c2a4d2cb3bcd5592efc64802c2a578e17a50fb01b813

See more details on using hashes here.

File details

Details for the file skyborn-0.3.18-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for skyborn-0.3.18-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 c402e143a775a76577864d01e365db0baf3f0bec28210c6912eabbb4f982d0b8
MD5 53ae0e11dfc11dfb614818682d1b2a91
BLAKE2b-256 978de30ed6116584f0364f82c7be9b783d62c0c5c82003b9c5ca3428bc3cb198

See more details on using hashes here.

File details

Details for the file skyborn-0.3.18-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for skyborn-0.3.18-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 503399d20ae075928b6aed423c153a86a0afcfc7a919884e81532e887780497e
MD5 31d4d956c292e97f5e9179986e0d9a25
BLAKE2b-256 5fe924bc73ff231dc84687c8c0c1ea4d473eecc9144d78483709f1c4befd6c25

See more details on using hashes here.

File details

Details for the file skyborn-0.3.18-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: skyborn-0.3.18-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for skyborn-0.3.18-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ac4595051778d679f621d9d6c9436e103a9ace519134007af9eac3d48039dea0
MD5 fd3bb44e6a819055d0d1f88e2ab18105
BLAKE2b-256 f8f60e2c6d6424f8adef2312f29a6eb2bcac52b63091ba85929eef9e5b35aece

See more details on using hashes here.

File details

Details for the file skyborn-0.3.18-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for skyborn-0.3.18-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 723c72fdcfdcfbeac8dc5a235328da1deb54b75faa4cc96ab7c7b5fe3a26ea20
MD5 ac0038ba73ec098403f394c4b0cf06a4
BLAKE2b-256 e81120a57d525e785784e95d11865e82a3e98679404e6f398598ccd861a995c1

See more details on using hashes here.

File details

Details for the file skyborn-0.3.18-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for skyborn-0.3.18-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 c68af718d3d791ee66d6c4b4698f4db5ef82f614c9270d7df56a58c20b9ac7c9
MD5 6af282130e225992bfb3a1fbae02eb67
BLAKE2b-256 3ad8fdc1792df0cff4be449ffe030b188b61f6f6e2012a5ad7d17d9e3918868e

See more details on using hashes here.

File details

Details for the file skyborn-0.3.18-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for skyborn-0.3.18-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 f372d898f5ec392586a95b0b5146e68c1e245f6a2413318758d0130bdc33e1f0
MD5 181d32ed4fa559daa2dd928427b8328f
BLAKE2b-256 49c0dfa24ccb6c63a4b6d2e32f3c8852b14963348ed9c8ba65337a162c18a9c2

See more details on using hashes here.

File details

Details for the file skyborn-0.3.18-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for skyborn-0.3.18-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 8bb628eaf7d695fa3771f5e3310547442e1a6e69e05f2016ef34ca83269ee6e4
MD5 b6d6af7728112741afc2409796701be8
BLAKE2b-256 e084bd4b0cd5b990008d5a8261a33a371f577618b1ce93a6114211bdd1fe06ba

See more details on using hashes here.

File details

Details for the file skyborn-0.3.18-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: skyborn-0.3.18-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for skyborn-0.3.18-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bb56acd45451b1138f04a585fa0f7af1bb384854362a4283c0d3545e1f7d48be
MD5 b963e9789c5892eed4b5b2ebe5b0adc7
BLAKE2b-256 c5df7e9d8f79ac60ca69b0516b68f1f0f72ae119cbfc0be7ac77968030414a5e

See more details on using hashes here.

File details

Details for the file skyborn-0.3.18-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for skyborn-0.3.18-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b952a52fa129737912b3e3f24728c630869c0ba868a80d724608d48490f4b43b
MD5 63f162721b4e68ce8eb1057b85ae14b0
BLAKE2b-256 1ba2432e8b4543c37a33f759120bf7a987e28dd9bb0654d942d302ead94d764e

See more details on using hashes here.

File details

Details for the file skyborn-0.3.18-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for skyborn-0.3.18-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 823e2b8fa9aea855764afae81a73b674aef2b1483342d78f8b92cf3bc250b853
MD5 44b45626975e25bccd0bc0f938fca46f
BLAKE2b-256 7382d7f74405ebbce04d348ebf0d743f1a7842e03c85ca866ea182da541e4c25

See more details on using hashes here.

File details

Details for the file skyborn-0.3.18-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for skyborn-0.3.18-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 f470f544aaac9f4778928f9bddd6d676de368695b6e4fce25757a603e97e063d
MD5 ebcd5338aa3926d558ad2afd571b513c
BLAKE2b-256 6f4d53126dff2eb8c5d58b894076786c396c88b33ff2c3bd53c54dee26d011f5

See more details on using hashes here.

File details

Details for the file skyborn-0.3.18-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for skyborn-0.3.18-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 74312e5a68f91094b6927d2f48fbc536c2ed7535834e73819fcd0ebf8855e7c8
MD5 ad553be1297742871943b6ccc336ee60
BLAKE2b-256 11dd2108f572a7f930669e3668d10e25ad7feb61a6753baaa21a2779e4762bd3

See more details on using hashes here.

File details

Details for the file skyborn-0.3.18-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: skyborn-0.3.18-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for skyborn-0.3.18-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b18c1a7069f369791e15606be8a77aba44abe91dded316da5e1201b4f5fed667
MD5 1a431f7c689f78465566fd617f75608c
BLAKE2b-256 f6c6860c10afecee435048f489a80e0930f7a61c4e31c18348f2f9ea04a9ce0b

See more details on using hashes here.

File details

Details for the file skyborn-0.3.18-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for skyborn-0.3.18-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f590fd7a09df439f5cb1746f11395d3cd5666987103ae89f7ae3316fb2f92a8d
MD5 24237e5c82964c5beef9be211ff57698
BLAKE2b-256 8cb35396217896ba3234e957ebfb7ae3e5a2eaffe36e98b183d8ef0b44da770c

See more details on using hashes here.

File details

Details for the file skyborn-0.3.18-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for skyborn-0.3.18-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 6242f5ad0673fe4b1bf6aebdd6ec4455797cdd6f9f1ac173ba98277dbc743d69
MD5 3380b1591eac226760529b1d2609b25c
BLAKE2b-256 5c26374dbf073818a23eae88de8ef9979d058dfeba2c2f90844e9847a652a3f6

See more details on using hashes here.

File details

Details for the file skyborn-0.3.18-cp39-cp39-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for skyborn-0.3.18-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 d4766af2b3ff662482ce4bdd00d4dd6bc5f83cf8cadf4c4ca38480be462a479e
MD5 7673d975ab8f6b6a49f0970f40e7d3fe
BLAKE2b-256 5366e74c05022993343e5f4fe4c807ba49186f1e35dfcc73c600c4bf8860d361

See more details on using hashes here.

File details

Details for the file skyborn-0.3.18-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for skyborn-0.3.18-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 6e14b00f292b210d2aa9f38187e684906bbb37b02bd529e71b995b85225839c0
MD5 ede017ba6b27449fa8861e42f5f95bb3
BLAKE2b-256 b0c20f1766e1eedaff4a0995e927c840d881c982f588e6fc5d1d04fb529667f5

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