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
  • Mann-Kendall Trend Analysis: Robust non-parametric trend testing for both single time series and multidimensional climate fields

    • Supports multiple Mann-Kendall test families including original, Yue-Wang, Hamed-Rao, seasonal, correlated seasonal, grouped multivariate, regional, correlated multivariate, and partial Mann-Kendall workflows
    • Direct multidimensional support for arrays such as (time, lat, lon), (time, level, lat, lon), and xarray-based labeled data
    • Batch-oriented compiled kernels make gridded workloads much faster than looping over one series at a time in pure Python
  • 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 extends Mann-Kendall analysis from one-dimensional time series to multidimensional NumPy and xarray workflows, making it suitable for large gridded climate-analysis tasks as well as standard single-series trend tests.

🌍 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.21.tar.gz (6.4 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.21-cp314-cp314-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.14Windows x86-64

skyborn-0.3.21-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.3 MB view details)

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

skyborn-0.3.21-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

skyborn-0.3.21-cp314-cp314-macosx_15_0_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

skyborn-0.3.21-cp314-cp314-macosx_14_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

skyborn-0.3.21-cp313-cp313-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.13Windows x86-64

skyborn-0.3.21-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.3 MB view details)

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

skyborn-0.3.21-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

skyborn-0.3.21-cp313-cp313-macosx_15_0_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

skyborn-0.3.21-cp313-cp313-macosx_14_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

skyborn-0.3.21-cp312-cp312-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.12Windows x86-64

skyborn-0.3.21-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.3 MB view details)

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

skyborn-0.3.21-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

skyborn-0.3.21-cp312-cp312-macosx_15_0_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

skyborn-0.3.21-cp312-cp312-macosx_14_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

skyborn-0.3.21-cp311-cp311-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.11Windows x86-64

skyborn-0.3.21-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.3 MB view details)

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

skyborn-0.3.21-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

skyborn-0.3.21-cp311-cp311-macosx_15_0_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

skyborn-0.3.21-cp311-cp311-macosx_14_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

skyborn-0.3.21-cp310-cp310-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.10Windows x86-64

skyborn-0.3.21-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.2 MB view details)

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

skyborn-0.3.21-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

skyborn-0.3.21-cp310-cp310-macosx_15_0_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

skyborn-0.3.21-cp310-cp310-macosx_14_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

skyborn-0.3.21-cp39-cp39-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.9Windows x86-64

skyborn-0.3.21-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.2 MB view details)

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

skyborn-0.3.21-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

skyborn-0.3.21-cp39-cp39-macosx_15_0_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.9macOS 15.0+ x86-64

skyborn-0.3.21-cp39-cp39-macosx_14_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for skyborn-0.3.21.tar.gz
Algorithm Hash digest
SHA256 3387ea2ac7856df49bfd1e3ac6fe55f79b28499335600b42da715e6c04504873
MD5 b09412e02d2f707b1decffeb94a33478
BLAKE2b-256 8a33aaf01c90298694b4b243a60a63c3c1bc65123ab8ae2a01d62779ad5018a3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for skyborn-0.3.21-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 11b0564fc500bc74b48bc9ec0c585c50b28dbd1dcd6ce35c23c0fe965bc571b7
MD5 74662764f2cacd3d7e275004068623ff
BLAKE2b-256 a4dbad2f2788e1e3e647b9c7bd4377bebd6a41c339d4128f6c7bebba783842c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.21-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2d88d3ccae315da4bf15a9c71c0e8d63b4757b1ba076d3a0c2a26ec129bc3a30
MD5 5ef12365fb6b975439829d775f1af6d2
BLAKE2b-256 4e811d5e9baf71bf46eec6ed95cdffbc2cf988b18bce1aa095a9998469062aa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.21-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 d1a6024975f0d7703a6dbfb2cc20c3d50ee1a74ecf666e83414581a120ccb6ad
MD5 d651266068bcf61c053b888f95e495a1
BLAKE2b-256 2a349d224583f2c9097a5e5e8b580ba8e2b22f4c4e9d50de1997f4947317c5ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.21-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 e7a31e6f21960e4ccdd806b8fa926473b0ccc011cffc95ad205364a6e48db64a
MD5 971bef6fa7888022f6dfb3ec51ea873c
BLAKE2b-256 058c934b112d638533046b34c84d0bf18f74888af3a8fe419cb134a83a44ee4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.21-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 bf83c3153085fe452d2b766dacce716eeccfeda49f620bf44c7c2477dc7964df
MD5 5619ea1a42e672d4a078501951030a4c
BLAKE2b-256 7f1180f54519a00d4d399427bf2f2e7f3e56156d9a0424bc7027ea0aea45558e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for skyborn-0.3.21-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b4478427cb59ceb087d2b8001e921e12d5700f82301ae10e609d2504cbb41fe7
MD5 3f15a0e34096970b0a6d73cf8a304df5
BLAKE2b-256 e7f98931573ee48e9d87fc4a3d924a62b017eb546ef471a7f65cd33175998d6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.21-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 466d77d32ed52259a720520d1e279875536fd4aa38ea234586528eaf70fe033d
MD5 ba66c62476d447aa65babdc084846757
BLAKE2b-256 d055af64820d366df82e21d17fc24cf72ec8ca059f527ccc500154b9af8af67b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.21-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 0fd2da96a82a0816ac71332cd4478eb544103055e3c58a47358260ea18994faf
MD5 60352d41ad03c58addd7391c5fd494a6
BLAKE2b-256 04170fcfac81e53d0f439146b3b0ce37e80e3180b2379e94b2ed45aefc7d6100

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.21-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 3339a6560b8cde37101d3e2a0fe50bf40b00510aeb963b67a6843f13f8ee7da9
MD5 a6dc1ea65282d51e1cd263f25852584e
BLAKE2b-256 725197eba651ae9669fea35bf4cbd5c05616daa78a47b369c0af72ce039fd2fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.21-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 25119524048eefdda5b492e66098de7f26aeca44e0c8612744fb7eb2f4dbb029
MD5 347908b09ac0e8431f16a86dc6e881b8
BLAKE2b-256 11a32b079feed118e0dbd9441a85c2f0cf2917a0271e101d6be0020398f515e0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for skyborn-0.3.21-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b419e60c992ac6279434ca2b120c67158a4d0660b5d0321c15d2d468d501ab53
MD5 aa8ade8f9ed34f6ef710d8f1205372b9
BLAKE2b-256 d1eb90a973a4711a8672e5309048ca3d94618fa287ca9407dda9e6705de50283

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.21-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bdc05264e929a9dd50fa2fe215c59cb6f552ef997b86c0c1dac2e97b52ea8f6a
MD5 e0ea5602ff621866cd10eb83cb0d5560
BLAKE2b-256 f5339c6b4a0ac4b9ab53b3c983d1db19bec57c49bbaa999e8bec0dbc5677aac0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.21-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 822d949c04045beb795c6f459970dc17e006e718dfcf382f3c30f332497dc6c9
MD5 8197ca27f3a635af86193262837dca64
BLAKE2b-256 dde705eac56d612475b24a5b7544f46aafc2f07347120444eb96f20f718a82c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.21-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 520e6f6b2892537f856e205d020c6881908c21a2ab3475f2d125a437d1a87f70
MD5 94fdd57a65f56ab75d84b17d86764700
BLAKE2b-256 a4fde232eedc83b5d46bfd62e25ae7cb07a42e632e6cba02cb05740754c43a8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.21-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 ba66454698e7664a28c4ee6c952f152f755b7d161dd2d2a649a11fb625ff3e75
MD5 6d27fc31af414d59442fcc2daad972b9
BLAKE2b-256 7a5238c72a290a42c6d0cefcb11354fee353ba471b8c4170129417ca90b1fd3e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for skyborn-0.3.21-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ca81c91809b45eaedbc34e0016653d4ec07532a99d4cc1b61d1d5ced0e1a796d
MD5 a2a4c1b9458a318941d3a1980c872e19
BLAKE2b-256 b2315122e10e3d7ffdbd407fefedb22409162a399b0b9b10031dc2fa2807a47e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.21-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 608903835cff8b35bc420a5e6d6f696431ab783483130ac8676341b7482887cc
MD5 b41bdd103276bc119946d9fa0825f376
BLAKE2b-256 4aec075d9e99df5ce9bff6710ae99ffee2326c82e6fa9a9b325db723e6558ee4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.21-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e655bb570da899dc61a5cbdfcc4eec73004e88e5792f5172296f53ffb6c4b757
MD5 d70fc29588a3a434dc72d1f566309bf4
BLAKE2b-256 7882e809e6cc25f15781eae9a32555d4c99035f3d38b6a9ffe9bfd11bc193fa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.21-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 dabd96d230cca6601bdf48cb7345ef9e0212562d2e4cc820298dea00ff2c4c86
MD5 b83f5ceaacad1f34d363100a3c6b071e
BLAKE2b-256 9538191c6d9f33b4362bd503b5d5a7b3359c65d1a824bc359caa4ef8e323a2af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.21-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 fb95576f0df1007faad2466e7da181b3d7f93259d236fdec14550b71faf6eb4c
MD5 4d2e2dd74431fd84866f964cf297cda5
BLAKE2b-256 5319695a645e9f7cdaeab68db98aab2adac43cf91a8486d842be7df2420c5628

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for skyborn-0.3.21-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c03e877eb517de21f8c6610bd4e0e991005ec94c45365ef1711ec896454c32eb
MD5 0aee17a476bca11097cd77d6d5f20a0a
BLAKE2b-256 342d552d7f550a24dd3eedff696304912dbf1da7b8964cb1a12113c88631c715

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.21-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c62c466f0d89940a6b90299a5bd8cb8d2a3404a384dd2c4a92b8f6572bab3faa
MD5 9863e2a85a8c60109c539db864bc0f02
BLAKE2b-256 863d054f022e6eb09b83fb90958708b42f3e4b358824e7047be853b319a07e98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.21-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 484e7effd4b14d5d53389d30abe68a50c78daee8c51847ff26f6e46c262cf1e7
MD5 408f4de0de332bd2951dc1cc807b8a9f
BLAKE2b-256 4231c2b2a054c309425abe27bf36daca4526a95bf4c5ad6e889f961cf1805d34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.21-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 3d649d79f9d8f8a976629e4f2d3fc632d5425de89476eaba05fd2edc2c464306
MD5 50bf322b2c8a85704a81865bcc32903f
BLAKE2b-256 ed9ce71dba6e75405c4b41dcdab87873b0367286bda141aae154158b77c2b869

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.21-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 08bccc71fc30a6a16e4ffb9e9b99aada6ae38bdfce497a2701b585748d99d478
MD5 74b1ca1c4c7b1a69d4893a61ff158cb2
BLAKE2b-256 408dc1bfe142dbc15c73e33a6b69facc5096b0274e76e36bba00d597ca54c6ea

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for skyborn-0.3.21-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3f21b38d7e6aefcea357f916e445de4b481d5c84ca7b6a3b9d5a11992af22323
MD5 2d1aedddc32deb09e8b5fce3e75447e7
BLAKE2b-256 778d219063abad643daf68ae5015161e506f2f6492659e3dbf9a80da10bc93a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.21-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 feeb39896413060bc03a092433c46bbe6687013302e864794f0b70bc4a016b1d
MD5 51d50d2ad9684cc9690458957ba81bd9
BLAKE2b-256 353eee864886376a68427cda09b007001180110e16c46408d7bcf32556fbfb19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.21-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 55d67228f2c977ecd32f79467e33c2783c4a29e66594b7dc3fcba37ef7087407
MD5 71ebcf2897f91aa03913d28bf6148350
BLAKE2b-256 486656e83acd304a3e8f0e57897bae73c29c8da98c9fda874d04f39b52150aa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.21-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 db00ddd2de40e98e6db9b5d409e037db9e78826300b0e3b11544d8f40244bf28
MD5 9bb7c8bc0885becd20ee705bbf04d348
BLAKE2b-256 b1a27a0f3f1f4c52e268936911860e1c10e3a74e5ee8cf3d4bd5d372e9241301

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.21-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 abfce158a28246c45d3d08622e6d9831a4c9e5e2085186f4910b071753731f79
MD5 f17d704c7b4e2bbbfeb934fda9f5c2d5
BLAKE2b-256 f5653267c4fb3054a1bbcc543c1c17b430e828666412976eaf79b43bb114c701

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