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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14macOS 15.0+ x86-64

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

Uploaded CPython 3.14macOS 14.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 14.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 14.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11macOS 15.0+ x86-64

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

Uploaded CPython 3.11macOS 14.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10macOS 15.0+ x86-64

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

Uploaded CPython 3.10macOS 14.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9macOS 15.0+ x86-64

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

Uploaded CPython 3.9macOS 14.0+ ARM64

File details

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

File metadata

  • Download URL: skyborn-0.4.0.tar.gz
  • Upload date:
  • Size: 559.6 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.0.tar.gz
Algorithm Hash digest
SHA256 dbaa58560dcd2fbd83ad6eab4e644da5c2c981f55e5dff33a748baa208193a80
MD5 fbfbe35a390351e144e2b1639e2251b3
BLAKE2b-256 5395bc9f077e22cd18caaf51c44853653d1ad26cc955a1629ecaa3db56c8aaed

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for skyborn-0.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 03c79320dfeef9d024f1ebaf7b22a69949da72265e68b6bfd5efdb128183ad8a
MD5 d69f7e7fcdd2ca319dc4ad3e95921834
BLAKE2b-256 2a376df6628e87eb10bce731eca5272d9c10ed51aa04f1b50f51e9155623ef78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 24b78490f72751717879f08dcd934e8210f25e12175b7923e4e8438430e06bb4
MD5 23f4af0e45c022f75e5368854e60b1a3
BLAKE2b-256 8c661548674d4d79823707f2b849b810bcc8e91f1108ea150ffadd9a4b3a47af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 92ffa6cd94f7e9bbc0d788fba2426522407e3163cc531b77987fd0104a516f67
MD5 707bef55090c1b835e64d70f3eeaeab0
BLAKE2b-256 f30cdd6992c8012b8f228ee37bb848e151f418529f062136768486e33c0fbfa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.0-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 72be4a7cf8c9672f86e9f506da34c987137a051503458a31449f0b207a010577
MD5 dbd59106fb3bd52480a456844b7da6f5
BLAKE2b-256 6ae3a994bd82b0b13f499651e4a9d7239f16a3ee1602139ef93968418d4ab0d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.0-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 dd845b1e74deabf4531f2f6049ec6a326619e6f7cb9c2feb11fe528da9e6d9b3
MD5 f5dc197fcd2688329ade5d76bf0b0c1c
BLAKE2b-256 32277b29805402936e9c690a7c740e4ec1e0dc318b1fa0c0ea8d862d48f63b62

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for skyborn-0.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 18dc8f91427cf23c01f6f07c29193dc56f73e3847d885781563c1f7666ef34bc
MD5 c4da657cc821e92cacc054a260dfa7fc
BLAKE2b-256 9d1a5aeeb29faa39094523941bbc635095d48e9acccdf7e1428b677b9282f767

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f772b2c06f5c595e303fac66e0ad10c10286779792a008fb98d003ee00092b76
MD5 b8882f60600621c9c89c240f0fa9559b
BLAKE2b-256 49bcc823d99e6f18aaa26e2031c1036e9db64974462a5e6f00d0dd66fc6ba43d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 16360bd53692934b8ba6f84043e1e218230e997d2cb45b45737c050fa3900d36
MD5 64198078a76d683580fc52e0438e4694
BLAKE2b-256 da79191b9feb33846f88adc5870ffe9cf9f513f02fdb7fd44ea8b22637df96b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.0-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 9f98382ad2fa95c3d37383f9cb89c04c101b3ca64c5bd36c21a820bd2e747dee
MD5 6a740b777468111aa3f48a1a2bb4c4d3
BLAKE2b-256 975338ff0731dc19e600aaf813f29346d6589d740f5969b8b7a3d375dc5dea3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.0-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 8c9260521e77d47349d203f7d5c696c2a294875d62b4bf5f2d63c8dc5ab70099
MD5 ec973ab198ad1489ce14e980ed1298c8
BLAKE2b-256 f259f30291bb117af1dfdb9d91102bf34404805fe816c8f7f23ade60bc1b8a9e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: skyborn-0.4.0-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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ad30df337dd76e7599592a0622081041fc74fe3103a3a0e079f5f7be7f5de973
MD5 40e05310b035f7e8cadd9cacb0b21eb1
BLAKE2b-256 0e39ff6c74db0a01ca76c3182a5c3a56060bfe40df89bc04dd5355bfe97e9ff1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 35318458d988be2ca8f2ed9acd0a8440701ad8d609c692afd9308c6b713eb8e2
MD5 42f31061d7f318ea9ac19a7ff59653d2
BLAKE2b-256 403fda9ad4539c7c2d2dfba944ee75383582daa63ecf84fc13f5839a0a7c0a40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 c128c54189c141a49a170a067ba3479f05bbe2ae54b43087873b78ca558420a1
MD5 f76c4de8dbda1e09c81e879c11053c3e
BLAKE2b-256 e204be9bf3abb79487344872e7066109b30924138179d8e1baba02d0e96ecf46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.0-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 30e7499eb35b2a6c35ad43e3b03c2367e8ab2bd9b79c23579cfc95ae82e80b44
MD5 562de3dc45eb53b0aa5d3bae35f4072a
BLAKE2b-256 1be1a0b69bb6a520a7ddc8f650d94ee2f34d46194f4114c3f313754e64f8c366

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.0-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 f4485458083bb72f68b0eee922c8e1f8daaf9edc45461447b8222a62509be7b9
MD5 0ee22c069f8662f570ebb5d363d12620
BLAKE2b-256 6f57fac23fd69260523a686e8ca4bce440cacff9f305048b4921dd482f0aae8f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: skyborn-0.4.0-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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b1aec3e38d15ff8038144137ccb36a4f57ce0496163850dac1217827aa866416
MD5 40d2724647993d3d8d29477077f5a633
BLAKE2b-256 cc99f423e3d3c359627d750ce0703c81ece30489a781635bd26bb860731fec13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b257977c5dc0aa39fe3758b30c290607ff08e7cd4f40f568407968fdaed86980
MD5 8abe9a43fdd0ffb812e7901878973ab9
BLAKE2b-256 f6e1aa6e30d216268ffdd3f71469a674ee5f5a323f926004ff0ea79e533906b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a2962cb12a56ae1faba9dd3dcfa69cd7ca0d8808edce0fd80edd4efadff18a89
MD5 2156405a9230986fe809046daf6ea28a
BLAKE2b-256 28c6a786c78bf9505d9024567794530e34209f7ecdb582071d9d7ea971a47dfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.0-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 b39d9ae30780f372d279e2541c8ceb2f83e2308243ef0fce038b5ebbee5bbb0b
MD5 61e4574363f53b1f03fd396489557482
BLAKE2b-256 582677c0c2d9275e9847adf9a253a99d0bdc918deb62f5103dbd969e28d74658

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.0-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 eb36bcf1baac56057e2e4d9af42a92e2d6bac9039a7c05138ebfb6eddca64255
MD5 8d95b1460b5296addd8bcbdfb792647d
BLAKE2b-256 a9aef81110c256d2270b374579bfe15da10c2755d98ecbeaa36bd20ce2c9c0c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: skyborn-0.4.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cb3a568cd1802094bb1449e9e79b9fea2aeae22c2eadebd0de1f53f661147a9d
MD5 f15e51cc7999024a6b1a6c85be98b1e9
BLAKE2b-256 17b8e7a5fdc0321f64b7077e58a97b0072205f242a6290c1fd018102c418c66b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b8f0511d339bd885c6f2073ebf0bd96c22cbfeae2d58bf7d6af513128c90e76a
MD5 fd2492c7f3d7966d2724092861aa1cc3
BLAKE2b-256 9183a63388a7e82585b2b4742f71b582c661b0387e3cbba776b90f6c5f6e72a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 bae881cd842bbbc9bc163ee8091c7278eff146fd1ca623487ebfe33be152a518
MD5 4d2786fd74e2842210626ee7850e09cd
BLAKE2b-256 969c03a55961f2419e88955a180146dd744a20741d7d762d7b79309d32cc7cfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.0-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 10e8fd327601ae026901e9a0c6d106259ad60aa9ec5e3c720cbfc7c522afc34a
MD5 6bf94f686e001c81970dcdbde822f885
BLAKE2b-256 88216ba5ad83a1385db92f16dc253b76c62aabffcb48454b11ac1be02d49ee0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.0-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 5852ae4e7faa2cf84348cf851d426ecadd446ecc4e3a4aebfa3f87286ce6348f
MD5 b517da735212efe325828d226b7ae04b
BLAKE2b-256 4e9d24df4b1c9d28d9c0b68076ed2d5f333effd771bbe297b5958a632f900d5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: skyborn-0.4.0-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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 87e561cd4c131750237ce37a65441e6d0c6ebf8ddde8e4abf2bb6c396911581b
MD5 2ffdaf943388c15696881321f1cbf717
BLAKE2b-256 895bc3dcef0942818ccf1c84e2cdb78f3d3120df9a7d0e21af6693ed7f1ca587

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 524330f7bbecb1feb6317124750c87faeb81e563c8b347162db315c869a352e6
MD5 95bbd8f6f882ce38617ec92cdb0cc6dd
BLAKE2b-256 1bd9a67cc8be34b56c0d157590651e7efb77045f94d89b1fd74769512b9b96c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 bb43883590250415777cef6b4eb66ca1f1ee22aecc3186d7a7378bf93b60b2b4
MD5 cdbd7107af88ad70f041cd852d6944d4
BLAKE2b-256 938cfb1f72f14f560b54c865a442710df18f9d8d3f35924e047ce6e54b12243f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.0-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 d5d7f8a797cd7a869eec43ac827c6c4217cb343851b1fa85fa64d360b5c67926
MD5 571548bb4e7ecf5715ae4823f9995099
BLAKE2b-256 1da88d0b7c14f3d96f8fec1e545f7abcdfdbcb4714bc52b5d1dcd42b2066943d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skyborn-0.4.0-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 55e4f8d25ac9ac1d3ebe90b4e0d4d91b43f61a26ab6da9e1c75a9c57cc9fc032
MD5 65f3fb4151db4f2b0a2fe3232bae168d
BLAKE2b-256 a797c09b83fee584c54ad9afef5c5994703dda0cca1a01966069dc1c044ad773

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