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

Uploaded CPython 3.14Windows x86-64

skyborn-0.3.20-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.20-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.20-cp314-cp314-macosx_15_0_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

skyborn-0.3.20-cp314-cp314-macosx_14_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

skyborn-0.3.20-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.20-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.20-cp313-cp313-macosx_15_0_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 14.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

skyborn-0.3.20-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.20-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.20-cp312-cp312-macosx_15_0_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 14.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

skyborn-0.3.20-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.20-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.20-cp311-cp311-macosx_15_0_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

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

Uploaded CPython 3.11macOS 14.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

skyborn-0.3.20-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.20-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.20-cp310-cp310-macosx_15_0_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

skyborn-0.3.20-cp310-cp310-macosx_14_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

skyborn-0.3.20-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.20-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.20-cp39-cp39-macosx_15_0_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.9macOS 15.0+ x86-64

skyborn-0.3.20-cp39-cp39-macosx_14_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

File details

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

File metadata

  • Download URL: skyborn-0.3.20.tar.gz
  • Upload date:
  • Size: 220.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.20.tar.gz
Algorithm Hash digest
SHA256 065205a2419e4e022821865a42e7e6329f3e3c0659b4d5fd907ea9223b576801
MD5 15d905c0aa9f6c378782649930396307
BLAKE2b-256 2ce619c0d44c6aa49477aa877a4a379f760d46bc4819b922be163af7040d47ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: skyborn-0.3.20-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.3.20-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 11a32f4fb8f90ade201cc904671f0bea72fcd0a1747ffd4ba905baa53b9869b8
MD5 42ab9b14a4193d348131ba115c563473
BLAKE2b-256 ad07832190d0d0bc173e1cb1e346b4084a33ce648539f47f70d086fcbab2204f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.20-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9cfb4c4c92f06300317404be959cca94f16e710799829a250fb76b54110d3303
MD5 ad41af10e91689b2dd75460a05259030
BLAKE2b-256 50281bc157301210d67e88ec1347cdd2354c3cb6f26d0da2362dd2bb063de286

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.20-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 84a6850218c311287e149264ba15870ee6ea509f0fe4bf01e5a7534bfc214cb6
MD5 97546e12e9c099c36aa86080ebd4291c
BLAKE2b-256 b3131389a0a98ce961a3949343c4e7883f871472b847da55e56ac31d8d0bcebc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.20-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 19349d84c9aaa04dc4ece8efdaa9558a0bd59898c8ec528be8dadd86baa190c8
MD5 47c5225f67608dd7ab24a473826eb0a4
BLAKE2b-256 012e0f9e7b39ee59412ddd73a0b6257bc71f6975eafa31eec92d625b4eebbaa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.20-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 e2a193886909d11147dc80ced780259e4e068f0173fa417c197f339df29fcd32
MD5 ac6d357689aeadec8145646616dadd99
BLAKE2b-256 a80cabdcd8c89a487dfacfb7d53213980b1bd781169c9779d272d8e319d902ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: skyborn-0.3.20-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.20-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4fd2cbd0bad87c119f2b5d844ddf0a7154b1c2f130bdfec473ac1df4bd0c2e76
MD5 0c40842e605eb5db3043d15672e2438e
BLAKE2b-256 c56c38e530faa18826f2369bbd228f0a19c0a54596bf1c55b22033ae56ba1e30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.20-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0396d63b2e339a31d9d86d5da5a451ebc99c5bbd489bb9bdf53755438d21ff42
MD5 4c41c33477807f9e90d90c92c9ab42a9
BLAKE2b-256 6aaa533d43410e751477bdfe9f9b692befc12190c00e2e066510cf20475aa14e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.20-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 122d38fc86586afa0d4e250d7bca5808747a925e5688de91b1d6ce7a660ce407
MD5 53fa5919524d7f058d167b04a819422b
BLAKE2b-256 f4363b2a2d3f3cb941e058136905f96b247dec7c4f423247bc0ce7cf1d3eb3c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.20-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 c7fb35cc1f9185aa65d02c9511aedb993e86dab7f9beb6f45950a4f5bcdc5e55
MD5 b32281f2bc9ffb0c578661321a22dffb
BLAKE2b-256 318760b649b7da8ba6bf7746de83ddaf568a785a6cb03199591a2e87d326800e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.20-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 a593640ee925c064de315f01153140c794146da382fb594523b814750a97414e
MD5 1bc218f139ae6bc60e0af8b35cd01d37
BLAKE2b-256 05024574ce5b510fd433e890369c641af108ff05942eb0a06b302d74626dfdea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: skyborn-0.3.20-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.20-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 57b7749d5f1da18bdb287a4a82fc9c82f357608a0f8929dbe1e19bfbdd3e0cb5
MD5 802f3b8afacf60c610df87f595f7a129
BLAKE2b-256 f86b1b55281527ce5cd39b1308e52fc75b14c90fbf90dcb1d52b6a4e0b8a9dce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.20-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 97536525d9933ddeb192237f98fa630347d6091dfcc36e397537bd1a33b029b0
MD5 692d10313f321c001dac78c56350c1e4
BLAKE2b-256 ed477d3ed3a3f46f34893064ec36883698b1542873736518d9f047e8760d948f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.20-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 976a5a5487c1ac4de2d57dc374c6c206a7a376397c09c5f1e0892ece661377ba
MD5 e32a12a80075759c9ddd4d805b33b84c
BLAKE2b-256 d568c5ad5f4fefbb15ccf2835f296b39d5f81b2bfe14904ae0587bd93962b1f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.20-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 4976a8715f1cfa401ff161df90c8060aa4209114fb1f0788d7c427be8c848f88
MD5 744d467369931f060143193f96bf08f9
BLAKE2b-256 650498e553c2585e363813a40fe2f57ffa03aafefef194ca160f9d787520e065

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.20-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 adc0b4ff350f5ad7f70058b647196b5df3f614e5bd3f6ba6483f5b5344963a23
MD5 c4ff452705859e550c2bcb3c621eeff1
BLAKE2b-256 658bdf4b381ac5eccd031bae8542a082ab1a59e8dea22c4e3661d2149e61edb4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: skyborn-0.3.20-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.20-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 26261fb48b673eeb1e903e96fad5091ea178f8dc8664cc884aeb494c337b634b
MD5 5bdca6a5b13b881c3e4b1ea44fe5c968
BLAKE2b-256 c68f6a7a5ee45e9124ca901a754ec4172412fca5e0ad3cde2e32b20ed689f57f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.20-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4cc142fe6aa8d6109337f59e328b2a6c670b0316d4ad9e13e6d30b30f8582a40
MD5 167b6250a54ea2c80b1f87c62fc5ce73
BLAKE2b-256 6097cee90cb47025cd09b4a33c2bb8c76a48189e54c3d50a8c33074e53e3b4d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.20-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 3b2de16ee41a1a402259648b090c9193db8946f1f035ed0bf2603fb3513cf942
MD5 41cd3a354bcc5d71acd16252bbcde5cb
BLAKE2b-256 dcb410f8f80e4d6545b1a32a0c87e1387e7526c7421ca9c8adf7cac30ec3ab5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.20-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 96eb00b9b81c260e023a70e20ae90cf6c6590637e5a337018a4601c43ffb271e
MD5 a3c3939c418dedf2256b7aa3d9081ebf
BLAKE2b-256 a73f95493b81aa8b5d9c615fee5aba5a24fdeebd1c517b6b8e8c3b4fbe4afa0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.20-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 d46987a58304c4ef04613cee374a0acfb330da5be2002f16d9eff0466739ec26
MD5 16ebe71025234a31552fb3a7dde579f3
BLAKE2b-256 cb85e30d02d7160705d94b3d19bad15cec88b1928a48b0432244d39141538fb2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: skyborn-0.3.20-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.20-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4c7f7d886f7dd2a3f32e917217e4deb951b89964e08ffd79eb048a84450e42c6
MD5 a8bfbfc784cf51b7bbb0627fa5969734
BLAKE2b-256 f3f73e79653538edc2bb66010caa7ded0826aed373aaf130c39deb799476f8b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.20-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8ce9d09cbc47ef42691e6588782c316938c3edd87b6c2349e97cacc24e80eea4
MD5 17ec41f749623e0aa7ee6c3171a82018
BLAKE2b-256 25aa8f8c930d47382e9022feb02a456b38c3ca666a62fbbffbba6668692258bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.20-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 8d55e77864300c56e0a70adf9018ff6954026240c306fbfcec8378164a722ac6
MD5 f1d20bf1e0080cdcb9160f6789c339b8
BLAKE2b-256 bfe63021a7234ffadb966a6b1a7fac6fe5b32be1ff09c3d3fa00f28d35fbf985

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.20-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 3111a3b17facc25d7a41feffc1dea8588426c80ae53981f8c9d8a0ddde349d71
MD5 aff16fe2288f4b160d2224c2e5b3b28e
BLAKE2b-256 3909e696cf4ed9a6723ae0f7bf240ab6cedd195dbb73330869649572168a0b77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.20-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 3d416a89c7450dd2f38c8ed2651a6e068f678f9d80c0708b14e27483b3e559e6
MD5 6011e60e6396e86fc48b45e5868d55f9
BLAKE2b-256 110491d0458ed2805f44d18c9c44316355ada5233266fcf32c117262d49d0bb5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: skyborn-0.3.20-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.20-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 821a714a5be1787863af2e6562ac267238fa66cf46d64cd212b5a14896688664
MD5 08e681ff8e2c6e1d95148ec74dbc1f42
BLAKE2b-256 4976ca55aec3cf0e9f6afadda18169a5343ef2e712c40b2e75e39de1617ed711

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.20-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 08cd78937c6273de4543d5ab2be73e77023f3a7aa5c8f8e098baa7221e20f203
MD5 bb374fb63c4ff14962e350859e01c9a1
BLAKE2b-256 ab77612d78838c9d837c1ea18e5c0377077a74564d31c464169a188c4c2dce9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.20-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 2fb127ac76a37c1ae09602f726af99767a6d08d38c8a96a3ee164564c6664b69
MD5 053c675e20962ab6446b4a91dfa5cbe1
BLAKE2b-256 a0641f12796320f842d3f0e7bb3da7e925de4d284f769938fe8ba31ad683f012

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.20-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 22ff31dc07d577c1ba4fa8101037a3c16ecca6a381555d58497f79fdb710ab4c
MD5 40e12fc38f2d6b9980656b0df22f0d34
BLAKE2b-256 69da0b9f1e237f197b7b4b4c45a9219bd0f917ffe833af5ef9fa336da57cc1b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.20-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 d2bf7d7ad101262dd8ef2762a4b99c9acd3abbf65557cc879c7ebd71c149a224
MD5 49abdbf7ada219e4f7508c7f817402ab
BLAKE2b-256 7adcf94584cb52af58b5a1ed6d333b2e66e338ae4506c5f656e46ee74611a22f

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