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
  • 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 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.19.tar.gz (864.1 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.19-cp314-cp314-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.14Windows x86-64

skyborn-0.3.19-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.1 MB view details)

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

skyborn-0.3.19-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.19-cp314-cp314-macosx_15_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

skyborn-0.3.19-cp314-cp314-macosx_14_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

skyborn-0.3.19-cp313-cp313-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.13Windows x86-64

skyborn-0.3.19-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.1 MB view details)

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

skyborn-0.3.19-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.19-cp313-cp313-macosx_15_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

skyborn-0.3.19-cp313-cp313-macosx_14_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

skyborn-0.3.19-cp312-cp312-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.12Windows x86-64

skyborn-0.3.19-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.1 MB view details)

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

skyborn-0.3.19-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.19-cp312-cp312-macosx_15_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

skyborn-0.3.19-cp312-cp312-macosx_14_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

skyborn-0.3.19-cp311-cp311-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.11Windows x86-64

skyborn-0.3.19-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.1 MB view details)

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

skyborn-0.3.19-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.19-cp311-cp311-macosx_15_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

skyborn-0.3.19-cp311-cp311-macosx_14_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

skyborn-0.3.19-cp310-cp310-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.10Windows x86-64

skyborn-0.3.19-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.0 MB view details)

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

skyborn-0.3.19-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.19-cp310-cp310-macosx_15_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

skyborn-0.3.19-cp310-cp310-macosx_14_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

skyborn-0.3.19-cp39-cp39-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.9Windows x86-64

skyborn-0.3.19-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.0 MB view details)

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

skyborn-0.3.19-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.19-cp39-cp39-macosx_15_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9macOS 15.0+ x86-64

skyborn-0.3.19-cp39-cp39-macosx_14_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for skyborn-0.3.19.tar.gz
Algorithm Hash digest
SHA256 48b932ebdf016784621dae9e566f83daff66acf84eaa366e573fdbbf15660f81
MD5 161e28e6fbe342c21e8f5cf54039c188
BLAKE2b-256 56ee625cd1b24fa53d34b91ab95313b69e5859a46ce9f02209822df9595bc321

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for skyborn-0.3.19-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 aea7b48205179132cb31814f7ec04ef90576db013529191810b823d5f8f8f7dd
MD5 f6a098f0118e5c00bba4419c0f4f87e0
BLAKE2b-256 79cbf64c775b677eca47626a50f08cc6085694400e1f12eee603c5d99be4a6e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.19-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 add1ef905446c7b7ebc3f665e5d09c30549c9d520b502b8901051b13cd43086d
MD5 c7ccc72e9ea76982ec0d6fce5b48644b
BLAKE2b-256 f480709193139d9061ef22de764f800f59fd12d59d751b2787797edaa488578b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.19-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a93035008064634f0b4179dca85290b9d93cf12f4b48e290468901e65021fc45
MD5 4316287aa80fbf86cebd76d69c6e481e
BLAKE2b-256 e7917c49beac56a2a2a5f6cfca063f389855b660efc6817f01cd71d8ece8022d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.19-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 46a2d7f47599b8254a7c6cba8b84c4068afb2f924ed66d5369e8392db9c8b0cc
MD5 71ab6bf51a6384a18025038fc1af26c4
BLAKE2b-256 61c7aab0e2be853f5f7aa65ec294c6a87d056ef4a77f4ee3a576230e762926fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.19-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 e71a5875033231df4560dd5d11f4bc978e3c55b28758f87acab6f7edaa2cb358
MD5 00b58134b2e37ba5644c4981fdecf125
BLAKE2b-256 130f922da0cef100b2614ad960c47f17b3f500b8aa20f3a0599dbb0789d39134

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for skyborn-0.3.19-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3a31bc3ba1c754da13a01c3d5d219ce435da56bdb40c0a689f2751bef9ce43bd
MD5 fe189e2221e6e2fd4aa0745d06295134
BLAKE2b-256 779e20374201c753c221fa93efb373ce30fc1fda0d8a45c8bb4be205c471f0d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.19-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 13623e0350986d203872217308e92847db476c3d37fc82d817fc83059a0be9cd
MD5 c3b8fc371608a519dea0350869a7476a
BLAKE2b-256 1f747a5e9bf9f45904720b9efeb73bdfd09bd53d4d8b855156c76804de64467f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.19-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a08a673e8f13e247d77676e8c0cc80f9c6d04cca9bf40432b9e537a43f9cf217
MD5 8fcced77107efb6d7e6e683934823015
BLAKE2b-256 d0c578f364b99cf2603956b832cf1ef07d0abe5cd147b9980b5f026cde9cca9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.19-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 12bc5eda7394a96b95899e28cec2e99d8623ecf6833a4ed7155b5cb17efb8c72
MD5 ecd3c43e9bc92d534de6b729c93cdb0a
BLAKE2b-256 7e2ba8a438d8a24e84c183dc0c42099a94c6b34a4d39cbf2ed44b878018b7d9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.19-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 8e5b8cc2551219657a63b2152e4029181178b066a46b5440405ef3bc51d349de
MD5 92f74452efeb7b22b07323aac9a9ad7b
BLAKE2b-256 2448871e71d49cf4a263d74c93ba4f57fe226214f793ccaccee5ae0744772350

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for skyborn-0.3.19-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e1201397fb51a870662830c93622c552189479d95534aa59b9cff668e8582b73
MD5 955745635d214b46bda1120c892e5a0d
BLAKE2b-256 3f737cad5f3bff7aacb73f7aa8ca09a3accbbd0d304f1b1fe28d21732315ce51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.19-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a0be00902114a6c1b61cd4fbfa6c9073f93cea2530e9fb5e03fecc2e019326bf
MD5 5ff6b792a7f929b952f1fb38322a3fc0
BLAKE2b-256 cbb3428cceced986abdb12ff44cb0b8e40dc6c38c11ec802be5aa53e42bf9b92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.19-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 426a14f2d94c7129de560bd9895d82c43e1712e1b798513c8fba926fa45474b7
MD5 ef45aa1aeb67d242320cf8949d6b9fef
BLAKE2b-256 606c2cbd04d7f4b5bcc98b094ae9d5ce53625d302f10e6bfc0cab781f98f9a25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.19-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 c61e988e3625ab7fecfa6c00d6f3f9af8531df7d47064002269d98ae06e4f198
MD5 caeb630d6fa3a2ae920cc0a6b1af428f
BLAKE2b-256 f1f5dfe954ab3b4675fc1d401e863e40cf19400ced6e7e004b21698acc12db31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.19-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 258ed1a0ffe2706c80b39dc2139591df6ca265f778d993f9458a6387ec8b17cf
MD5 76d2b4a8a2cfce8b64d9f904258abdb4
BLAKE2b-256 2c1482a0e5f61304b70e82188619261439d0aeeec6f721a77abda894bbc08c48

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for skyborn-0.3.19-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3bd4e0568216217bc1f13c0d3efaa56f10ab358093f896375511e905cfe9f3f8
MD5 8313a590a617a292c4e312d181218aa0
BLAKE2b-256 a2b3de9a11f86e6ac0a7258cb5347f64c7d7bb4d58469503b0443f633406996e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.19-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 adb038ace2c3f986e960392a89bfe17c1469ab448bbbe76c4bfb3785951bf487
MD5 92451ebaa7bb8c551729b887f5101cc6
BLAKE2b-256 c2e27fc8cf2f3274a2aa0a94c0a64f04f5b96579fabf35c40f96bb2893c54682

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.19-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 222055ca5e7ffd47138dfa49701089885328e67768bdb38896a3bdec8cb79f4c
MD5 03d75c8063e05b5df15778def0a6223a
BLAKE2b-256 2f827f8251555211a26dd6cb0cb1c846e4e03f37953be8a279c257013d9e95a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.19-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 e9c12a8410de3e31eb67ee1be9c65b7838b4b929a5bab45096bc41b12fa06681
MD5 7a33b72c443dcb0bf534c2013cfd58c2
BLAKE2b-256 c2a587240481720f1b23fd7928d3738fbb038bc7497c7fc254d61ac58faa1a9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.19-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 6150802529be109ad2021d0c05686c47ba9833515d577572e6e3b13cb78c37b5
MD5 0c3428e53943786c13c286ea4f50305e
BLAKE2b-256 e513d3308dbe396d3f57fd9e62ab03c49905f5f1d530b66a02f8302aa6cef0d8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for skyborn-0.3.19-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7a769e202efc12d710c687651b1f41f2102234fdcc7240d673bf3feee40715a1
MD5 ebc2f5876a6c20003578778c44beec6c
BLAKE2b-256 1146ffc02204c3597df2885df341d85e2f792d0fb67fbe96497970d070afa9fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.19-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8c9e27fa524fb6ce31afff7891f3489fbbed65ee6b5cfb11d462f75a79bc4bba
MD5 7ea941bff7f8635f06297bf26f6851e8
BLAKE2b-256 fd1dcefe4c690df239d89a7aaac9f3a0f40df16a4e5446023f975ad36c7ee1ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.19-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 3d32ae11172dca1c3cace7d45ee39c366c184452b1192c39290b1b1cd3f4414f
MD5 fe3d8d2bda22720f4c5bb01cfcf749b8
BLAKE2b-256 ff7c0f4bd575d581f6535514d943cd60e7d34979eca3b82de94749ef829c42ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.19-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 d01236dcb2a8dbb4f2af1d327e956dbdcbea1f578add99ba7295b6c70b823795
MD5 24b28c854306263ad8b1b5ed08b4213e
BLAKE2b-256 72cfe6f5913ae161d90adf74b0a01eec45838651dbd8a5b6e059d849d2f7c8a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.19-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 5bc5db9d483d5d7efe147b7788db7d0bbfb658aaed008e16fb02ae36650296a4
MD5 dd09ef8dd0b6f27be1a42a8671ce2146
BLAKE2b-256 3db2251ffaacc4ac6bc23e28ae375d9bb2f05e24be08c99615b3751eac0f3cb2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for skyborn-0.3.19-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 88d6e7981d9f431070e13576ad18efebf8f9be822f2d301fc0f42aa91d215443
MD5 53483f3c13a639b477d46a9bb1d3bc21
BLAKE2b-256 3c60d66e6a0ea0cb9f04e81c2f7deffb948e8d85d45367f1bd1fa8382489bc60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.19-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ee990bd5b72f931c65c9163ff4f6b73f468de08ebcb5fb019972aec50791fd13
MD5 ec92a54d24b1c60580784a4d7f3e9c93
BLAKE2b-256 18d81ca8df45eebbe9672e5d7a7f5b672216945d7029c744635d31da890d1e48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.19-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 0851ac1e34de44d0e3decf62290baf2891e7f13d1a0f08c494224cdd5ca75d84
MD5 4e44cc75337849b49b919b44b9015e37
BLAKE2b-256 06864ac43e6ae920726ba05c92ff17f3b887799bcaf1eac4e52332a290580acd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.19-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 ebec517c1f279d7f2133a8ccbba46a92ac8cb16b161c0cd3a9d9db7ea73c8fa2
MD5 e3ba803c5fa43855410758a601129adb
BLAKE2b-256 198da432255efc41b145341a9f0899d5a2f33962ec28a8644645f6b839a2a370

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.3.19-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 8eb917a5222cb4c15e1a572229d41aca8a65070a0bdccc22a30144fbe1f8c196
MD5 0f1e096bf4bab6bc156730fcc63ac80c
BLAKE2b-256 fdf6c9051c85ea97b58eb67a702adeace247dfc582d03ba6456d60565818ade3

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