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:

  • About 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 is effectively 1.0 against the reference implementation
  • RMSE is now on the order of 1e-4 for the core PI outputs, with very small overall error
  • Log-decomposition diagnostics also remain tightly matched to the updated tcpyPI results

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.4.1.tar.gz (559.8 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.4.1-cp314-cp314-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.14Windows x86-64

skyborn-0.4.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.7 MB view details)

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

skyborn-0.4.1-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.4.1-cp314-cp314-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

skyborn-0.4.1-cp314-cp314-macosx_14_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

skyborn-0.4.1-cp313-cp313-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.13Windows x86-64

skyborn-0.4.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.7 MB view details)

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

skyborn-0.4.1-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.4.1-cp313-cp313-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

skyborn-0.4.1-cp313-cp313-macosx_14_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

skyborn-0.4.1-cp312-cp312-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.12Windows x86-64

skyborn-0.4.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.7 MB view details)

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

skyborn-0.4.1-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.4.1-cp312-cp312-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

skyborn-0.4.1-cp312-cp312-macosx_14_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

skyborn-0.4.1-cp311-cp311-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.11Windows x86-64

skyborn-0.4.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.7 MB view details)

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

skyborn-0.4.1-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.4.1-cp311-cp311-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

skyborn-0.4.1-cp311-cp311-macosx_14_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

skyborn-0.4.1-cp310-cp310-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.10Windows x86-64

skyborn-0.4.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.7 MB view details)

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

skyborn-0.4.1-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.4.1-cp310-cp310-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

skyborn-0.4.1-cp310-cp310-macosx_14_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

skyborn-0.4.1-cp39-cp39-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.9Windows x86-64

skyborn-0.4.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.7 MB view details)

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

skyborn-0.4.1-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.4.1-cp39-cp39-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.9macOS 15.0+ x86-64

skyborn-0.4.1-cp39-cp39-macosx_14_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for skyborn-0.4.1.tar.gz
Algorithm Hash digest
SHA256 0239f0ff3e8ce5e7cfa6bbd86d27d0dd1addb752f71903dd1bbe988668317c74
MD5 78c168e18fb8bce9ac89e1e48f6348c7
BLAKE2b-256 0e252149ca2b01bbbe4dd1fec307634c130536f5050638a22f6eacc03189e890

See more details on using hashes here.

File details

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

File metadata

  • Download URL: skyborn-0.4.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 3.9 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.4.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b09da0717d860a759d75bce9a57259ee967780a6555aa5b92582db67f2160954
MD5 a1e02c0479332d3f2f1225bca8c22e0a
BLAKE2b-256 d0ceb63c54dbdd0ca1666034ab72091edb61ce5fc7596571728e51f5e7ca08c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a892763a2ad3f75403f6745397d49690c0a0b582b0489f82fd49cf613124ea42
MD5 b0518d060700dd8f4911e79544344254
BLAKE2b-256 bb3fc28bd02a0db67294f56de086b541ae2ded6214f6a647eefa2ba916309f4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 6b54708702b8e3ff527e9ec9c08020deab36d6eae09e78e82e726520d4bb6d58
MD5 d98f58c89438e2d01db0e8aad2867ffa
BLAKE2b-256 ccde273fe617649fba733af0b2506b6be4f2cdc46672b57f76f1fe1828a6b116

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.1-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 1992155f98caea202f5dec8099f2c91cb423b479e2319f1a4fb2f8e776034f48
MD5 4fae0b1bc5958741e109a94db279168d
BLAKE2b-256 ba5da81d9aea32a62a211670ec118a26d32e03bef5ce394b114db1a6e1191cdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.1-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 9e01115692b4a0c5867d0492d35de8a54481cb30f9b0d4bafa387dbe575b5614
MD5 69502283beaec9395fd679ecb4b77d3f
BLAKE2b-256 52981df5b1e93d34cad2d3784640b986d0951486abeb69731bb1d38215cccc58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: skyborn-0.4.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.9 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.4.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5c734e89cbe344746dba2eced4e8d20f4badde8fd4560b28003dca0a9d16227d
MD5 0a712c87c8a068e042b0d82e2931d1fa
BLAKE2b-256 4c4899260911b3a292d4feb631e556044907e0def5f79021df7ee900775e0a02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2024c466b20e4c49be9dd5483ab5f369fece5ba962bab95467d6a4867a4ccb03
MD5 11c7fd3a2118145b8ae09465d1fdd4c5
BLAKE2b-256 46c68e0bd607221fb6c0db6e04caafdfcf7c4ea5b67a4a852336531fbbbede3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 67ba32eab99ecfdb773e1a5580af818ce65f8a54d0840d18f942249f76a9fc08
MD5 98f3aa5286a19cf2af9b3b2594f02506
BLAKE2b-256 0ae4cb56925da6ac48d716cd9659475a806cca85ffde7ab36d514229796d8948

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.1-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 06d45aecffb27ddfe95f4e1ae4ba459c6d8216f92d8247829b124de9aac02fb6
MD5 5da323987a7e2d89f02838c0d24a6e4b
BLAKE2b-256 74c1c00c4e945a110ade3d97e90d03fcef58236b9426b7606868b0c44c7137f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.1-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 69cb1ddedcde432e05309d41c16ffd8b311b3a678f828216d43eb7ef56d65edf
MD5 91223cd15b59bcb4d6148006b0960ee2
BLAKE2b-256 ad2dab69e39649d7ab98eff7454eb0ce5abfc506f6dc99de4e99ee8ac34abfa6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: skyborn-0.4.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.9 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.4.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6dff87224c2ce3b87d11b96f109d2f5365c3c6de61bde7efcf2f6a585911596e
MD5 cfbb8ba407c5ed323c477022b554cbf0
BLAKE2b-256 e6514564f2a666676f8a1c546fbede3162b25ba90ae233d09b2bf9f65ed30ec8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ad56d5c70d8c9e51f276f1d30ee2903c399e283199e971b0d9452ce80d39192f
MD5 931fb44dca64b20b942c637aad51b7dc
BLAKE2b-256 c04e1f380c81a78270a5b7485e6583e780e61b080ff1c2766ac913a09827cd7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 5c56f46a024f0ae52d68c2f9ddeaee4a73979a4186aabfba627b2954f758f6a4
MD5 fd1f9c462435790d5e786958fdeb7a73
BLAKE2b-256 b64d096c041c8f567d4b76f758bc65379224e58957b28d66b49ee35edcb3f574

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.1-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 e086d88e2557b00d05cc731115d2818d038bec5c4367c59aa9aa7e8f4c012a93
MD5 87b0d2ca034fe4240b38326e63d0c848
BLAKE2b-256 81cc9000c75d54efeacbcc5ebd72623b050001746b6b6eb9211aa1f1ba5eaa0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.1-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 2bf1e7ff20c85bbe866846ce318de934e59276e5675218f1ae5bc7761bff2bcd
MD5 b9c5d4e61bffcc08601f9e267dbc1ee4
BLAKE2b-256 5e8e868fb92215acb49c8636925da39df05965ced62ec3229e9f8bfececb6e23

See more details on using hashes here.

File details

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

File metadata

  • Download URL: skyborn-0.4.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.9 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.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 346f7ef5477391827771ef26c5fd68fde08d53edfacdecb0d122d12e579fbde4
MD5 81e4f05150e797c5a98fd04ef05ffe91
BLAKE2b-256 06ddee856a767d69b09e8ff58e603d0b67e56396b3b0880284952d3ab3ae5c20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ab7fb04f9bc2a2db3505fa40ed7837d5e372903af2e98c25cfb4b976fcb44a4d
MD5 9c5017d103a25199b6c795362af31b98
BLAKE2b-256 0b9e653b69973e8593c7f21bdd18bacca1b7796702c205711b843c1381b69ad6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 10b332449eba9ef98e300418d59722cb2d55d6e830cb801e2c418c824d661a56
MD5 b76106fe940a4a68977c275ec8cea87b
BLAKE2b-256 22aa1b809bb07dec40ec7a090045267289c7fc5fa22e0fed326d239f0f0f40fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.1-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 de7a3d3dfe578d52473a7f4b4b1629e0f139abb615b6397438897df8a404089d
MD5 8cec91d3c5c2b3c0da503980a68e6c27
BLAKE2b-256 87e431fbf65affde9c60b93378cf8619b5a3f80b513e9b529ba16a42c9727a5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.1-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 a3c0c0b51944f872d4f63f58558497204fbf1233a2c9c0be7fa3941f3e2cd30d
MD5 7f82676c25a3a2951c5e60f6dfdbe177
BLAKE2b-256 4db99b87842ba46d5b25459b0c5a4df63e2d5c32f93239d5e69196e47877e599

See more details on using hashes here.

File details

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

File metadata

  • Download URL: skyborn-0.4.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.9 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.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b782ca987d776864caa56566f66b3edc57efd33c26c10332c9aa84d41d242223
MD5 5f2e02c3a8d6c225746952a7174be8dd
BLAKE2b-256 9ec509b4cbaab34883c234c3cc520523714dfb53e51cdd93a8d4b884ef574dde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8be835de896b050847cdcc2b98a1f262bc2a03418e26bbf11b4b63bf13635b17
MD5 cc856a55ba471d5d1e73380cd91ec3f0
BLAKE2b-256 c9b80f7c2d85b3f9b27c10d80db922e271bc812f9b4ae4e42fa51adede6b2776

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 481256746eeb71b69d65a4506000a74adde81370c36d65ea205ec8e2690f4a0a
MD5 6ca5c6b6576b18b1479c7a8ad30ee549
BLAKE2b-256 4841aa5665155a32a3df7c03a76c88cc5da82e83a049f02581d91791c2527bc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.1-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 eb596ad4e2733406882dadda3ba1143aec58ce44e00bf35a3ec41f0db65d69d2
MD5 0f492ae8a923a35b23d4132f9c75ec66
BLAKE2b-256 2732a0bc77adc44bd1c0b33f7f2a35203137feeaf5da7ad07f882fe6233f0305

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.1-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 3d584b4c6d3be3b1329b5e6bc0ed38a1fb9b4b78337e6d746f89f61926c90e02
MD5 0e59c4da7bc038bd0aca3f53d30e464f
BLAKE2b-256 9233e1313eebdbbe630dd0bab2c233664b5b43ad45385527eba5bcec5a236947

See more details on using hashes here.

File details

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

File metadata

  • Download URL: skyborn-0.4.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.9 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.4.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d7547af77ead44d7eb0cdcff2300b2cc2a529150a9d3902955aaae935bd89fa6
MD5 dbbdb668b15cd55f9676347ab7f63673
BLAKE2b-256 1ab233ac7d274dc2436d97d5492b0bbe2cd7bdca9dc3ce0551cad7e2a112992f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 68e8da1dd510975447fc4e656e11e73f2be2ad55c527c243b2a1a855ddd0d373
MD5 3de6afdde5b80a8bda06788201c7bf7a
BLAKE2b-256 5c86bb4aa6a89f0d2dd390021cc73cc0a10a14047ef6063af0ecfa08cf89d667

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b3545a7d7b6f2d3851e8d8211763ab60b57f3c6a1acfe58b8683c1a94ed4ffca
MD5 b00b588b9b08da8d59f1f7b98e4ab88e
BLAKE2b-256 1e7d166d8df2b0808675d68c3ac925e7ea4b21bc5a4c50517a5dca2a61a77bf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.1-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 70bfd93ec35f9e01131b551e307295412c750d9b4c1cc9ff708352103edc8bb1
MD5 f4ea620f324ca0fdc25a849d960b9b51
BLAKE2b-256 2b14eaff9dc05fdb6d4afc3203eebc1c81add88a8bee6121ae6727d6ea97d6d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.1-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 a8f1746e5e368cb97943081d74ce0937edf9928fd3125051dfb45a4dd39bb3a8
MD5 8aa787d0b74c70a8b022b54f1632d9df
BLAKE2b-256 928304396ce34b5d45fe8e24573c22ebd87ac9cd324245e257756f4e62b04086

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