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.2.tar.gz (582.2 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.2-cp314-cp314-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.14Windows x86-64

skyborn-0.4.2-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.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

skyborn-0.4.2-cp314-cp314-macosx_15_0_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

skyborn-0.4.2-cp314-cp314-macosx_15_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

skyborn-0.4.2-cp313-cp313-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.13Windows x86-64

skyborn-0.4.2-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.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

skyborn-0.4.2-cp313-cp313-macosx_15_0_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

skyborn-0.4.2-cp313-cp313-macosx_15_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

skyborn-0.4.2-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.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

skyborn-0.4.2-cp312-cp312-macosx_15_0_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

skyborn-0.4.2-cp312-cp312-macosx_15_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

skyborn-0.4.2-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.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

skyborn-0.4.2-cp311-cp311-macosx_15_0_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

skyborn-0.4.2-cp311-cp311-macosx_15_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

skyborn-0.4.2-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.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

skyborn-0.4.2-cp310-cp310-macosx_15_0_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

skyborn-0.4.2-cp310-cp310-macosx_15_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

skyborn-0.4.2-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.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

skyborn-0.4.2-cp39-cp39-macosx_15_0_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.9macOS 15.0+ x86-64

skyborn-0.4.2-cp39-cp39-macosx_15_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.9macOS 15.0+ ARM64

File details

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

File metadata

  • Download URL: skyborn-0.4.2.tar.gz
  • Upload date:
  • Size: 582.2 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.2.tar.gz
Algorithm Hash digest
SHA256 5476347cd6dfcfeb5e53948b0e74f61120a4c13c0b1b9bc6dd9478bd2604876c
MD5 301d3ae27b2b3e429329e61935e4069c
BLAKE2b-256 0e0fe1e6e952b7916b9897b63ac53894b7a5d1d8616be6884d48bee7103cd8c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: skyborn-0.4.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 4.0 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 12edf7add9d4e424f73edd609c7292065568e4300ec2186bfdd091cbc3cea4c7
MD5 aba7a1cb519305797285b2e912642b79
BLAKE2b-256 5283fbb44fd413ea8b735c07c335d6f0e3f430e61fd9d062186f30d4b70c68b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 72a870383ef471b8c773c1f2d10b4c2ab9b2fa873245ffaaa0f86905113fe735
MD5 545b6aba96f8108f1f699bc2c8ef8223
BLAKE2b-256 d378417531e464cf9507b2092da31fb86dde4019a25390b204e0d67953ccb444

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 edfc47802adf6ab3b94dd3e0738163282964e0e984d54a60043f2adffa773aac
MD5 c1db10c9900053619d4e111bcdb9bdbe
BLAKE2b-256 fb5d36b9fcbde447ebc22fb6d2705ce80065c4936bd0b5b1ab4c99ff044377f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.2-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 1f6f8b30cda8fd5d56f8f99719f4cfeb1e42cd91f4d4d319b2057d8192eb64f0
MD5 55d68db8ca6f19c2bfbfc9073be63076
BLAKE2b-256 9d1f7df6b9db9fbb7c37477be03ac342f58c7d3e9579a42b197bb08727aa3f79

See more details on using hashes here.

File details

Details for the file skyborn-0.4.2-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for skyborn-0.4.2-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 7a73b13fab6f43e420ba9765a5d779e1ffb30bec8d421e362125300a636df5a6
MD5 84837851082af5c12eee42373c5c4a0e
BLAKE2b-256 fedd46ad90cd99ec64ea1a86ba5ab4a03021b1aeef93dde88e8dc132649a64e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: skyborn-0.4.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 4.0 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f23bdf23b0416b85be551cafa33e8d8420b3862cbbb81d07a0d3b7b0fb606aef
MD5 bf4cb4e345a6cb6e361fa731038d28db
BLAKE2b-256 17589bf4869c543391fd4b0febf99303f418bb5d61ea695ac8b54be2c7debc8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c0d3ff8dfe5a744973f6a44cd882594055c1ed06d100e0f3cbf30f6021e540b6
MD5 6a9330677e0e2dc4fa46b4b9cb904b8a
BLAKE2b-256 3c2cc41a1c5e252c61febe1f138a73875a57fa6d916aa98b72e223bfddc068b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 44b21d7899fbc65328d8006ecd4d8f04eb901514bf959bc469b91f1fb0650965
MD5 05741fa65cdffa730feda05e18753ac8
BLAKE2b-256 eb17bc7b70a5d52252e6b81a44c63bb727f7641424aca33e54c33885e98c1ecc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.2-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 c75223ac3c59e168b94e92024c7109fba18bd7284c9c288e2d3e6ecd0b3817c6
MD5 1743a88f28a57edcc356b76cc4de4c47
BLAKE2b-256 62aad480bcc5535954e6a4bbcd5dd0523783998a7d130473504465559c62b973

See more details on using hashes here.

File details

Details for the file skyborn-0.4.2-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for skyborn-0.4.2-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 89d57ee1816f4df0a7b54846e416e15801c25739fb779327393fa4ffdc16abe7
MD5 6423c50614e90989f37e3167f4d9756e
BLAKE2b-256 ea05b365faf5cb4b3ca163cdc8b5b545a29c7ec4913c37bcca5b596927679669

See more details on using hashes here.

File details

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

File metadata

  • Download URL: skyborn-0.4.2-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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 288efc92bde24f7836dd41d67595262c045d3d032410ebcad9709d7cf5e721d9
MD5 fc2dc5cec530fcd89c02df379e4a5bbd
BLAKE2b-256 7002f5cf512f8f96b5f5653350b2bd0912ac1e1884bbbb2ba89d11623ac9ed04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 51679e894d196b006a08691918dce85383471064b5063d794bfa675304c811a2
MD5 5384953883f3ca4e9ea0f4753d677182
BLAKE2b-256 8c561aea28414f6c1bc1abfd882db4b1dc9c30985c667f0d36f31a4a7e6985ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 dc45acb6ede809eb89b0b0dbee992c7ff907242afbef4e64f0ec5bef59cfd441
MD5 400de72b1c8afd4c342e1c36074cf10d
BLAKE2b-256 353596780c22ad98fd70661e75bab5989ecf85fa2184900a0ac01c06c5b21b98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.2-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 5d480f8145c07d23cb9ae81fc9082011c941275828f45beaf6dc71ba7da4ebb3
MD5 efbbbb8cc666662fb4318f7461ef4141
BLAKE2b-256 73fc819f3e6a85eb0df6c22977c706bc8224c0b1167526021b8ba44f4c5b002a

See more details on using hashes here.

File details

Details for the file skyborn-0.4.2-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for skyborn-0.4.2-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 11fc18239c123a121eb870e44e84c3273b8ce792fa7c59219aed96eb10da7cbf
MD5 f26e39346163fbeb03a106545769971f
BLAKE2b-256 ca4a29b9435c025380d78fbc8a65d83c8c36969f0944f6764516e867fa16fec1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: skyborn-0.4.2-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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ba313ff09f522749337b5e605e4a79aa5ec31cdacaca9f039736ee889a4bf50e
MD5 cd334a8542501a3e2323981e9e98c4f3
BLAKE2b-256 d98108f108c57e13960116177329ebe2dd330d0580844d65bf0796ff432e8737

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ded73b8ff4896fc48f1ad45a793527166a14931ee0ee01911f1595c2e791a308
MD5 c3fa938fbf154c3bfa9e581493ce9c3a
BLAKE2b-256 2cea934bff703623f338a744dd1890ce1f191cd35e521378ea78d04cde71f60f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ad06cb90a0fdc5a4eeef4540e169fb59d21eb18db8e991c0afb0d0bae712950b
MD5 6d9a11fbd20aa1b8802ab9ded35f306f
BLAKE2b-256 d5562cb4a662eae2b8def59213625dc9fff42eaa9929b20111abdf769eddcdbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.2-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 5305a0f89323f09963a21e8e878a135823d1e3fd07c4eeae4cc3080d0d2b43b9
MD5 3ac49a55c48d62c5eb65cc2791fc686b
BLAKE2b-256 0cfa85f2971fc9ad6c0ba351a94223d6899955b171d970c8c307224556397254

See more details on using hashes here.

File details

Details for the file skyborn-0.4.2-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for skyborn-0.4.2-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 c9bf250818e190be7e7d130834c50c9f2894f554117127b3e89837f139a20633
MD5 ad5e12340cfdd8dce9648ab0ca55b1dd
BLAKE2b-256 f7b40911dffaa161fef7db0af0fda55db6d8dd36099f92d0aa512a54cde32fef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: skyborn-0.4.2-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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 47dc50842df5d4cfaadbdd16cfe9beb533651c1689c0eed5b632b0b8f59ac037
MD5 25d1966456ea44a30b7411ce711b638e
BLAKE2b-256 df6e47a01be91168a4940543c3d416ffa7c484b84a875e7eb3556c3fa6acf7c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 48425b1c1a06519f9c58479f2b34956d871ca9e7d6fca0e66b6125da47a30deb
MD5 bb2a07f32b880f831c50a73dfe0a719a
BLAKE2b-256 d59fed2b94f43efc2814ee32523e85b9b908b31856a7e5b0c69e909a96fdadff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 810e730941e92e4b061492e1d58dedd3561877d4fbfca31955a83fb661960374
MD5 6d6becc317ae07d7e2fed6998f748190
BLAKE2b-256 048feb0e2f65f2ba819b9ce7b628530f7ae658bec0bf4423d8f15c2edb0cf857

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.2-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 8fed79485b98374ce27699b4cad597f1aff0954be77f3976f6a38529d7391f6d
MD5 84bf2b495bbfeb57c5aa5d88e12f7c07
BLAKE2b-256 8508119501583e421c03c377bd284d6af61de33bc5f0912522fa1eebd0d01c5c

See more details on using hashes here.

File details

Details for the file skyborn-0.4.2-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for skyborn-0.4.2-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 6cd26621e585c15930dd3cd1cd13c16d8dc3d77fed5fdfbffe4cc59398ce1eaa
MD5 19cdce3ce09bad02b71b1aa5a056c026
BLAKE2b-256 f04a939b7703cd669110b48a85c0fde685d34042ef16d73a9183cde260fb422a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: skyborn-0.4.2-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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b51ddb3833f69328289c28292dd37b7a3cc817233aebea4925d07049908ec539
MD5 8e5306174c541d38e428e5248378a28b
BLAKE2b-256 a9db37c0542ccd29e2dfbefd915495e27f2f6d9feb0fd2345bc3ca75ef364183

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 32b10695b34078dd2281af28fcb9bb0463fc94f9ca5b7f16b7692f1db42d175a
MD5 12b5ee2efab6fe7b056ba221a47b81c0
BLAKE2b-256 ca31b11935e6eda5afeae9da38b5e7bcbea09ef8e083a0441f348aa6e98d1ab9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ebef556c242bc514ff7b6af94bbfeaafc09a5c1a18e1b9c2504d6ea0830eda42
MD5 8b0ac5c81a7cc2e9f497aa23cb4d8915
BLAKE2b-256 a7367f6521a2889b8769fb5b13bfdecd9a27876b440dcbe4e29e616ea04353bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.2-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 2df96771e093a3f0472dde8c6bee3daec6dc31b736776750ed184dad7aa26ed3
MD5 dc331e304d7bb3216b03a6a4e6d0daf2
BLAKE2b-256 338992c194bcb1a89eb3764b260f66ab4bad8cbaacdb805c17b24e857df5777e

See more details on using hashes here.

File details

Details for the file skyborn-0.4.2-cp39-cp39-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for skyborn-0.4.2-cp39-cp39-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 d2dd5dde6fe1369d9b2dc8366a9d862958016f83f8f717dec146304d6b2987f5
MD5 cbe05002b5e410392ce73254dbb44c87
BLAKE2b-256 e94dfbb82294dde21eb35172af94813d3424d916322c263e4e0dc0d847bc018a

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