SHARPlib


NameSHARPlib JSON
Version 1.0.0 PyPI version JSON
download
home_pageNone
SummarySounding and Hodograph Analysis and Research Program Library (SHARPlib) for processing vertical profiles of meteorological/atmospheric sounding data.
upload_time2025-08-13 14:43:43
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseNone
keywords meteorology weather atmospheric science atmosphere soundings skewt hodograph
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # SHARPlib
[![C++ CI (Linux, MacOS, Windows)](https://github.com/keltonhalbert/SHARPlib/actions/workflows/cmake.yml/badge.svg)](https://github.com/keltonhalbert/SHARPlib/actions/workflows/cmake.yml)
[![Python CI (Linux, MacOS, Windows)](https://github.com/keltonhalbert/SHARPlib/actions/workflows/python.yml/badge.svg)](https://github.com/keltonhalbert/SHARPlib/actions/workflows/python.yml)
[![Build Wheels](https://github.com/keltonhalbert/SHARPlib/actions/workflows/wheels.yml/badge.svg)](https://github.com/keltonhalbert/SHARPlib/actions/workflows/wheels.yml)
[![Build Docs](https://github.com/keltonhalbert/SHARPlib/actions/workflows/doxygen-gh-pages.yml/badge.svg)](https://github.com/keltonhalbert/SHARPlib/actions/workflows/doxygen-gh-pages.yml)
[![Anaconda-Server Badge](https://anaconda.org/conda-forge/sharplib/badges/version.svg)](https://anaconda.org/conda-forge/sharplib)
[![PyPI - Version](https://img.shields.io/pypi/v/SHARPlib)](https://pypi.org/project/SHARPlib/)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/SHARPlib)
[![Anaconda-Server Badge](https://anaconda.org/conda-forge/sharplib/badges/platforms.svg)](https://anaconda.org/conda-forge/sharplib)


**Sounding and Hodograph Analysis and Research Program (SHARP)** C++ library for conducting analysis of atmospheric sounding profiles. Based on the NSHARP routines written by John Hart and Rich Thompson at the NWS Storm Prediction Center in Norman, Oklahoma. 

This is a public mirror of the official version hosted on the NOAA Vlab Gitlab.

## Table of Contents
- [About SHARPlib](#About-SHARPlib)
- [Build/install C++](#building-sharplib-c++-library)
- [Build/install Python](#installing-sharplib-python-bindings)
- [Documentation](https://keltonhalbert.github.io/SHARPlib/)

## About SHARPlib
Since the 1990s, the National Weather Service (NWS) Storm Prediction Center (SPC) has actively researched, developed, and maintained various software packages and libraries in-house for the post-processing and visualization of atmospheric sounding data. Initially developed by John Hart, SHARP was developed to display and compute derived atmospheric indices from observed weather balloons, and vertical profiles from model forecast data. Eventually it was included in N-AWIPS/GEMPAK/AWIPS2 as NSHARP, used to process archive research data as SHARPTab, used to generate web graphics as SHARPGIF, used to post-process model and mesoanalysis gridded data, ported to Python as SHARPpy, and is used currently in SPC operations as BigSHARP.

SHARPpy sought to open source these computations and visualizations in order to facilitate reproducible open science, provide a cross-platform means of visualizing sounding data, and internally simplify the number of SHARP derivatives with unique code bases. While many of the goals were met by SHARPpy, it struggled in a few key areas:

    - Pure python is not a performant solution when post-processing gridded data, particularly when dealing with parcel lifting routines.
    - Maintaining an interactive data visualization application complete with live access data feeds along with a core computational library was challenging.
    - The computational library component wasn't very generalizable, in large part because I wrote the code while taking an OOP class, and everything became a nail to the object hammer. 

SHARPlib seeks to take the successes of SHARPpy, while having the benefit of more experience and hindsight. It is most analogous to the ```sharppy.sharptab``` import, but written in C++ for performance and wrapped for Python/Numpy using [nanobind](https://github.com/wjakob/nanobind). It is separate from any visualization software and dependencies, generalized to be more composable where appropriate, and optimised for performance. 

## Building SHARPlib C++ Library
### C++ Version
Code is designed to target the **C++17** standard `-std=c++17`, and generally should not use **C++2X** features. This library is written to work on **RHEL8** systems, and with careful configuration, backwards to **RHEL7**, and should not attempt to use bleeding edge features at risk of breaking compatibility. The C++ 17 standard is not supported by the default RHEL7 compilers, but a version of GCC that supports the C++17 standard can be acquired through the **__devtoolset__** RHEL channel. 

### BEFORE YOU BUILD
SHARPlib has some light-weight dependencies for testing, benchmarking, documentation building, string formatting, and creating python bindings. These can easily be downloaded for building by running the following command to download the dependencies from GitHub over SSH:
```bash
git submodule update --init --recursive 
```

### Building SHARPlib (C++)
To build SHARPlib, execute the following commands in the project root directory:
```bash
cmake -B build .
cmake --build build -j N_BUILD_PROCESSES
```

This will build the static library in the ```{$POJECT_ROOT}/build``` directory in parallel with N_BUILD_PROCESSES. This isn't terribly useful by itself, so to install the static library, you can execute: 
```bash
cmake -B build . --install-prefix=/path/to/where/you/want/SHARPlib
cmake --build build -j N_BUILD_PROCESSES
cmake --install build
```

If you wish to create a debug build, simply pass the following arguments to CMake:
```bash
cmake --build build -j N_BUILD_PROCESSES --config Debug
```

### Testing SHARPlib (C++)
For unit tests, we make use of the [doctest singe header source library](https://github.com/doctest/doctest) found in the `tests` directory. In order to build and run the tests, execute the following commands from the project root directory:

```bash
cmake -B build . 
cmake --build build -j N_BUILD_PROCESSES --target SHARPlib_tests
ctest --test-dir build
```


## Installing SHARPlib Python Bindings
### Installing SHARPlib (Python)
SHARPlib is available via pip/PyPI, and can be installed for Linux, MacOS, and Windows using:

```bash
pip install SHARPlib
```

SHARPlib is also available via conda-forge, although it's current release candidate status means it is not yet a part of the main channels. Still, it can be installed using the following command: 
```bash
conda install conda-forge/label/sharplib_rc::sharplib 
```

### Building SHARPlib (Python)
SHARPlib C++ code can be called from Python using [nanobind](https://github.com/wjakob/nanobind) to handle the wrapping.
Building SHARPlib with its Python bindings is quite easy-- you can simply clone this repository and install it via pip from the current directory: 
```bash
# Ensure the submodule dependencies are cloned
git submodule update --init --recursive 
pip install .
```

If you desire to manually build the SHARPlib library + python bindings, you may execute:
```bash
cmake -B build . -DBUILD_PYBIND=ON
cmake --build build -j N_BUILD_PROCESSES
```

***NOTE: You will need a C++ compiler installed (i.e. cl, gcc, clang)***

### Testing SHARPlib (Python)
Python tests are facilitated using ```pytest```. Run:
```bash
pytest
```
in the root of this git repository to execute tests.

## Style Guide
Though there are likely to be instances where it will need to be deviated from, this code generally attempts to abide by the [ISO C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines). While line width requirements are generally archaic, where possible we attempt to __keep line lengths to a maximum of 80 characters__ in order to preserve split screen code editing.  

Another note to the Style Guide is that, where possible/appropriate, full or verbose variable names are preferred to abbreviated ones when working with function parameters. For example, `temperature` or `pressure` is preferable to `temp` or `pres` when defining function arguments, so that it is abundantly clear to the code reader what is being passed through. This is especially the case with temperature, as `temp` is commonly used to refer to temporary variables, leading to confusion. 

## Building the Documentation
To build the HTML documentation pages, the following can be executed in the terminal from the project root: 
```bash
doxygen Doxyfile
```

This will generate the HTML pages using the docstring in the header files. Obviously, it requires that Doxygen be installed, [which can be found here.](https://doxygen.nl/) 

Documentation is automatically built on push, [and can be found here](https://keltonhalbert.github.io/SHARPlib/)

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "SHARPlib",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "meteorology, weather, atmospheric science, atmosphere, soundings, skewt, hodograph",
    "author": null,
    "author_email": "Kelton Halbert <kelton.halbert@noaa.gov>",
    "download_url": "https://files.pythonhosted.org/packages/ad/7e/54319f9eeede01a2663db72cc65af66d926bc17542a37c0ee09a2d968c38/sharplib-1.0.0.tar.gz",
    "platform": null,
    "description": "# SHARPlib\n[![C++ CI (Linux, MacOS, Windows)](https://github.com/keltonhalbert/SHARPlib/actions/workflows/cmake.yml/badge.svg)](https://github.com/keltonhalbert/SHARPlib/actions/workflows/cmake.yml)\n[![Python CI (Linux, MacOS, Windows)](https://github.com/keltonhalbert/SHARPlib/actions/workflows/python.yml/badge.svg)](https://github.com/keltonhalbert/SHARPlib/actions/workflows/python.yml)\n[![Build Wheels](https://github.com/keltonhalbert/SHARPlib/actions/workflows/wheels.yml/badge.svg)](https://github.com/keltonhalbert/SHARPlib/actions/workflows/wheels.yml)\n[![Build Docs](https://github.com/keltonhalbert/SHARPlib/actions/workflows/doxygen-gh-pages.yml/badge.svg)](https://github.com/keltonhalbert/SHARPlib/actions/workflows/doxygen-gh-pages.yml)\n[![Anaconda-Server Badge](https://anaconda.org/conda-forge/sharplib/badges/version.svg)](https://anaconda.org/conda-forge/sharplib)\n[![PyPI - Version](https://img.shields.io/pypi/v/SHARPlib)](https://pypi.org/project/SHARPlib/)\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/SHARPlib)\n[![Anaconda-Server Badge](https://anaconda.org/conda-forge/sharplib/badges/platforms.svg)](https://anaconda.org/conda-forge/sharplib)\n\n\n**Sounding and Hodograph Analysis and Research Program (SHARP)** C++ library for conducting analysis of atmospheric sounding profiles. Based on the NSHARP routines written by John Hart and Rich Thompson at the NWS Storm Prediction Center in Norman, Oklahoma. \n\nThis is a public mirror of the official version hosted on the NOAA Vlab Gitlab.\n\n## Table of Contents\n- [About SHARPlib](#About-SHARPlib)\n- [Build/install C++](#building-sharplib-c++-library)\n- [Build/install Python](#installing-sharplib-python-bindings)\n- [Documentation](https://keltonhalbert.github.io/SHARPlib/)\n\n## About SHARPlib\nSince the 1990s, the National Weather Service (NWS) Storm Prediction Center (SPC) has actively researched, developed, and maintained various software packages and libraries in-house for the post-processing and visualization of atmospheric sounding data. Initially developed by John Hart, SHARP was developed to display and compute derived atmospheric indices from observed weather balloons, and vertical profiles from model forecast data. Eventually it was included in N-AWIPS/GEMPAK/AWIPS2 as NSHARP, used to process archive research data as SHARPTab, used to generate web graphics as SHARPGIF, used to post-process model and mesoanalysis gridded data, ported to Python as SHARPpy, and is used currently in SPC operations as BigSHARP.\n\nSHARPpy sought to open source these computations and visualizations in order to facilitate reproducible open science, provide a cross-platform means of visualizing sounding data, and internally simplify the number of SHARP derivatives with unique code bases. While many of the goals were met by SHARPpy, it struggled in a few key areas:\n\n    - Pure python is not a performant solution when post-processing gridded data, particularly when dealing with parcel lifting routines.\n    - Maintaining an interactive data visualization application complete with live access data feeds along with a core computational library was challenging.\n    - The computational library component wasn't very generalizable, in large part because I wrote the code while taking an OOP class, and everything became a nail to the object hammer. \n\nSHARPlib seeks to take the successes of SHARPpy, while having the benefit of more experience and hindsight. It is most analogous to the ```sharppy.sharptab``` import, but written in C++ for performance and wrapped for Python/Numpy using [nanobind](https://github.com/wjakob/nanobind). It is separate from any visualization software and dependencies, generalized to be more composable where appropriate, and optimised for performance. \n\n## Building SHARPlib C++ Library\n### C++ Version\nCode is designed to target the **C++17** standard `-std=c++17`, and generally should not use **C++2X** features. This library is written to work on **RHEL8** systems, and with careful configuration, backwards to **RHEL7**, and should not attempt to use bleeding edge features at risk of breaking compatibility. The C++ 17 standard is not supported by the default RHEL7 compilers, but a version of GCC that supports the C++17 standard can be acquired through the **__devtoolset__** RHEL channel. \n\n### BEFORE YOU BUILD\nSHARPlib has some light-weight dependencies for testing, benchmarking, documentation building, string formatting, and creating python bindings. These can easily be downloaded for building by running the following command to download the dependencies from GitHub over SSH:\n```bash\ngit submodule update --init --recursive \n```\n\n### Building SHARPlib (C++)\nTo build SHARPlib, execute the following commands in the project root directory:\n```bash\ncmake -B build .\ncmake --build build -j N_BUILD_PROCESSES\n```\n\nThis will build the static library in the ```{$POJECT_ROOT}/build``` directory in parallel with N_BUILD_PROCESSES. This isn't terribly useful by itself, so to install the static library, you can execute: \n```bash\ncmake -B build . --install-prefix=/path/to/where/you/want/SHARPlib\ncmake --build build -j N_BUILD_PROCESSES\ncmake --install build\n```\n\nIf you wish to create a debug build, simply pass the following arguments to CMake:\n```bash\ncmake --build build -j N_BUILD_PROCESSES --config Debug\n```\n\n### Testing SHARPlib (C++)\nFor unit tests, we make use of the [doctest singe header source library](https://github.com/doctest/doctest) found in the `tests` directory. In order to build and run the tests, execute the following commands from the project root directory:\n\n```bash\ncmake -B build . \ncmake --build build -j N_BUILD_PROCESSES --target SHARPlib_tests\nctest --test-dir build\n```\n\n\n## Installing SHARPlib Python Bindings\n### Installing SHARPlib (Python)\nSHARPlib is available via pip/PyPI, and can be installed for Linux, MacOS, and Windows using:\n\n```bash\npip install SHARPlib\n```\n\nSHARPlib is also available via conda-forge, although it's current release candidate status means it is not yet a part of the main channels. Still, it can be installed using the following command: \n```bash\nconda install conda-forge/label/sharplib_rc::sharplib \n```\n\n### Building SHARPlib (Python)\nSHARPlib C++ code can be called from Python using [nanobind](https://github.com/wjakob/nanobind) to handle the wrapping.\nBuilding SHARPlib with its Python bindings is quite easy-- you can simply clone this repository and install it via pip from the current directory: \n```bash\n# Ensure the submodule dependencies are cloned\ngit submodule update --init --recursive \npip install .\n```\n\nIf you desire to manually build the SHARPlib library + python bindings, you may execute:\n```bash\ncmake -B build . -DBUILD_PYBIND=ON\ncmake --build build -j N_BUILD_PROCESSES\n```\n\n***NOTE: You will need a C++ compiler installed (i.e. cl, gcc, clang)***\n\n### Testing SHARPlib (Python)\nPython tests are facilitated using ```pytest```. Run:\n```bash\npytest\n```\nin the root of this git repository to execute tests.\n\n## Style Guide\nThough there are likely to be instances where it will need to be deviated from, this code generally attempts to abide by the [ISO C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines). While line width requirements are generally archaic, where possible we attempt to __keep line lengths to a maximum of 80 characters__ in order to preserve split screen code editing.  \n\nAnother note to the Style Guide is that, where possible/appropriate, full or verbose variable names are preferred to abbreviated ones when working with function parameters. For example, `temperature` or `pressure` is preferable to `temp` or `pres` when defining function arguments, so that it is abundantly clear to the code reader what is being passed through. This is especially the case with temperature, as `temp` is commonly used to refer to temporary variables, leading to confusion. \n\n## Building the Documentation\nTo build the HTML documentation pages, the following can be executed in the terminal from the project root: \n```bash\ndoxygen Doxyfile\n```\n\nThis will generate the HTML pages using the docstring in the header files. Obviously, it requires that Doxygen be installed, [which can be found here.](https://doxygen.nl/) \n\nDocumentation is automatically built on push, [and can be found here](https://keltonhalbert.github.io/SHARPlib/)\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Sounding and Hodograph Analysis and Research Program Library (SHARPlib) for processing vertical profiles of meteorological/atmospheric sounding data.",
    "version": "1.0.0",
    "project_urls": {
        "Bluesky": "https://bsky.app/profile/stormscale.io",
        "Documentation": "https://keltonhalbert.github.io/SHARPlib",
        "homepage": "https://github.com/keltonhalbert/SHARPlib"
    },
    "split_keywords": [
        "meteorology",
        " weather",
        " atmospheric science",
        " atmosphere",
        " soundings",
        " skewt",
        " hodograph"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fac3b1a11429abc00412939e59feb01ffa1b1f4014578d1670a8f8bba91906f0",
                "md5": "39e52b8bbe97c7db0a96c0704c34452a",
                "sha256": "2f8c2d1554b64dfe13ba2aa8ce3906e62a30e30c6fae9c37e71cae435dcc6f04"
            },
            "downloads": -1,
            "filename": "sharplib-1.0.0-cp310-cp310-macosx_10_14_universal2.whl",
            "has_sig": false,
            "md5_digest": "39e52b8bbe97c7db0a96c0704c34452a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 454131,
            "upload_time": "2025-08-13T14:43:11",
            "upload_time_iso_8601": "2025-08-13T14:43:11.772509Z",
            "url": "https://files.pythonhosted.org/packages/fa/c3/b1a11429abc00412939e59feb01ffa1b1f4014578d1670a8f8bba91906f0/sharplib-1.0.0-cp310-cp310-macosx_10_14_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4d753bbc182af0723bda9b3e81e95994bbcb51dd52c7edd1475d60f86ea5b96c",
                "md5": "74429683ebb92e2ee85936cf65db6859",
                "sha256": "392021a36ed4048538ba3c3e36bbed7c5c5471ff3de7e74eba8e3b1b3f7e364c"
            },
            "downloads": -1,
            "filename": "sharplib-1.0.0-cp310-cp310-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "74429683ebb92e2ee85936cf65db6859",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 240971,
            "upload_time": "2025-08-13T14:43:13",
            "upload_time_iso_8601": "2025-08-13T14:43:13.505643Z",
            "url": "https://files.pythonhosted.org/packages/4d/75/3bbc182af0723bda9b3e81e95994bbcb51dd52c7edd1475d60f86ea5b96c/sharplib-1.0.0-cp310-cp310-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c41d5cb16ba533bce85a4e0a1016664ee02931102765c5a25db1c7a3404062b4",
                "md5": "eeaea3cb5148a42665f8f14ac4ee1adc",
                "sha256": "fa06695c1b15c6565f5a35ebc862a4f71bde1284c10c6b86fa9721c91bbe5fe0"
            },
            "downloads": -1,
            "filename": "sharplib-1.0.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "eeaea3cb5148a42665f8f14ac4ee1adc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 218884,
            "upload_time": "2025-08-13T14:43:14",
            "upload_time_iso_8601": "2025-08-13T14:43:14.764115Z",
            "url": "https://files.pythonhosted.org/packages/c4/1d/5cb16ba533bce85a4e0a1016664ee02931102765c5a25db1c7a3404062b4/sharplib-1.0.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aa3952e83837a7cf9aa69a0c7071e6b70af99428fb50e1c3b5eff4f13dc56d0a",
                "md5": "b7843b173c9cd48fe04a99e6184a9ba8",
                "sha256": "7e8f3c6f7887d4f6bfe34933a00a98eb26e733be75f89560c5151a05deb7140d"
            },
            "downloads": -1,
            "filename": "sharplib-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b7843b173c9cd48fe04a99e6184a9ba8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 322816,
            "upload_time": "2025-08-13T14:43:15",
            "upload_time_iso_8601": "2025-08-13T14:43:15.971488Z",
            "url": "https://files.pythonhosted.org/packages/aa/39/52e83837a7cf9aa69a0c7071e6b70af99428fb50e1c3b5eff4f13dc56d0a/sharplib-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6981a283c57155f44f1e208f82d40547713b9ea2696e824d1f48723b35b03724",
                "md5": "f3128fe07f5dfa1ddad4a9d269450d31",
                "sha256": "8b973ac5466a9f9e42e4f3835f56e69bdffdbeddc709894b142c9c56c40d1bc0"
            },
            "downloads": -1,
            "filename": "sharplib-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f3128fe07f5dfa1ddad4a9d269450d31",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 331619,
            "upload_time": "2025-08-13T14:43:17",
            "upload_time_iso_8601": "2025-08-13T14:43:17.429788Z",
            "url": "https://files.pythonhosted.org/packages/69/81/a283c57155f44f1e208f82d40547713b9ea2696e824d1f48723b35b03724/sharplib-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "af35c34537de62e57f0b3e024140aab30aec0c67a61878a6ec1038ebb190ecb2",
                "md5": "fd5b58865736f2ec6750285c7ce27020",
                "sha256": "b2391a8d7740d6177a073b488f29b6ba50f0671693af7d610c99916ac459e54f"
            },
            "downloads": -1,
            "filename": "sharplib-1.0.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fd5b58865736f2ec6750285c7ce27020",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 306452,
            "upload_time": "2025-08-13T14:43:18",
            "upload_time_iso_8601": "2025-08-13T14:43:18.999676Z",
            "url": "https://files.pythonhosted.org/packages/af/35/c34537de62e57f0b3e024140aab30aec0c67a61878a6ec1038ebb190ecb2/sharplib-1.0.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "109fb1f3f26d22f41fe6dd080c25532d9fb2e073569ce35c1b82b237b3f19fe3",
                "md5": "5866d0e93290638ed1622baef75ca3c6",
                "sha256": "6d02167b47ecccbc28bda2509ef6a84bfb32892a6609cde23f389eea727893b9"
            },
            "downloads": -1,
            "filename": "sharplib-1.0.0-cp311-cp311-macosx_10_14_universal2.whl",
            "has_sig": false,
            "md5_digest": "5866d0e93290638ed1622baef75ca3c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 454800,
            "upload_time": "2025-08-13T14:43:20",
            "upload_time_iso_8601": "2025-08-13T14:43:20.296581Z",
            "url": "https://files.pythonhosted.org/packages/10/9f/b1f3f26d22f41fe6dd080c25532d9fb2e073569ce35c1b82b237b3f19fe3/sharplib-1.0.0-cp311-cp311-macosx_10_14_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8e60e5186277324b45df0d78b7822a0eb53fde36c2d8344297d46f1fa09b4010",
                "md5": "1d0a2121d62b8c4a6a5837023942a210",
                "sha256": "27e0a11966d76dcc5e909b32268c7738ed6812cc1b2575b17ab683e03870e5cf"
            },
            "downloads": -1,
            "filename": "sharplib-1.0.0-cp311-cp311-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1d0a2121d62b8c4a6a5837023942a210",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 241359,
            "upload_time": "2025-08-13T14:43:21",
            "upload_time_iso_8601": "2025-08-13T14:43:21.492237Z",
            "url": "https://files.pythonhosted.org/packages/8e/60/e5186277324b45df0d78b7822a0eb53fde36c2d8344297d46f1fa09b4010/sharplib-1.0.0-cp311-cp311-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "309a343e3d46492585b65b35c49230a3f6015acd6e09c76565baca6b1b27f6dc",
                "md5": "96417da5de380ab2d70a6181369cc9c9",
                "sha256": "28791e5ab2dd7b272cae0d0c805b4fbf3745632c5789b08d996a421612667545"
            },
            "downloads": -1,
            "filename": "sharplib-1.0.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "96417da5de380ab2d70a6181369cc9c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 219283,
            "upload_time": "2025-08-13T14:43:22",
            "upload_time_iso_8601": "2025-08-13T14:43:22.805803Z",
            "url": "https://files.pythonhosted.org/packages/30/9a/343e3d46492585b65b35c49230a3f6015acd6e09c76565baca6b1b27f6dc/sharplib-1.0.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "493165276cea2e249a21d7a71c91ed0bbf9f25591a9d0361925caaaac4fc4509",
                "md5": "42c081ccc0cbdee3885896fe606529eb",
                "sha256": "6990ba8d2eb76578d273ea0b46419626041abb285a6eb85aa9222f5e8820ee97"
            },
            "downloads": -1,
            "filename": "sharplib-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "42c081ccc0cbdee3885896fe606529eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 323104,
            "upload_time": "2025-08-13T14:43:24",
            "upload_time_iso_8601": "2025-08-13T14:43:24.373738Z",
            "url": "https://files.pythonhosted.org/packages/49/31/65276cea2e249a21d7a71c91ed0bbf9f25591a9d0361925caaaac4fc4509/sharplib-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b69625e2a412a0d3e6e352489040f952e68164c0d4bf97c3321fab652c666756",
                "md5": "0213f0fd2edb0f418f3b4a98dd2e9cc1",
                "sha256": "d4f93c918f6e9d4dd4edfa86d58d79f43515cbf2f6ad200d830f0abea2dac997"
            },
            "downloads": -1,
            "filename": "sharplib-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0213f0fd2edb0f418f3b4a98dd2e9cc1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 331968,
            "upload_time": "2025-08-13T14:43:25",
            "upload_time_iso_8601": "2025-08-13T14:43:25.691624Z",
            "url": "https://files.pythonhosted.org/packages/b6/96/25e2a412a0d3e6e352489040f952e68164c0d4bf97c3321fab652c666756/sharplib-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fef541d2eae722a08a8655f5b892f5f97d9d6b4ad96caf9b14c2bb55b0fa8de5",
                "md5": "64c3d1a00552412da4fb46aacbbb41af",
                "sha256": "a4af4673b538552068c6dd09f10ca519a9a255fef33157a0693004a321ed8a3b"
            },
            "downloads": -1,
            "filename": "sharplib-1.0.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "64c3d1a00552412da4fb46aacbbb41af",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 306736,
            "upload_time": "2025-08-13T14:43:26",
            "upload_time_iso_8601": "2025-08-13T14:43:26.989070Z",
            "url": "https://files.pythonhosted.org/packages/fe/f5/41d2eae722a08a8655f5b892f5f97d9d6b4ad96caf9b14c2bb55b0fa8de5/sharplib-1.0.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d21ffa44930f3f302027cc411b8f3bc06fc0669cc4f6b6efdbb47eccc11737b8",
                "md5": "df010f9ba0b828b038284b13581d716c",
                "sha256": "3a441be128dc320c8c2c323b85cc814b53911d68f4bf36fad7eaa399cc192ad7"
            },
            "downloads": -1,
            "filename": "sharplib-1.0.0-cp312-cp312-macosx_10_14_universal2.whl",
            "has_sig": false,
            "md5_digest": "df010f9ba0b828b038284b13581d716c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 454668,
            "upload_time": "2025-08-13T14:43:28",
            "upload_time_iso_8601": "2025-08-13T14:43:28.242821Z",
            "url": "https://files.pythonhosted.org/packages/d2/1f/fa44930f3f302027cc411b8f3bc06fc0669cc4f6b6efdbb47eccc11737b8/sharplib-1.0.0-cp312-cp312-macosx_10_14_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7e49788b4150582a0a6b376b22d328e6ee274fa7a5792666ec0ecfd92539279e",
                "md5": "c4c528c41c337a0456f2409af69d2312",
                "sha256": "27af6ee0f93aa74e9a3cc143327b580142e95edf224c9f0283c2f42e5c644a01"
            },
            "downloads": -1,
            "filename": "sharplib-1.0.0-cp312-cp312-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c4c528c41c337a0456f2409af69d2312",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 241705,
            "upload_time": "2025-08-13T14:43:29",
            "upload_time_iso_8601": "2025-08-13T14:43:29.419239Z",
            "url": "https://files.pythonhosted.org/packages/7e/49/788b4150582a0a6b376b22d328e6ee274fa7a5792666ec0ecfd92539279e/sharplib-1.0.0-cp312-cp312-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "834aaf77c3b3ba2ee839a7a900ab19bdad7eab352655a5895e10a2be89bb1138",
                "md5": "fa9ec4d57b91cec606cb9665eb9937f3",
                "sha256": "d401038791ced53cdf71ae8e24b8e6c11ef997a619979106d9ef0827ee564f1e"
            },
            "downloads": -1,
            "filename": "sharplib-1.0.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fa9ec4d57b91cec606cb9665eb9937f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 218707,
            "upload_time": "2025-08-13T14:43:30",
            "upload_time_iso_8601": "2025-08-13T14:43:30.538304Z",
            "url": "https://files.pythonhosted.org/packages/83/4a/af77c3b3ba2ee839a7a900ab19bdad7eab352655a5895e10a2be89bb1138/sharplib-1.0.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b4d5aa3a3d739aa4fc5ab1a805d1fb61430bc4b954f60dcbae2e649272bef4a6",
                "md5": "f407cd01f98617cb13a4cf2beca34350",
                "sha256": "17e26cc6c1815f4d496fccc523c3d2f0dbb0be279fbde954e51609e7f82a90e8"
            },
            "downloads": -1,
            "filename": "sharplib-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f407cd01f98617cb13a4cf2beca34350",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 322132,
            "upload_time": "2025-08-13T14:43:31",
            "upload_time_iso_8601": "2025-08-13T14:43:31.713654Z",
            "url": "https://files.pythonhosted.org/packages/b4/d5/aa3a3d739aa4fc5ab1a805d1fb61430bc4b954f60dcbae2e649272bef4a6/sharplib-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ed2f7f6383786ac35587170204ff29caac3260ca488d5cf74ab8f4db822bf38e",
                "md5": "fa255602817e522418a0c667d5ea27d6",
                "sha256": "29b27fd59f4c86c661e063e9ab12e7f8427e0f23eb665b0e137b03e803e4ee12"
            },
            "downloads": -1,
            "filename": "sharplib-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fa255602817e522418a0c667d5ea27d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 331118,
            "upload_time": "2025-08-13T14:43:33",
            "upload_time_iso_8601": "2025-08-13T14:43:33.233324Z",
            "url": "https://files.pythonhosted.org/packages/ed/2f/7f6383786ac35587170204ff29caac3260ca488d5cf74ab8f4db822bf38e/sharplib-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b7180677136e16006faa92617b49b6b5dfbfd71a716fd60e108cbb3c0edd3717",
                "md5": "327d1a1501bad239449ca7c030a80cc6",
                "sha256": "4e99775f4bd87b3f9a317d111d9a7331bb55937d6c7a63111343b3bca220910c"
            },
            "downloads": -1,
            "filename": "sharplib-1.0.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "327d1a1501bad239449ca7c030a80cc6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 306544,
            "upload_time": "2025-08-13T14:43:34",
            "upload_time_iso_8601": "2025-08-13T14:43:34.428647Z",
            "url": "https://files.pythonhosted.org/packages/b7/18/0677136e16006faa92617b49b6b5dfbfd71a716fd60e108cbb3c0edd3717/sharplib-1.0.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e220038edb469a34ce39395ea7219795c6b8fc96f755c766c88d1f6f3ebc6d01",
                "md5": "9e0a0bfb81cb7bb1109abd068988e36a",
                "sha256": "a03fcf526232c26be4a5434ae28d20877e5895d309c74a7f989f3f552295a2d7"
            },
            "downloads": -1,
            "filename": "sharplib-1.0.0-cp313-cp313-macosx_10_14_universal2.whl",
            "has_sig": false,
            "md5_digest": "9e0a0bfb81cb7bb1109abd068988e36a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 454385,
            "upload_time": "2025-08-13T14:43:35",
            "upload_time_iso_8601": "2025-08-13T14:43:35.642426Z",
            "url": "https://files.pythonhosted.org/packages/e2/20/038edb469a34ce39395ea7219795c6b8fc96f755c766c88d1f6f3ebc6d01/sharplib-1.0.0-cp313-cp313-macosx_10_14_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d2d8af7c8d2bb0e3dc2e6c3c55b5a61fb360e8310c0839c64b69d5acfcabaa5f",
                "md5": "38b34c5688e3750fe92b65f602073d0a",
                "sha256": "bc0b9cd0f1402a2befca4afa04825ad3394010d92aaad9136ad5bc4474e3ff3f"
            },
            "downloads": -1,
            "filename": "sharplib-1.0.0-cp313-cp313-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "38b34c5688e3750fe92b65f602073d0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 241585,
            "upload_time": "2025-08-13T14:43:37",
            "upload_time_iso_8601": "2025-08-13T14:43:37.016951Z",
            "url": "https://files.pythonhosted.org/packages/d2/d8/af7c8d2bb0e3dc2e6c3c55b5a61fb360e8310c0839c64b69d5acfcabaa5f/sharplib-1.0.0-cp313-cp313-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bfae8df290d13aaecdd46d77d64d3c456f11511bdd0e3b8ebdcfed63c0a1dcc3",
                "md5": "20f72d197ad0b007bc5701e8b8074063",
                "sha256": "cb870d733d2c41f55959998c0e4606d4bf8faeb4c78d1919f038632265811d75"
            },
            "downloads": -1,
            "filename": "sharplib-1.0.0-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "20f72d197ad0b007bc5701e8b8074063",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 218592,
            "upload_time": "2025-08-13T14:43:38",
            "upload_time_iso_8601": "2025-08-13T14:43:38.172829Z",
            "url": "https://files.pythonhosted.org/packages/bf/ae/8df290d13aaecdd46d77d64d3c456f11511bdd0e3b8ebdcfed63c0a1dcc3/sharplib-1.0.0-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c4d7ada53a7a17d94567f63ac871d1e96ba91019324c78c0691eb7ce4a3e23a8",
                "md5": "5f44de6893192fec9802ea0ba57ba626",
                "sha256": "c520dd587058e6139468feab3383ce94523eae148a917893645ae0cacae4f8f7"
            },
            "downloads": -1,
            "filename": "sharplib-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5f44de6893192fec9802ea0ba57ba626",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 322064,
            "upload_time": "2025-08-13T14:43:39",
            "upload_time_iso_8601": "2025-08-13T14:43:39.346599Z",
            "url": "https://files.pythonhosted.org/packages/c4/d7/ada53a7a17d94567f63ac871d1e96ba91019324c78c0691eb7ce4a3e23a8/sharplib-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9f188ff508722be0da0f111dfb977fe11db5cde72b3f92edbbc20ed004432c90",
                "md5": "ffceecdf03fb5b7d6ebb7b6fa75e187b",
                "sha256": "e07e0a0134bcc242be79476a54f9e8485d7d011c3ea82b9b66abe591b32ef012"
            },
            "downloads": -1,
            "filename": "sharplib-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ffceecdf03fb5b7d6ebb7b6fa75e187b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 331059,
            "upload_time": "2025-08-13T14:43:40",
            "upload_time_iso_8601": "2025-08-13T14:43:40.903926Z",
            "url": "https://files.pythonhosted.org/packages/9f/18/8ff508722be0da0f111dfb977fe11db5cde72b3f92edbbc20ed004432c90/sharplib-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5004dd4d4d3a6c6f782bdb3bc5efc138fb038a2882ee803cf712d35cc265449d",
                "md5": "2efea8b4892f6280670bcc8f31022b0a",
                "sha256": "2ddbeb12c739175936acd86c4acc49ebf6fc8df5c036598f0ad1338097a7d7a0"
            },
            "downloads": -1,
            "filename": "sharplib-1.0.0-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2efea8b4892f6280670bcc8f31022b0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 306458,
            "upload_time": "2025-08-13T14:43:42",
            "upload_time_iso_8601": "2025-08-13T14:43:42.147944Z",
            "url": "https://files.pythonhosted.org/packages/50/04/dd4d4d3a6c6f782bdb3bc5efc138fb038a2882ee803cf712d35cc265449d/sharplib-1.0.0-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ad7e54319f9eeede01a2663db72cc65af66d926bc17542a37c0ee09a2d968c38",
                "md5": "77a0eb5aa5d033621798be7f27017cc5",
                "sha256": "7c9920a9d045e992776f1c5774bfd29619df3ef4bdf95579c10199ee567935d5"
            },
            "downloads": -1,
            "filename": "sharplib-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "77a0eb5aa5d033621798be7f27017cc5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 9586173,
            "upload_time": "2025-08-13T14:43:43",
            "upload_time_iso_8601": "2025-08-13T14:43:43.558395Z",
            "url": "https://files.pythonhosted.org/packages/ad/7e/54319f9eeede01a2663db72cc65af66d926bc17542a37c0ee09a2d968c38/sharplib-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-13 14:43:43",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "keltonhalbert",
    "github_project": "SHARPlib",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "sharplib"
}
        
Elapsed time: 1.24959s