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.3.22.tar.gz (626.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.3.22-cp314-cp314-win_amd64.whl (4.7 MB view details)

Uploaded CPython 3.14Windows x86-64

skyborn-0.3.22-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.3.22-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

skyborn-0.3.22-cp314-cp314-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

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

Uploaded CPython 3.14macOS 14.0+ ARM64

skyborn-0.3.22-cp313-cp313-win_amd64.whl (4.7 MB view details)

Uploaded CPython 3.13Windows x86-64

skyborn-0.3.22-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.3.22-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

skyborn-0.3.22-cp313-cp313-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 14.0+ ARM64

skyborn-0.3.22-cp312-cp312-win_amd64.whl (4.7 MB view details)

Uploaded CPython 3.12Windows x86-64

skyborn-0.3.22-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.3.22-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

skyborn-0.3.22-cp312-cp312-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 14.0+ ARM64

skyborn-0.3.22-cp311-cp311-win_amd64.whl (4.7 MB view details)

Uploaded CPython 3.11Windows x86-64

skyborn-0.3.22-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.3.22-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

skyborn-0.3.22-cp311-cp311-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

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

Uploaded CPython 3.11macOS 14.0+ ARM64

skyborn-0.3.22-cp310-cp310-win_amd64.whl (4.7 MB view details)

Uploaded CPython 3.10Windows x86-64

skyborn-0.3.22-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.3.22-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

skyborn-0.3.22-cp310-cp310-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

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

Uploaded CPython 3.10macOS 14.0+ ARM64

skyborn-0.3.22-cp39-cp39-win_amd64.whl (4.7 MB view details)

Uploaded CPython 3.9Windows x86-64

skyborn-0.3.22-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.3.22-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

skyborn-0.3.22-cp39-cp39-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.9macOS 15.0+ x86-64

skyborn-0.3.22-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.3.22.tar.gz.

File metadata

  • Download URL: skyborn-0.3.22.tar.gz
  • Upload date:
  • Size: 626.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.3.22.tar.gz
Algorithm Hash digest
SHA256 0434e37d984bcabdf2bb75d3060c9ebd8b35d1cf3ea6cf7c2e23eec1bec60907
MD5 442e62a685588c1b04826a7311e610dc
BLAKE2b-256 8f394342576fe4dcb81137d4f127b7858b059ccc67954e4a59cd6cdffd98ba50

See more details on using hashes here.

File details

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

File metadata

  • Download URL: skyborn-0.3.22-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 4.7 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.22-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bc49a943ef1a3bff6812b239c69917a9bfd0ba52132de0b6b6492431aaa3634f
MD5 cd869f44b6ccc9f373420b01ad545c65
BLAKE2b-256 6edb62c5389d55889e24bc7f50bd6860239acf82791033561d7b916fa08de28b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.22-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 65c18f14963045eb3d9eaeb3276349aeb424233da71b5681407c8c62c7d86b59
MD5 55f24d067660790818796edf1137e980
BLAKE2b-256 acd0cfdd19c62c9579c4342a22551fd21a3b1b0671bb8f257702dd37923fd81d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.22-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 d84e7d9f91c88a80f21eb75837cf3219c8965a8f471b141fc99b2c30a4113340
MD5 8e9eaaefa1968cc46247ad0e202a3679
BLAKE2b-256 75056f82bb65a61737dd9bab5db0f0fd6cb11cb80986a60f77b8eeaed724e9e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.22-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 7025f9c9aec9f2df48c5f08b73e32e6e85bb1654da3523175368a1571791065b
MD5 d5462e3fe214304269b089999583783b
BLAKE2b-256 9c74b8f7df3f8afc831460757becb9483d6769cffd14bdc916a6ce59585d8a04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.22-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 dc0c4c4aedd0d2b9b72f840be056c27cd408680b348f2d9f010c07db012799c3
MD5 31306c78f3ffb426c074e8075006eb1e
BLAKE2b-256 24f538a4783469bff46328cccab0fb54b613594439242d7a361c92b30a200af9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: skyborn-0.3.22-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 4.7 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.22-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2942dbd330e8b46c4e9fdfe81f7e9f216a9f41944a89a787993fb1d0b1a5b946
MD5 3756ae751fe5c9cc8af7050bfc469389
BLAKE2b-256 154f284a51e880205618ce910414862c629be0148ba646d5cd42a4f3503f5773

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.22-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c3040bc1a99a00fb1a5dc21c241b26b22dad61765999412f26c91782db116b1b
MD5 28848f6a62277ac8c9d285996d97c7aa
BLAKE2b-256 cbac074700c84d8dbc16558025bfe76d6975a30d135e41390f8fe46716559b1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.22-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 2986f01ecff7bfedba6699e3c6a74c404c7018e4ef4bf554bd0d7fe0b3d0df58
MD5 239eadda9f5b5c95af0ee0c62578a0fb
BLAKE2b-256 56ff276747a8ab2a3f3538db119c2a1f2859d33da678f462408b8a6faeb42f6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.22-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 e85e0bdf431e7b394d4a6f5a05afeb88cc91bb6e4f962e7df913f421574687f0
MD5 ef9679dbb373b6e571eb0f6ee6070c4a
BLAKE2b-256 416484b47d553bcf616923ba11d430422ff333e4f59538afbb7b857ea08282de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.22-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 93e651f4fb5215b31ef18f76c2ec4b886ea85a914bcbb1c6b82d6a78058ba32a
MD5 2f3adbc10b0a2ab413861f34df99dece
BLAKE2b-256 e975b9e4d128b7f09a83843a5070710699f451daa2b85433ba572c06e37d5376

See more details on using hashes here.

File details

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

File metadata

  • Download URL: skyborn-0.3.22-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 4.7 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.22-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b40429f89284ca43597b55faa911166bfa777ccb7c2d39cc585da64743a55321
MD5 de3fa8555581cf7526fdecbcdaa89623
BLAKE2b-256 e5c0edf8c62a515df5fbb7d3c4bd771c230ba0f0e754bfd4073b1810bb88961e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.22-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 41af4106b92f747b502597a5025ceefc3f63987f320b8b959d0e1dbae7bd1cae
MD5 d16c6e995e056a1eeb6ff4c4a6230652
BLAKE2b-256 f779e077d00099e5208e1036f006b1456d048c2fdcef689ba59ec483837a232c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.22-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 15e4bd894ca2c84c9f675ad9864136e8e01c4bbbf462648f3a933c9cc79cf84c
MD5 b3e5931abd08ff74a4e5a444dad40abf
BLAKE2b-256 12b13c268467fae40ba515277d2e65f2e540e2f47510ee28bd82c93965eeb530

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.22-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 8badec3a7a00c393e260fc9b5421d80bf6fe42f797ecda01945559e81b7e8ddf
MD5 0f31fee21ee09880cd18a2ec8695a426
BLAKE2b-256 240e39d0ccb5c979783cc7e9988da2f18a1f7003e2d58b3419148be00b1f7718

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.22-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 6d6b3e4a80c60c8c9ea9825c19c7781dfa8329daab41e5d7e7112d854bbc617e
MD5 1c362c96116c0cc92d95dd543d31d340
BLAKE2b-256 6797813c33cc009d3d668d13fef4e65e4e832d83c97c0dcf1af754c125f8bc30

See more details on using hashes here.

File details

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

File metadata

  • Download URL: skyborn-0.3.22-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 4.7 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.22-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ebc025076d80e88b90c0491c2a5fbf901ba2177d450afb0e6ead7082a5b9d35f
MD5 977e77e8d93756e84f32aacb984c4a0e
BLAKE2b-256 1ed2fe0f3c05ed23cd6aa1b63dc7dc7d81fbf9e6b884b95483e2df05948d3f12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.22-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5123d937d8c023e1824ffc12d67a3801501cf2c25ca7ffde8d53a7e8bd49441e
MD5 5df9b1a5bfb2b8e63fc2ad303cc95c19
BLAKE2b-256 8a48bd18265a88706b3bc2053acf605b986ca3215105dfae3b6762056c8ffadb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.22-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 426f03e09d5bde343cc3a51033323ba13375c2756003ee20eab78f6ddc8d42fe
MD5 09a24218bf03fa214411ede95d158df9
BLAKE2b-256 4f40efae0cf0f1ce0aa879c2588c520933b959cc65d16ac69ef56f90d70f762f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.22-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 e36d5afabe79083117a6bf261e33393416e3a65cfa6d71acfb5ae8bb702ac130
MD5 1c87a3c9251e893e0bca0e4136e8f720
BLAKE2b-256 68efa62d89a584f14e6a7004fe36f018b7c221135c422ad16121d5c61adce62a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.22-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 f207e8a6b7cab088ae63bc29240195b6f56319dd693229f4b74fa4fe42326e09
MD5 ef7ff83877b253880db46f5e160508f8
BLAKE2b-256 4e23864783e0684e803450234fe23e7f4098ca20ac28447a1f292446ae384d79

See more details on using hashes here.

File details

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

File metadata

  • Download URL: skyborn-0.3.22-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 4.7 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.22-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e00da3e2395bc30bdf64f8bfc3d15d9a89a7667f244766f2c5c996c85e7653e7
MD5 bbc2ccd6b9a0cdfd52a25226cd012595
BLAKE2b-256 d00640168225a58c9baa5c06592bf1493ef28c14a43dfa88e84cee56c9168202

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.22-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 563d9167dbe95719d5d7d92d8157b1fd67655e22af85290f5aec7804875bf56f
MD5 4f8d1c8021fb43bb406d5bfca876e923
BLAKE2b-256 9e09a4e9002501662e2bc1140fc59fe49b582a82d97ecd221e5f88ef599f80e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.22-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 948650e522914a4d0d77da86e89a090c3dcc64f355d926d0c92dcf352996b026
MD5 9e384eb0301922e224834ec6ca92126a
BLAKE2b-256 36a3a6fc81dd759c6ac62eb47b1f271d34be90b20532df3e94696ffdc0c0195a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.22-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 869cf21a2ea7394dd9846dce5836539d9055fc2a1c8a269264f763ccc9c33f36
MD5 c6a21872b4da8413c4516968dc4d168e
BLAKE2b-256 6f814a5b5b643ab1a779e0e8bb136e419fb582ca27b3b531025c65ffd17253c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.22-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 b9a6b173ca90fee9d3ecd9c89c88592edb66a7c74b241087f3e72897d7feb4c0
MD5 8fce6178337268f1b0c7ed693692f272
BLAKE2b-256 660631bc92efdbd59fe12e505e1bc3c6893e4d942c2877f9090e031fdbe0ea71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: skyborn-0.3.22-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 4.7 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.22-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e652a4ca2faa4b6ad2c3a29c777b70cbac310aed384841b9527de83b5be773b0
MD5 bc330c1b6145df42313384dd868bea7c
BLAKE2b-256 c2b3cb1345d27c09294c09e2b0b4a4e11de61dc07edb348f4247f2e53b78275e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.22-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 81474d6f2577ac1a86ed5c359425a9edf222f4d1946a1907882ff18a074c0cd4
MD5 e27d6d4225b2c2ecb633e5f61d442deb
BLAKE2b-256 ce5caa18f0d8a737e3f03c4482a77790eee3b9840a4bb005543ea636bd300851

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.22-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e503e0be92757527b31109e9f7d07997f19a30616cb604b18fd557a9dba8472f
MD5 cbc1c71346c02c257ecd30db4baeeae5
BLAKE2b-256 e9d29c2eb6daa02d0228ceb0da0424da7e9c4ad4692f4fe936f04c398498ffe0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.22-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 0dd3cf042089b2d80ddc1558d3fc5bf71bb7db9496843f2532d5f5a9a5e48458
MD5 0f47a162627dd358bd7c80760aff7d0f
BLAKE2b-256 6627b3c6dc0e462ead7ef89a7d4a03804061095db965057b4e5a7a2960d2ca65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.22-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 3f46ef5d5310762c0fc01f6203c176678b497601d9dab0b88f0632cc27473a0f
MD5 5cc0206c301ceeb613f0348e46db2906
BLAKE2b-256 2fecef8c8972afce7872f45bc6f58847ee9e39804c48e3d0fc660cbae1c28043

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