sounderpy


Namesounderpy JSON
Version 3.0.3 PyPI version JSON
download
home_pageNone
SummaryVertical Profile Data Retrieval and Analysis Tool For Python
upload_time2024-03-24 14:25:40
maintainerNone
docs_urlNone
authorNone
requires_python>=3.1
licenseNone
keywords meteorology science data-analysis weather forecasting
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <div align="center">
<img src="https://github.com/kylejgillett/sounderpy/assets/100786530/2e9477c9-e36a-4163-accb-fe46780058dd" width="250">

</div>

# SounderPy, the vertical profile data retrieval and analysis tool for Python
LATEST VERSION: v3.0.3 |  RELEASED: March, 2024  |  COPYRIGHT Kyle J Gillett, 2023, 2024

A Python package that helps you to access and plot vertical profile data for meteorological analysis 

[![PyPI Package](https://img.shields.io/pypi/v/sounderpy.svg)](https://pypi.python.org/pypi/sounderpy/)
[![PyPI Downloads](https://img.shields.io/pypi/dm/sounderpy.svg)](https://pypi.python.org/pypi/sounderpy/)
[![PyPI license](https://img.shields.io/pypi/l/ansicolortags.svg)](https://github.com/kylejgillett/sounderpy/blob/main/LICENSE.txt)
[![PyPI pyversions](https://img.shields.io/pypi/pyversions/sounderpy.svg)](https://pypi.python.org/pypi/sounderpy/)
[![GitHub commits](https://badgen.net/github/commits/kylejgillett/sounderpy)](https://GitHub.com/kylejgillett/sounderpy/commit/)
[![Maintainer](https://img.shields.io/badge/maintainer-kylejgillett-blue)](https://github.com/kylejgillett)
[![made-with-python](https://img.shields.io/badge/Made%20with-Python-1f425f.svg)](https://www.python.org/)
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.10011851.svg)](https://doi.org/10.5281/zenodo.10011851)

-----

<div align="center">
   
#### [VISIT SOUNDERPY DOCUMENTATION](https://kylejgillett.github.io/sounderpy/) | [CHECK OUT AN EXAMPLES & TUTORIALS](https://kylejgillett.github.io/sounderpy/examplescripts.html) 

### [VISIT THE OPERATIONAL SOUNDERPY SOUNDING ANALYSIS SITE](https://sounderpysoundings.anvil.app/)
</div>


## What is SounderPy:

**ABSTRACT:** SounderPy is a simple, open-source Python package for retrieving and plotting 
vertical profile (sounding) data. Built for simplicity and reliability for all uses and users, this 
project’s goal is to provide a uniform method for sounding analysis across multiple data types. 
Severe weather analysis and forecasting requires a sound comprehension of thermodynamic and 
kinematic properties of the environment. SounderPy makes this possible with robust access to 
data and custom visualizations. The tool creates complex yet effective sounding and hodograph 
plots with high readability which are designed specifically for severe weather analysis and 
forecasting. SounderPy is capable of retrieving and plotting model forecast data, observed 
radiosonde data, Aircraft Communications Addressing and Reporting System (ACARS) 
observation data, and model reanalysis data. All of this functionality can be completed in three
simple lines of code or less, making SounderPy an accessible tool for both Python experts and 
novices. A number of scientific Python libraries build the base of SounderPy’s efficient and 
durable functionality, such as NumPy, Matplotlib, xarray, Metpy, and SHARPpy. SounderPy is 
available through GitHub and PyPi and is distributed under an MIT license. 


SounderPy has been used by several institutions. For example, this tool has been implemented by the Des Moines, Columbia, and Grand Rapids National Weather Service Offices, the State University of New York at Albany, Mississippi State University, the University of North Dakota, and others. Many students at various universities have used SounderPy in projects and papers, such as students at Ohio State University, Central Michigan University & Rizal Technological University.



## Why SounderPy?
- Sometimes data is tough to find, and often times it’s even tougher to get it in the format you like. SounderPy gets you this data!
- The code needed for loading and parsing meteorological data, especially from models, can be large and messy. SounderPy keeps it hidden away in a PyPi package – just import and call sounderPy functions to keep your code clean!
- SounderPy functions are designed to be simple and quick making for reliable use in research, forecast/analysis operations, and simply for fun!



## What kind of data?:

| **DATA**                        | **FUNCTION**       | **TYPE**          | **TIME RANGE**    |
|---------------------------------|--------------------|-------------------|-------------------|
| ECMWF CDS ERA5 reanalysis*      | get_model_data()   | Reanalysis        | 1940-present      |
| UNIDATA THREDDS TDS RAP         | get_model_data()   | Reanalysis        | 2005-present      |
| UNIDATA THREDDS TDS RUC         | get_model_data()   | Reanalysis        | 2005-2020         |
| UNIDATA THREDDS NCEP-FNL        | get_model_data()   | Reanalysis        | 2005-2020         |
| ISU's BUFKIT archive            | get_bufkit_data()  | Model Forecast    | 2011-present      |
| PSU's BUFKIT feed               | get_bufkit_data()  | Model Forecast    | Most recent runs  |
| UNIDATA THREDDS TDS RAP         | get_model_data()   | Model Analysis    | Most recent run   |
| OU ACARS Archive                | acars_data()       | Observations      | 2019-present      |
| The Unv. of WY RAOB Archive     | get_obs_data()     | Observations      | 1973-present      |
| IGRAv2 Observation archive      | get_obs_data()     | Observations      | 1905-present      |
|  NWS NEXRAD AWS Archive         | pyart_radar_profile() | Observations   |  1990s-present    |

-------

## Installation

1. #### Install the SounderPy software:

   - SounderPy is available on PyPi and can be installed via ``pip``:

     ```
      pip install sounderpy
      ```
   - or via ``conda forge`` by first setting up the ``conda-forge`` channel:

     ```
      conda config --add channels conda-forge
      conda config --set channel_priority strict
     ```
     then
     ```
     conda install sounderpy
     ```
     or
     ```
     mamba install sounderpy
     ```
   
3. #### Import SounderPy into your Python project:
   ```py
   import sounderpy as spy
   ```
   
5. #### Lets declare a few simple variables we can use to get data:
   ```py
   year  = '2014' 
   month = '06'
   day   = '16'
   hour  = '18'
   station = 'OAX'
   ```
7. #### Get some data!
   ```py
   # this will get us 18z observations on June 16th, 2014 from OAX (Omaha, Neb)
   clean_data = spy.get_obs_data(station, year, month, day, hour)
   ```
   and boom! Now you have a callable dictionary of vertical profile reanalysis data including... 

   + Temperature
   + Dewpoint
   + Pressure
   + Height 
   + U-component Wind 
   + V-component Wind
   
### SounderPy can also plot profile data on unique sounding and hodograph figures!
   ```py 
   spy.build_sounding(clean_data, color_blind=True)
   ```
   
   ```py 
   spy.build_hodograph(clean_data, dark_mode=True)
   ```
   <div align="center">
   <img src="https://kylejgillett.github.io/sounderpy/_images/example-sounding_light.png" width="600">
   
   <img src="https://kylejgillett.github.io/sounderpy/_images/example-hodograph_dark.png" width="600">
   </div>

### To learn more about what you can do with SounderPy, [check out the documentation](https://kylejgillett.github.io/sounderpy/)
------

## AUTHORS AND CONTRIBUTORS
### **AUTHOR: Kyle J Gillett, Central Michigan University** 
##### *CONTRIBUTOR: Scott Thomas, NWS Grand Rapids | VWP Hodograph, Buoy-sites listing*
##### *CONTRIBUTOR: Amelia R H Urquhart, University of Oklahoma | ecape-parcels library*
##### *CONTRIBUTOR: Daryl Herzmann, Iowa State University | SounderPy Feedstock for conda-forge*

------


## CITING SOUNDERPY
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.10443609.svg)](https://doi.org/10.5281/zenodo.10443609)


in AMS format:

- Gillett, K., 2024: SounderPy: Vertical Profile Data Retrieval & Analysis Tool for Python (Version 3.0.3). Py-Pi, https://pypi.org/project/sounderpy/

------



## REFERENCES
- Harris, C.R., Millman, K.J., van der Walt, S.J. et al. Array programming with NumPy. Nature 585, 357–362 (2020). DOI: 10.1038/s41586-020-2649-2.
  
- Hoyer, S. & Hamman, J., (2017). xarray: N-D labeled Arrays and Datasets in Python. Journal of Open Research Software. 5(1), p.10. DOI: https://doi.org/10.5334/jors.148
  
- J. D. Hunter, "Matplotlib: A 2D Graphics Environment", Computing in Science & Engineering, vol. 9, no. 3, pp. 90-95, 2007.

- Ryan M. May, Sean C. Arms, Patrick Marsh, Eric Bruning, John R. Leeman, Kevin Goebbert, Jonathan E. Thielen, Zachary S Bruick, and M. Drew. Camron. Metpy: a Python package for meteorological data. 2023. URL: Unidata/MetPy, doi:10.5065/D6WW7G29.

- Ryan M. May, Sean C. Arms, John R. Leeman, and Chastang, J. Siphon: A collection of Python Utilities for Accessing Remote Atmospheric and Oceanic Datasets. Unidata. 2017. [Available online at https://github.com/Unidata/siphon.] doi:10.5065/D6CN72NW.

- Pauli Virtanen, Ralf Gommers, Travis E. Oliphant, Matt Haberland, Tyler Reddy, David Cournapeau, Evgeni Burovski, Pearu Peterson, Warren Weckesser, Jonathan Bright, Stéfan J. van der Walt, Matthew Brett, Joshua Wilson, K. Jarrod Millman, Nikolay Mayorov, Andrew R. J. Nelson, Eric Jones, Robert Kern, Eric Larson, CJ Carey, İlhan Polat, Yu Feng, Eric W. Moore, Jake VanderPlas, Denis Laxalde, Josef Perktold, Robert Cimrman, Ian Henriksen, E.A. Quintero, Charles R Harris, Anne M. Archibald, Antônio H. Ribeiro, Fabian Pedregosa, Paul van Mulbregt, and SciPy 1.0 Contributors. (2020) SciPy 1.0: Fundamental Algorithms for Scientific Computing in Python. Nature Methods, 17(3), 261-272.

- Marsh, P., Halbert, K., Blumberg, G., Supinie, T., Esmaili, R., Szkodzinski, J., "SHARPpy: Sounding/Hodograph Analysis and Research Program in Python." GitHub. Available at: https://github.com/sharppy/SHARPpy.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "sounderpy",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.1",
    "maintainer_email": null,
    "keywords": "meteorology, science, data-analysis, weather, forecasting",
    "author": null,
    "author_email": "\"Kyle J Gillett, Central Michigan University\" <kjgillett10@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/6c/f1/41a761a0f346596d868451f78f74f4309ee057a094cc2374349e220971b8/sounderpy-3.0.3.tar.gz",
    "platform": null,
    "description": "<div align=\"center\">\r\n<img src=\"https://github.com/kylejgillett/sounderpy/assets/100786530/2e9477c9-e36a-4163-accb-fe46780058dd\" width=\"250\">\r\n\r\n</div>\r\n\r\n# SounderPy, the vertical profile data retrieval and analysis tool for Python\r\nLATEST VERSION: v3.0.3 |  RELEASED: March, 2024  |  COPYRIGHT Kyle J Gillett, 2023, 2024\r\n\r\nA Python package that helps you to access and plot vertical profile data for meteorological analysis \r\n\r\n[![PyPI Package](https://img.shields.io/pypi/v/sounderpy.svg)](https://pypi.python.org/pypi/sounderpy/)\r\n[![PyPI Downloads](https://img.shields.io/pypi/dm/sounderpy.svg)](https://pypi.python.org/pypi/sounderpy/)\r\n[![PyPI license](https://img.shields.io/pypi/l/ansicolortags.svg)](https://github.com/kylejgillett/sounderpy/blob/main/LICENSE.txt)\r\n[![PyPI pyversions](https://img.shields.io/pypi/pyversions/sounderpy.svg)](https://pypi.python.org/pypi/sounderpy/)\r\n[![GitHub commits](https://badgen.net/github/commits/kylejgillett/sounderpy)](https://GitHub.com/kylejgillett/sounderpy/commit/)\r\n[![Maintainer](https://img.shields.io/badge/maintainer-kylejgillett-blue)](https://github.com/kylejgillett)\r\n[![made-with-python](https://img.shields.io/badge/Made%20with-Python-1f425f.svg)](https://www.python.org/)\r\n[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.10011851.svg)](https://doi.org/10.5281/zenodo.10011851)\r\n\r\n-----\r\n\r\n<div align=\"center\">\r\n   \r\n#### [VISIT SOUNDERPY DOCUMENTATION](https://kylejgillett.github.io/sounderpy/) | [CHECK OUT AN EXAMPLES & TUTORIALS](https://kylejgillett.github.io/sounderpy/examplescripts.html) \r\n\r\n### [VISIT THE OPERATIONAL SOUNDERPY SOUNDING ANALYSIS SITE](https://sounderpysoundings.anvil.app/)\r\n</div>\r\n\r\n\r\n## What is SounderPy:\r\n\r\n**ABSTRACT:** SounderPy is a simple, open-source Python package for retrieving and plotting \r\nvertical profile (sounding) data. Built for simplicity and reliability for all uses and users, this \r\nproject\u2019s goal is to provide a uniform method for sounding analysis across multiple data types. \r\nSevere weather analysis and forecasting requires a sound comprehension of thermodynamic and \r\nkinematic properties of the environment. SounderPy makes this possible with robust access to \r\ndata and custom visualizations. The tool creates complex yet effective sounding and hodograph \r\nplots with high readability which are designed specifically for severe weather analysis and \r\nforecasting. SounderPy is capable of retrieving and plotting model forecast data, observed \r\nradiosonde data, Aircraft Communications Addressing and Reporting System (ACARS) \r\nobservation data, and model reanalysis data. All of this functionality can be completed in three\r\nsimple lines of code or less, making SounderPy an accessible tool for both Python experts and \r\nnovices. A number of scientific Python libraries build the base of SounderPy\u2019s efficient and \r\ndurable functionality, such as NumPy, Matplotlib, xarray, Metpy, and SHARPpy. SounderPy is \r\navailable through GitHub and PyPi and is distributed under an MIT license. \r\n\r\n\r\nSounderPy has been used by several institutions. For example, this tool has been implemented by the Des Moines, Columbia, and Grand Rapids National Weather Service Offices, the State University of New York at Albany, Mississippi State University, the University of North Dakota, and others. Many students at various universities have used SounderPy in projects and papers, such as students at Ohio State University, Central Michigan University & Rizal Technological University.\r\n\r\n\r\n\r\n## Why SounderPy?\r\n- Sometimes data is tough to find, and often times it\u2019s even tougher to get it in the format you like. SounderPy gets you this data!\r\n- The code needed for loading and parsing meteorological data, especially from models, can be large and messy. SounderPy keeps it hidden away in a PyPi package \u2013 just import and call sounderPy functions to keep your code clean!\r\n- SounderPy functions are designed to be simple and quick making for reliable use in research, forecast/analysis operations, and simply for fun!\r\n\r\n\r\n\r\n## What kind of data?:\r\n\r\n| **DATA**                        | **FUNCTION**       | **TYPE**          | **TIME RANGE**    |\r\n|---------------------------------|--------------------|-------------------|-------------------|\r\n| ECMWF CDS ERA5 reanalysis*      | get_model_data()   | Reanalysis        | 1940-present      |\r\n| UNIDATA THREDDS TDS RAP         | get_model_data()   | Reanalysis        | 2005-present      |\r\n| UNIDATA THREDDS TDS RUC         | get_model_data()   | Reanalysis        | 2005-2020         |\r\n| UNIDATA THREDDS NCEP-FNL        | get_model_data()   | Reanalysis        | 2005-2020         |\r\n| ISU's BUFKIT archive            | get_bufkit_data()  | Model Forecast    | 2011-present      |\r\n| PSU's BUFKIT feed               | get_bufkit_data()  | Model Forecast    | Most recent runs  |\r\n| UNIDATA THREDDS TDS RAP         | get_model_data()   | Model Analysis    | Most recent run   |\r\n| OU ACARS Archive                | acars_data()       | Observations      | 2019-present      |\r\n| The Unv. of WY RAOB Archive     | get_obs_data()     | Observations      | 1973-present      |\r\n| IGRAv2 Observation archive      | get_obs_data()     | Observations      | 1905-present      |\r\n|  NWS NEXRAD AWS Archive         | pyart_radar_profile() | Observations   |  1990s-present    |\r\n\r\n-------\r\n\r\n## Installation\r\n\r\n1. #### Install the SounderPy software:\r\n\r\n   - SounderPy is available on PyPi and can be installed via ``pip``:\r\n\r\n     ```\r\n      pip install sounderpy\r\n      ```\r\n   - or via ``conda forge`` by first setting up the ``conda-forge`` channel:\r\n\r\n     ```\r\n      conda config --add channels conda-forge\r\n      conda config --set channel_priority strict\r\n     ```\r\n     then\r\n     ```\r\n     conda install sounderpy\r\n     ```\r\n     or\r\n     ```\r\n     mamba install sounderpy\r\n     ```\r\n   \r\n3. #### Import SounderPy into your Python project:\r\n   ```py\r\n   import sounderpy as spy\r\n   ```\r\n   \r\n5. #### Lets declare a few simple variables we can use to get data:\r\n   ```py\r\n   year  = '2014' \r\n   month = '06'\r\n   day   = '16'\r\n   hour  = '18'\r\n   station = 'OAX'\r\n   ```\r\n7. #### Get some data!\r\n   ```py\r\n   # this will get us 18z observations on June 16th, 2014 from OAX (Omaha, Neb)\r\n   clean_data = spy.get_obs_data(station, year, month, day, hour)\r\n   ```\r\n   and boom! Now you have a callable dictionary of vertical profile reanalysis data including... \r\n\r\n   + Temperature\r\n   + Dewpoint\r\n   + Pressure\r\n   + Height \r\n   + U-component Wind \r\n   + V-component Wind\r\n   \r\n### SounderPy can also plot profile data on unique sounding and hodograph figures!\r\n   ```py \r\n   spy.build_sounding(clean_data, color_blind=True)\r\n   ```\r\n   \r\n   ```py \r\n   spy.build_hodograph(clean_data, dark_mode=True)\r\n   ```\r\n   <div align=\"center\">\r\n   <img src=\"https://kylejgillett.github.io/sounderpy/_images/example-sounding_light.png\" width=\"600\">\r\n   \r\n   <img src=\"https://kylejgillett.github.io/sounderpy/_images/example-hodograph_dark.png\" width=\"600\">\r\n   </div>\r\n\r\n### To learn more about what you can do with SounderPy, [check out the documentation](https://kylejgillett.github.io/sounderpy/)\r\n------\r\n\r\n## AUTHORS AND CONTRIBUTORS\r\n### **AUTHOR: Kyle J Gillett, Central Michigan University** \r\n##### *CONTRIBUTOR: Scott Thomas, NWS Grand Rapids | VWP Hodograph, Buoy-sites listing*\r\n##### *CONTRIBUTOR: Amelia R H Urquhart, University of Oklahoma | ecape-parcels library*\r\n##### *CONTRIBUTOR: Daryl Herzmann, Iowa State University | SounderPy Feedstock for conda-forge*\r\n\r\n------\r\n\r\n\r\n## CITING SOUNDERPY\r\n[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.10443609.svg)](https://doi.org/10.5281/zenodo.10443609)\r\n\r\n\r\nin AMS format:\r\n\r\n- Gillett, K., 2024: SounderPy: Vertical Profile Data Retrieval & Analysis Tool for Python (Version 3.0.3). Py-Pi, https://pypi.org/project/sounderpy/\r\n\r\n------\r\n\r\n\r\n\r\n## REFERENCES\r\n- Harris, C.R., Millman, K.J., van der Walt, S.J. et al. Array programming with NumPy. Nature 585, 357\u2013362 (2020). DOI: 10.1038/s41586-020-2649-2.\r\n  \r\n- Hoyer, S. & Hamman, J., (2017). xarray: N-D labeled Arrays and Datasets in Python. Journal of Open Research Software. 5(1), p.10. DOI: https://doi.org/10.5334/jors.148\r\n  \r\n- J. D. Hunter, \"Matplotlib: A 2D Graphics Environment\", Computing in Science & Engineering, vol. 9, no. 3, pp. 90-95, 2007.\r\n\r\n- Ryan M. May, Sean C. Arms, Patrick Marsh, Eric Bruning, John R. Leeman, Kevin Goebbert, Jonathan E. Thielen, Zachary S Bruick, and M. Drew. Camron. Metpy: a Python package for meteorological data. 2023. URL: Unidata/MetPy, doi:10.5065/D6WW7G29.\r\n\r\n- Ryan M. May, Sean C. Arms, John R. Leeman, and Chastang, J. Siphon: A collection of Python Utilities for Accessing Remote Atmospheric and Oceanic Datasets. Unidata. 2017. [Available online at https://github.com/Unidata/siphon.] doi:10.5065/D6CN72NW.\r\n\r\n- Pauli Virtanen, Ralf Gommers, Travis E. Oliphant, Matt Haberland, Tyler Reddy, David Cournapeau, Evgeni Burovski, Pearu Peterson, Warren Weckesser, Jonathan Bright, St\u00e9fan J. van der Walt, Matthew Brett, Joshua Wilson, K. Jarrod Millman, Nikolay Mayorov, Andrew R. J. Nelson, Eric Jones, Robert Kern, Eric Larson, CJ Carey, \u0130lhan Polat, Yu Feng, Eric W. Moore, Jake VanderPlas, Denis Laxalde, Josef Perktold, Robert Cimrman, Ian Henriksen, E.A. Quintero, Charles R Harris, Anne M. Archibald, Ant\u00f4nio H. Ribeiro, Fabian Pedregosa, Paul van Mulbregt, and SciPy 1.0 Contributors. (2020) SciPy 1.0: Fundamental Algorithms for Scientific Computing in Python. Nature Methods, 17(3), 261-272.\r\n\r\n- Marsh, P., Halbert, K., Blumberg, G., Supinie, T., Esmaili, R., Szkodzinski, J., \"SHARPpy: Sounding/Hodograph Analysis and Research Program in Python.\" GitHub. Available at: https://github.com/sharppy/SHARPpy.\r\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Vertical Profile Data Retrieval and Analysis Tool For Python",
    "version": "3.0.3",
    "project_urls": {
        "Code": "https://github.com/kylejgillett/sounderpy",
        "Docs": "https://kylejgillett.github.io/sounderpy/",
        "My Website": "https://kylegillettwx.wordpress.com/",
        "Operational Site": "https://sounderpysoundings.anvil.app/",
        "PyPi": "https://pypi.org/project/sounderpy/"
    },
    "split_keywords": [
        "meteorology",
        " science",
        " data-analysis",
        " weather",
        " forecasting"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40f9b67536803dbbd3670424e7604e8495aee154fd897b7f55890cec0c5767af",
                "md5": "6ce440ae708a2693857fb466a9760376",
                "sha256": "479d79cbb433ed13990825fe4a129bf36dfbb21cb44fdf0235fe09eb96e43ec3"
            },
            "downloads": -1,
            "filename": "sounderpy-3.0.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "6ce440ae708a2693857fb466a9760376",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.1",
            "size": 334597,
            "upload_time": "2024-03-24T14:25:38",
            "upload_time_iso_8601": "2024-03-24T14:25:38.258205Z",
            "url": "https://files.pythonhosted.org/packages/40/f9/b67536803dbbd3670424e7604e8495aee154fd897b7f55890cec0c5767af/sounderpy-3.0.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6cf141a761a0f346596d868451f78f74f4309ee057a094cc2374349e220971b8",
                "md5": "ee4ba9ac312685e64f5f2a7433d488ad",
                "sha256": "9380d5c69aff19bb7e83b6fa323147c550bfc80af49133e29e208985ed088b79"
            },
            "downloads": -1,
            "filename": "sounderpy-3.0.3.tar.gz",
            "has_sig": false,
            "md5_digest": "ee4ba9ac312685e64f5f2a7433d488ad",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.1",
            "size": 264894,
            "upload_time": "2024-03-24T14:25:40",
            "upload_time_iso_8601": "2024-03-24T14:25:40.273882Z",
            "url": "https://files.pythonhosted.org/packages/6c/f1/41a761a0f346596d868451f78f74f4309ee057a094cc2374349e220971b8/sounderpy-3.0.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-24 14:25:40",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "kylejgillett",
    "github_project": "sounderpy",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "sounderpy"
}
        
Elapsed time: 0.28051s