{ "info": { "author": "eurec4a folks", "author_email": "", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3" ], "description": "# eurec4a_snd\n\n[![DOI](https://zenodo.org/badge/213821146.svg)](https://zenodo.org/badge/latestdoi/213821146)\n\nDuring the EUREC4A/ATOMIC campaign many radiosondes were launched from different platforms and partners. This collection of scripts has been used to convert, visualize and interpolate the data in a common way.\n\nTo convert BUFR files, simply run `sounding_converter -i your_sounding.bfr` after the installation. During the first execution you will be asked to give meta-information which will be included in the output files.\n\nThese include e.g. `contact_person` and `platform` name which are probably helpful after the exchange of these files with other scientists.\n\n## Installation\n\nThe package can be installed with `conda` ([Miniconda](https://docs.conda.io/en/latest/miniconda.html) or [Anaconda](https://www.anaconda.com/distribution/)):\n\nThe best option is to create a new environment to not run into dependency problems with pre-installed package:\n\n```bash\nconda create --name field_campaign\n```\n\nActivate the new environment with\n\n```bash\nconda activate field_campaign\n```\nor\n```bash\nsource activate field_campaign\n```\n\nThe actual package can than be installed with\n```bash\nconda install -c observingclouds -c conda-forge eurec4a_snd\n```\n\n## First execution\n\nDuring the first execution, the `meta_information.ini` configuration file has to be created. The user is prompted some questions on the command line before the file will be written to the users home directory.\n\nIt is also possible to copy the `config/meta_information_template.ini` to one's favorite folder and change the files content accordingly. If the file is not renamed `meta_information.ini` and is in the home directory, the option `-c` has to be used during the call of `sounding_converter` otherwise it will not recognize the configuration.\n\n(macOS or linux)\n```python\nsounding_converter -i your_sounding.bfr -c /your/path/to/meta_information.ini\n```\n\n(windows)\n```python\nsounding_converter.exe -i your_sounding.bfr -c /your/path/to/meta_information.ini\n```\n\n## Update\n\nPlease check for updates at the beginning of the campaign by running\n```bash\nconda install -c observingclouds -c conda-forge eurec4a_snd\n```\n\n## Change meta-information\nThe meta-information which is used in the netCDF files and in order to create a resonable filename, can always be changed by either\n\n- remove the file `meta_information.ini` in `$HOME` and run `sounding_converter` again, as if it would be your first execution\n- edit the file `~/meta_information.ini` directly\n\n## Visualization\n### Panoply\nThe converted dat files are netCDF files which conform to the CF-Conventions as far as possible and make use of the `discrete sampling geometry`. The sounding data can therefore easily be drawn as trajectories without extra efforts. One example is the software [Panoply](https://www.giss.nasa.gov/tools/panoply/)\n\n![Trajectory visualization with panoply](docs/panoply_visualization_traj.png?raw=true \"Trajectory visualization with panoply\")\n\n### Simple Plotting\nThe package also includes a few plotting routines that can be called with e.g.\n\n(macOS or linux)\n```bash\nsounding_visualize -i converted/file/sounding.nc\n```\n\n(windows)\n```bash\nsounding_visualize.exe -i converted/file/sounding.nc\n```\n\n### SkewT Plotting\nA skewT diagram can be created with\n\n(macOS or linux)\n```bash\nsounding_skewT -i converted/file/sounding.nc\n```\n\n(windows)\n```bash\nsounding_skewT.exe -i converted/file/sounding.nc\n```\nFurther examples on how to create a skewT diagram can be found in `eurec4a_snd/examples/visualizing`. Have a look at [Skew-T examples](eurec4a_snd/examples/visualizing/README.md)\n\n## Example\n\nExamples of the input `.bfr` files and the converted `.nc` file can be found in `examples/data`.\n\n## Interpolation\nTo concatenate the soundings and for an easier analysis, the converted soundings (output of `sounding_converter`) can be interpolated on a common altitude grid by\n```bash\nsounding_interpolate -i /path/to/converted/soundings*.nc\n```\n\n## Trouble shooting\n\n
\n ImportError: DLL load failed: The specific module could not be found\n
\n Windows users might get the above error message when trying to visualize the soundings. The error is caused in pillow. Unfortunately there is not a very good solution yet, but the following might work for you:\n
conda remove --force pillow
pip install pillow
\n
\n
\n\n
\n Commands `sounding_convert` and `sounding_visualize` cannot be found!\n
\n It seems something went wrong with the installation via `conda`. Although it is recommended to install this package via anaconda because it comes with the benefit that all dependencies should be resolved, you can also download this git repository and run within the `eurec4a_snd` folder:\n
python L1_rs41.py -i your_sounding.bfr
\nor for quicklooks\n
python make_quicklooks_rs41.py -n converted/file/sounding.nc
\n
\n
\n\n
\n Slow internet connection: Download failed\n
\n In case of a slow internet connection, the command `conda install some_package` might fail due to connection timeout. In this case it might be a good option to download the failing package manually.\n\n In this case the `eurec4a_snd` package for OSX is downloaded and installed manually:\n
wget -c https://anaconda.org/observingClouds/eurec4a_snd/v2.0.0/download/osx-64/eurec4a_snd-v2.0.0-py37_0.tar.bz2
\nThe path needs to be adapted depending on the operating system and the version that should be downloaded. You may actually see the path you need to download in the error message of `conda install eurec4a_snd`.\n\nThe installation follows simply with\n
conda install -c observingClouds eurec4a_snd-v2.0.0-py37_0.tar.bz2
\n
\n\n
\n ECCODES_DEFINITION_PATH defined incorrectly\n
\n In case there appears an error, that the variable ECCODES_DEFINITION_PATH is not defined or not correctly set, the easiest solution is to insert the following two lines at the beginning of the script L1_bufr.py.\n
import os
\n
os.environ[\"ECCODES_DEFINITION_PATH\"] = r\"C:\\Users\\...\\envs\\field_campaign\\Library\\share\\eccodes\\definitions\"
\n The path needs to be adapted to your environment of course.\n
\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/observingClouds/eurec4a_snd", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "eurec4a-snd", "package_url": "https://pypi.org/project/eurec4a-snd/", "platform": "", "project_url": "https://pypi.org/project/eurec4a-snd/", "project_urls": { "Homepage": "https://github.com/observingClouds/eurec4a_snd" }, "release_url": "https://pypi.org/project/eurec4a-snd/2.1.5/", "requires_dist": [ "pillow (>=6.0.0)", "matplotlib (>=3.1.0)", "basemap (>=1.2.0)", "numpy (>=1.15.0)", "netCDF4 (>=1.4.0)", "metpy (>=0.10.0)" ], "requires_python": ">=3.6", "summary": "Common EUREC4A sounding standard", "version": "2.1.5", "yanked": false, "yanked_reason": null }, "last_serial": 7030713, "releases": { "0.0.16": [ { "comment_text": "", "digests": { "md5": "57dc9af9649f6ead4753edb59814acd7", "sha256": "4ba1a62037d238601ed27ecb17cb9c312ebe7b50db4635989144d4b8d48ff0a1" }, "downloads": -1, "filename": "eurec4a_snd-0.0.16-py3-none-any.whl", "has_sig": false, "md5_digest": "57dc9af9649f6ead4753edb59814acd7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 189674, "upload_time": "2019-10-11T06:31:02", "upload_time_iso_8601": "2019-10-11T06:31:02.669970Z", "url": "https://files.pythonhosted.org/packages/8c/7d/eb6882a7485bbc5d45bb9245a82ef0b23e5649ce8371e0be600999f69763/eurec4a_snd-0.0.16-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "90bf39fa95e72a5f035521b06047e09e", "sha256": "af1b5616cc7c1bee68674c4eb0e33b96c6f5affd70a5bf8645e8e09882b5762a" }, "downloads": -1, "filename": "eurec4a_snd-0.0.16.tar.gz", "has_sig": false, "md5_digest": "90bf39fa95e72a5f035521b06047e09e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 188515, "upload_time": "2019-10-11T06:31:04", "upload_time_iso_8601": "2019-10-11T06:31:04.246605Z", "url": "https://files.pythonhosted.org/packages/de/b8/63540ad089f47bfd89b4a952e82ee46e083205fac6ede2387f13fbc91719/eurec4a_snd-0.0.16.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.20": [ { "comment_text": "", "digests": { "md5": "531f28159d445daeae0940c5514dd2a8", "sha256": "625f0911a12f890c20fcf474636c476cb45928a7f55633cc0db57b5eff9e2871" }, "downloads": -1, "filename": "eurec4a_snd-0.0.20-py3-none-any.whl", "has_sig": false, "md5_digest": "531f28159d445daeae0940c5514dd2a8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 190050, "upload_time": "2019-10-12T05:01:32", "upload_time_iso_8601": "2019-10-12T05:01:32.369444Z", "url": "https://files.pythonhosted.org/packages/e1/9c/52b6edd0402d83a80da553e6e3ec4297d4dadff21c2ec7afbdb9e8ac1ab8/eurec4a_snd-0.0.20-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b2ef8bb3818599cb834417d78e80699", "sha256": "14ed9fe508a679cdc7c14f0ac2517ea9e4d7a964087de3dcf8e3029a7ca07be3" }, "downloads": -1, "filename": "eurec4a_snd-0.0.20.tar.gz", "has_sig": false, "md5_digest": "6b2ef8bb3818599cb834417d78e80699", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 204546, "upload_time": "2019-10-12T05:01:34", "upload_time_iso_8601": "2019-10-12T05:01:34.318971Z", "url": "https://files.pythonhosted.org/packages/57/73/8e9c2d29e881bc2ddc49c3f05b2ac5bcd6442e421b346639cb0c6f917180/eurec4a_snd-0.0.20.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.21": [ { "comment_text": "", "digests": { "md5": "bccd87cba8e5313c442cbb259b4cffa2", "sha256": "173cbd239c3bb3ac09324278cb85671839af79ca85733aa0d0ab8fbd43f27fe7" }, "downloads": -1, "filename": "eurec4a_snd-0.0.21-py3-none-any.whl", "has_sig": false, "md5_digest": "bccd87cba8e5313c442cbb259b4cffa2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 190048, "upload_time": "2019-10-12T05:37:08", "upload_time_iso_8601": "2019-10-12T05:37:08.859799Z", "url": "https://files.pythonhosted.org/packages/0f/3f/84c95124e7cd36156d496759d4ec3ee9e392b480a175ac493d78f5ddf265/eurec4a_snd-0.0.21-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b92c99eb09b4888f9eb3b604173b5146", "sha256": "76c9b67df8737cb9ec7ea3f489c9bd10ae17177cf438007c53d62fbc0d5c18fd" }, "downloads": -1, "filename": "eurec4a_snd-0.0.21.tar.gz", "has_sig": false, "md5_digest": "b92c99eb09b4888f9eb3b604173b5146", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 204540, "upload_time": "2019-10-12T05:37:10", "upload_time_iso_8601": "2019-10-12T05:37:10.784880Z", "url": "https://files.pythonhosted.org/packages/5c/94/6a6e63aa2d2a0d952568c0846758dbe6bbb40571aab818bf93bc15b7725b/eurec4a_snd-0.0.21.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.23": [ { "comment_text": "", "digests": { "md5": "d6ff0e008db4d39d1251e9331e1dc7a9", "sha256": "79ed717c29733c3f6d92916a20a9816d23467425c996b14e305c5e0338f05662" }, "downloads": -1, "filename": "eurec4a_snd-0.0.23-py3-none-any.whl", "has_sig": false, "md5_digest": "d6ff0e008db4d39d1251e9331e1dc7a9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 190630, "upload_time": "2019-10-12T08:13:01", "upload_time_iso_8601": "2019-10-12T08:13:01.915476Z", "url": "https://files.pythonhosted.org/packages/67/13/a1beeb876a1aa0c1c5e5f909fca40dc80df14e608a79a30d9e28d69f6c56/eurec4a_snd-0.0.23-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e40d0cc8045dba1b06a90f1d72be79d7", "sha256": "e71730678a1dd7319d5f6c73535db0fc8e5b06e2a2544b820b2bfa7c8fa46914" }, "downloads": -1, "filename": "eurec4a_snd-0.0.23.tar.gz", "has_sig": false, "md5_digest": "e40d0cc8045dba1b06a90f1d72be79d7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 204986, "upload_time": "2019-10-12T08:13:03", "upload_time_iso_8601": "2019-10-12T08:13:03.751138Z", "url": "https://files.pythonhosted.org/packages/80/f7/7cf1ff8af09037928e7596f2210b5fb79e0ed6c67a54789f707dbdea953d/eurec4a_snd-0.0.23.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.24": [ { "comment_text": "", "digests": { "md5": "2fad2f04ccdf3abded5d71d693844987", "sha256": "7b381bb2263e62e90007625d9ee0e9b97a3a6ce28388ee0c4b8ce070abf241f2" }, "downloads": -1, "filename": "eurec4a_snd-0.0.24-py3-none-any.whl", "has_sig": false, "md5_digest": "2fad2f04ccdf3abded5d71d693844987", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 190933, "upload_time": "2019-10-14T00:09:11", "upload_time_iso_8601": "2019-10-14T00:09:11.652046Z", "url": "https://files.pythonhosted.org/packages/07/b1/876f3c4ef8c9fa906b3d530e5cfe81b2089bc4df9910cdf845018d397246/eurec4a_snd-0.0.24-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "274dd3d8bff9f70ca2590917aa3f3080", "sha256": "0532d666f3fb0ad75e6d646d24640ae01dc11b14c6fd96c8569c78e131a0b485" }, "downloads": -1, "filename": "eurec4a_snd-0.0.24.tar.gz", "has_sig": false, "md5_digest": "274dd3d8bff9f70ca2590917aa3f3080", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 205386, "upload_time": "2019-10-14T00:09:13", "upload_time_iso_8601": "2019-10-14T00:09:13.498436Z", "url": "https://files.pythonhosted.org/packages/ea/35/ef59eb504c6c9a4c89fc816eb8895e3fdef014c896c97c71175de7268a11/eurec4a_snd-0.0.24.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.26": [ { "comment_text": "", "digests": { "md5": "d68fccd7191296559939f617dfde151b", "sha256": "46c51727f384d3e74942956c7414df8e48bec2db71ea92b5843c3f1774310252" }, "downloads": -1, "filename": "eurec4a_snd-0.0.26-py3-none-any.whl", "has_sig": false, "md5_digest": "d68fccd7191296559939f617dfde151b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 199088, "upload_time": "2019-10-29T06:42:31", "upload_time_iso_8601": "2019-10-29T06:42:31.978484Z", "url": "https://files.pythonhosted.org/packages/64/9a/758e59fa8abcd2d208927289b0cae982b7439bddee37da5f74ec765b2474/eurec4a_snd-0.0.26-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "608411b0255d843180951a7bb7faf316", "sha256": "6c5a20a07da71ed93b0c1c199d3decee1020019f11c96138966b8fe23b37dcd1" }, "downloads": -1, "filename": "eurec4a_snd-0.0.26.tar.gz", "has_sig": false, "md5_digest": "608411b0255d843180951a7bb7faf316", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 212775, "upload_time": "2019-10-29T06:42:33", "upload_time_iso_8601": "2019-10-29T06:42:33.669893Z", "url": "https://files.pythonhosted.org/packages/0d/54/30fb82d15cca984d7b95fde2b7e0167da9dd61ab33899d8ebffa2aee2de8/eurec4a_snd-0.0.26.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.27": [ { "comment_text": "", "digests": { "md5": "6970a515e989ec71de2e51e6c6a461de", "sha256": "0cab394793997ccf6d9cf95dfac13eb9e6d9ca874d62e8f58995e28127d3a857" }, "downloads": -1, "filename": "eurec4a_snd-0.0.27-py3-none-any.whl", "has_sig": false, "md5_digest": "6970a515e989ec71de2e51e6c6a461de", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 199088, "upload_time": "2019-10-29T07:07:13", "upload_time_iso_8601": "2019-10-29T07:07:13.039063Z", "url": "https://files.pythonhosted.org/packages/37/e5/1de3bdb1126bc6ddc96c97e1c0de80f6a55f501d37fbbb3ed8744c679f99/eurec4a_snd-0.0.27-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac61d6c0d5ef6dd5231697813d1f5821", "sha256": "f0cef1dce38c4b18e5dcce577eebe371c89e3511764363adabfa4e2272540b28" }, "downloads": -1, "filename": "eurec4a_snd-0.0.27.tar.gz", "has_sig": false, "md5_digest": "ac61d6c0d5ef6dd5231697813d1f5821", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 212770, "upload_time": "2019-10-29T07:07:14", "upload_time_iso_8601": "2019-10-29T07:07:14.479413Z", "url": "https://files.pythonhosted.org/packages/59/8b/afad2765e8751975838794baf586578c4011fbd5298561bc8334a79a997f/eurec4a_snd-0.0.27.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.28": [ { "comment_text": "", "digests": { "md5": "822665e5be08ec4884a6114f796e3880", "sha256": "f35efe3e2e11328858c85115299cadcabf49049331add8da2a5882b2c9bdcc26" }, "downloads": -1, "filename": "eurec4a_snd-0.0.28-py3-none-any.whl", "has_sig": false, "md5_digest": "822665e5be08ec4884a6114f796e3880", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 199084, "upload_time": "2019-10-29T07:39:20", "upload_time_iso_8601": "2019-10-29T07:39:20.294788Z", "url": "https://files.pythonhosted.org/packages/18/cd/80071fed2d61275481924bc4b2fbeb4971527ee00de03f1701d092e58269/eurec4a_snd-0.0.28-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eb93ffdf5bf8b56471fe2864eab6bc7e", "sha256": "a52078d63b98a1b91b906ca7a98517a50db07b4984c9ce93b288c186f11593fc" }, "downloads": -1, "filename": "eurec4a_snd-0.0.28.tar.gz", "has_sig": false, "md5_digest": "eb93ffdf5bf8b56471fe2864eab6bc7e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 212779, "upload_time": "2019-10-29T07:39:21", "upload_time_iso_8601": "2019-10-29T07:39:21.992633Z", "url": "https://files.pythonhosted.org/packages/bb/96/3e2aafb29774ca5ce9347a38c5548e0a29947a05fde46f2a6fda4899727e/eurec4a_snd-0.0.28.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.29": [ { "comment_text": "", "digests": { "md5": "68de417131d7043a181f83d718852f9a", "sha256": "5af9b46cfe4531d3190aa0606dc7bbce7572729d2d749f4d8a2847f2b8a65c36" }, "downloads": -1, "filename": "eurec4a_snd-0.0.29-py3-none-any.whl", "has_sig": false, "md5_digest": "68de417131d7043a181f83d718852f9a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 199075, "upload_time": "2019-10-29T16:29:32", "upload_time_iso_8601": "2019-10-29T16:29:32.926542Z", "url": "https://files.pythonhosted.org/packages/dc/2b/efdbdfe98b747a57c97ae7ce39c2ab19ca506ded80bdb904ee6016d188e2/eurec4a_snd-0.0.29-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "293cff42c1ac6e4684971150f734395f", "sha256": "a3663f19efb7d1ab6b961fcd9d24418aa25714f513fdac8191bc0bf44a31dc50" }, "downloads": -1, "filename": "eurec4a_snd-0.0.29.tar.gz", "has_sig": false, "md5_digest": "293cff42c1ac6e4684971150f734395f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 212752, "upload_time": "2019-10-29T16:29:34", "upload_time_iso_8601": "2019-10-29T16:29:34.258008Z", "url": "https://files.pythonhosted.org/packages/7d/ac/b7764c64388a869d1bb32a6cfd0d180665a35c630415e493fc43772838ff/eurec4a_snd-0.0.29.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.30": [ { "comment_text": "", "digests": { "md5": "3cf169cad57ddfeaa5c686152d2825b7", "sha256": "9743ae65b13820a2ecde3643688e03143fade5dda1e1702731cd0679092d63d3" }, "downloads": -1, "filename": "eurec4a_snd-0.0.30-py3-none-any.whl", "has_sig": false, "md5_digest": "3cf169cad57ddfeaa5c686152d2825b7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 334766, "upload_time": "2019-10-29T18:03:52", "upload_time_iso_8601": "2019-10-29T18:03:52.939011Z", "url": "https://files.pythonhosted.org/packages/0d/81/598de136aa1b6388149cee09266acae17652bd59f06a66929d078bad7d18/eurec4a_snd-0.0.30-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "298de7f5b30951371b48c4741ae453aa", "sha256": "4a370d504efb405e9208e5095d199aa4027d677dc2eb2e54806e2f4937d5fc9b" }, "downloads": -1, "filename": "eurec4a_snd-0.0.30.tar.gz", "has_sig": false, "md5_digest": "298de7f5b30951371b48c4741ae453aa", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 349565, "upload_time": "2019-10-29T18:03:54", "upload_time_iso_8601": "2019-10-29T18:03:54.750857Z", "url": "https://files.pythonhosted.org/packages/41/34/1c1c2f470dbcc046d9fe355151346d051aa680a4c0114b0dccfea7c8be09/eurec4a_snd-0.0.30.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.33": [ { "comment_text": "", "digests": { "md5": "51c35b5b5889a5a9414467ae51770459", "sha256": "6fc780d67170fa2cc2f302f207b68448deb12bd14c3f9fd27bd8d475c8354248" }, "downloads": -1, "filename": "eurec4a_snd-0.0.33-py3-none-any.whl", "has_sig": false, "md5_digest": "51c35b5b5889a5a9414467ae51770459", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 337256, "upload_time": "2019-10-30T00:21:49", "upload_time_iso_8601": "2019-10-30T00:21:49.122281Z", "url": "https://files.pythonhosted.org/packages/2b/bf/9ec9b5c9c920bee23715f3f8fc49558d9a50294849790c9a11d58d3f2ae9/eurec4a_snd-0.0.33-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fa9a606430d8d23428a597f681ca3a29", "sha256": "93d7a3cb40ed013afbfb38c77202924ef693f571b348f4313f8a6e77eb7f7a02" }, "downloads": -1, "filename": "eurec4a_snd-0.0.33.tar.gz", "has_sig": false, "md5_digest": "fa9a606430d8d23428a597f681ca3a29", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 351457, "upload_time": "2019-10-30T00:21:50", "upload_time_iso_8601": "2019-10-30T00:21:50.743341Z", "url": "https://files.pythonhosted.org/packages/ff/97/1a9ed76964730ea1cf26060d57d2f30fb6d28eac898172fc44774ff1676b/eurec4a_snd-0.0.33.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.34": [ { "comment_text": "", "digests": { "md5": "5503be56e7fab6eb81c0d078ac99fbc4", "sha256": "8961ee2df3898a1f72558e4623ff11cd7e7f2d04d91c1be5f4577e0d0594b4d2" }, "downloads": -1, "filename": "eurec4a_snd-0.0.34-py3-none-any.whl", "has_sig": false, "md5_digest": "5503be56e7fab6eb81c0d078ac99fbc4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 337238, "upload_time": "2019-10-30T00:33:59", "upload_time_iso_8601": "2019-10-30T00:33:59.044684Z", "url": "https://files.pythonhosted.org/packages/72/ad/bef4cf5d8b12be5302afa438d650d92c12420861ca44c12b8ff41516ec29/eurec4a_snd-0.0.34-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0e5806ae5467eaa00a80b3b94e9ddc9f", "sha256": "951b5bf96bf443b5ad4ece2ad0694280009e37c53f0bcff676e87c10f8fbad77" }, "downloads": -1, "filename": "eurec4a_snd-0.0.34.tar.gz", "has_sig": false, "md5_digest": "0e5806ae5467eaa00a80b3b94e9ddc9f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 351423, "upload_time": "2019-10-30T00:34:00", "upload_time_iso_8601": "2019-10-30T00:34:00.993582Z", "url": "https://files.pythonhosted.org/packages/79/2a/47a6f216a182ccfd40af4311f1899654afd1c0e078f679bfc56a83281a20/eurec4a_snd-0.0.34.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.40": [ { "comment_text": "", "digests": { "md5": "422f57f37e550a985979f31c895e8b48", "sha256": "e27ef8b5d44ce40b77a5c8c5ef486b7f0013a7fbac7f7e7e4ebde1127966324c" }, "downloads": -1, "filename": "eurec4a_snd-0.0.40-py3-none-any.whl", "has_sig": false, "md5_digest": "422f57f37e550a985979f31c895e8b48", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 338650, "upload_time": "2019-11-09T20:51:07", "upload_time_iso_8601": "2019-11-09T20:51:07.174131Z", "url": "https://files.pythonhosted.org/packages/ac/d8/4c86cc53c4b742d3d7b9a95441e533fca011a76888d3de1b7045bab67916/eurec4a_snd-0.0.40-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "961855c7de0700679aba7570b6a805ec", "sha256": "3c7f34a99ab1aae41a1c5ae4c20eed0a3165c6fca3e69f4a0d137a272d3862a4" }, "downloads": -1, "filename": "eurec4a_snd-0.0.40.tar.gz", "has_sig": false, "md5_digest": "961855c7de0700679aba7570b6a805ec", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 352929, "upload_time": "2019-11-09T20:51:08", "upload_time_iso_8601": "2019-11-09T20:51:08.702871Z", "url": "https://files.pythonhosted.org/packages/fb/63/8377383baee4e02f3a82db1b1725101864f028ea1b1b74bad477af61704b/eurec4a_snd-0.0.40.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.41": [ { "comment_text": "", "digests": { "md5": "c1a360b6e23bdd698ce813364b05d5f0", "sha256": "3e8e2c488d8e1996f9c124c8b1ca0b974d5000178beb23df79eab9d8ac0fd489" }, "downloads": -1, "filename": "eurec4a_snd-0.0.41-py3-none-any.whl", "has_sig": false, "md5_digest": "c1a360b6e23bdd698ce813364b05d5f0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 339458, "upload_time": "2019-11-10T01:41:07", "upload_time_iso_8601": "2019-11-10T01:41:07.787161Z", "url": "https://files.pythonhosted.org/packages/7a/52/1cab6fae242e660a89d74e58efa3997b5374cc14368421126972b8804cbc/eurec4a_snd-0.0.41-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0f3137e1256431bd42d4777721758fb4", "sha256": "6fbae207a2234f18c07a7061b4e4943e684ce515bdc0f8e76161080cbb31c1c9" }, "downloads": -1, "filename": "eurec4a_snd-0.0.41.tar.gz", "has_sig": false, "md5_digest": "0f3137e1256431bd42d4777721758fb4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 353621, "upload_time": "2019-11-10T01:41:09", "upload_time_iso_8601": "2019-11-10T01:41:09.323625Z", "url": "https://files.pythonhosted.org/packages/da/35/3e1c627664f4063e6243ed8be7f447d0d1c1b9a39c619df96ced512e71d7/eurec4a_snd-0.0.41.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.42": [ { "comment_text": "", "digests": { "md5": "ea6246b378c0815bb288a13ef065a9f9", "sha256": "67a01545e2c13e54b2cc24f8d2578007ebaea24ad241240c8c39a5d1cb4117f5" }, "downloads": -1, "filename": "eurec4a_snd-0.0.42-py3-none-any.whl", "has_sig": false, "md5_digest": "ea6246b378c0815bb288a13ef065a9f9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 339473, "upload_time": "2019-11-10T02:18:14", "upload_time_iso_8601": "2019-11-10T02:18:14.512800Z", "url": "https://files.pythonhosted.org/packages/53/fb/c2f4f644e3754c7d2c8d5204d688324e16359accf7210f85dbc2fd3fc9bc/eurec4a_snd-0.0.42-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9a0a64ee87963340a6ab47616c88cbde", "sha256": "04a0b093fedfddee3a90d01dd3703ec6e3ea6c0cc50d81af0b65e03300de42d9" }, "downloads": -1, "filename": "eurec4a_snd-0.0.42.tar.gz", "has_sig": false, "md5_digest": "9a0a64ee87963340a6ab47616c88cbde", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 353616, "upload_time": "2019-11-10T02:18:15", "upload_time_iso_8601": "2019-11-10T02:18:15.894702Z", "url": "https://files.pythonhosted.org/packages/97/90/1dff7c9d12631820da8c6692d51ed93a4df2c0b1db4c6a6f024c49975f96/eurec4a_snd-0.0.42.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.43": [ { "comment_text": "", "digests": { "md5": "3832baa7a0ca721a1633d1c338322c07", "sha256": "cb1d615d7307186bc87f3245d948478bea919dc60e6f60d91c16743f9bf51d53" }, "downloads": -1, "filename": "eurec4a_snd-0.0.43-py3-none-any.whl", "has_sig": false, "md5_digest": "3832baa7a0ca721a1633d1c338322c07", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 340208, "upload_time": "2019-11-10T06:53:59", "upload_time_iso_8601": "2019-11-10T06:53:59.964376Z", "url": "https://files.pythonhosted.org/packages/b7/6e/d2609f90e996f084decb40fc009152d48aa1693bafa1234f3a12b0c8665a/eurec4a_snd-0.0.43-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "68c7bde8d1b25ad68dabb1cb0a9a6778", "sha256": "050858c1313acad4f4c1336e27d7c5a9cd69c01d2d80890394d51823558c1b72" }, "downloads": -1, "filename": "eurec4a_snd-0.0.43.tar.gz", "has_sig": false, "md5_digest": "68c7bde8d1b25ad68dabb1cb0a9a6778", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 354428, "upload_time": "2019-11-10T06:54:01", "upload_time_iso_8601": "2019-11-10T06:54:01.723653Z", "url": "https://files.pythonhosted.org/packages/ee/41/51a18993fa3d9e2bab954ca11e577e9e845f8eaeda6e5c28c615f5540adb/eurec4a_snd-0.0.43.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.45": [ { "comment_text": "", "digests": { "md5": "6ccb080728712bc07aefa1cc0732ec2b", "sha256": "9216262b3a4d83191153d1bd1cc63f393924cb86eda1af3d2f765b23ec9a56cb" }, "downloads": -1, "filename": "eurec4a_snd-0.0.45-py3-none-any.whl", "has_sig": false, "md5_digest": "6ccb080728712bc07aefa1cc0732ec2b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 343532, "upload_time": "2019-12-17T21:39:25", "upload_time_iso_8601": "2019-12-17T21:39:25.073313Z", "url": "https://files.pythonhosted.org/packages/f1/52/a8f8265aaf39adfb71cb4b04419fc2d2c025799383f7be77ec7143556bb5/eurec4a_snd-0.0.45-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f760bce9272b58682615a021af1dec59", "sha256": "7e8bd3a47fa95d90655cf1ee8e4a64dc365ea9f9a6fe2ddf70d1d1c353c1ec95" }, "downloads": -1, "filename": "eurec4a_snd-0.0.45.tar.gz", "has_sig": false, "md5_digest": "f760bce9272b58682615a021af1dec59", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 357630, "upload_time": "2019-12-17T21:39:26", "upload_time_iso_8601": "2019-12-17T21:39:26.556408Z", "url": "https://files.pythonhosted.org/packages/17/3e/4dbc730a0ece18ad880cdd0a87beedb14332494c0ceb284b9407331dfc28/eurec4a_snd-0.0.45.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "e0897c89fecd8379471b5da8c552bc57", "sha256": "27c8c50549ce4801bd011a06955810db4207357cb3fd3fa6ab1c4af35b78559f" }, "downloads": -1, "filename": "eurec4a_snd-0.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "e0897c89fecd8379471b5da8c552bc57", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 190023, "upload_time": "2019-10-11T22:26:55", "upload_time_iso_8601": "2019-10-11T22:26:55.989766Z", "url": "https://files.pythonhosted.org/packages/27/7b/36b42f018599db9b5684ee1fb6c2a8724a3659c49896d557089f38e054b0/eurec4a_snd-0.0.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6ddbf1f76668d1f2a0c23bc0873749e4", "sha256": "353c49e936d04e8fcd9c45b9e27dd60291910c15eebbea8ead97b7efb6cb4ecc" }, "downloads": -1, "filename": "eurec4a_snd-0.0.6.tar.gz", "has_sig": false, "md5_digest": "6ddbf1f76668d1f2a0c23bc0873749e4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 204526, "upload_time": "2019-10-11T22:26:57", "upload_time_iso_8601": "2019-10-11T22:26:57.863001Z", "url": "https://files.pythonhosted.org/packages/a3/b1/2da0131efd4657e4a249e6af0e5c6ee8cb4a11e2dc1d15baf110d79676de/eurec4a_snd-0.0.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "7c2cb96944f5d7d28559ce22a571c777", "sha256": "1984792d7b9355c98fb9e8c53cd18fb42bbae3c9e83d5aeb3b2fd02ae34028aa" }, "downloads": -1, "filename": "eurec4a_snd-0.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "7c2cb96944f5d7d28559ce22a571c777", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 190024, "upload_time": "2019-10-11T22:57:02", "upload_time_iso_8601": "2019-10-11T22:57:02.692045Z", "url": "https://files.pythonhosted.org/packages/ee/a8/301407216023e0db64180f39322d3fe5d7458bd2c117bbb1bc3105c7c204/eurec4a_snd-0.0.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a8da8e647d8ae1503aa3f007d1e3a255", "sha256": "abe6d8ea51d374a0ee59374da9d777176756f0f9e94d6ccd8e70ba921444490b" }, "downloads": -1, "filename": "eurec4a_snd-0.0.7.tar.gz", "has_sig": false, "md5_digest": "a8da8e647d8ae1503aa3f007d1e3a255", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 204515, "upload_time": "2019-10-11T22:57:04", "upload_time_iso_8601": "2019-10-11T22:57:04.644530Z", "url": "https://files.pythonhosted.org/packages/87/be/4e93003f84ae57f96fe145382d6f1ed5153d9705cce8140fdad21a96e03d/eurec4a_snd-0.0.7.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "f8d964c806971a5b1ca86f00a2376d66", "sha256": "7a06f50dbfa7e13d86669d2978cf1614dec74ef3b0e94cdd5cb930ed740928bd" }, "downloads": -1, "filename": "eurec4a_snd-2.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f8d964c806971a5b1ca86f00a2376d66", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 343855, "upload_time": "2020-01-03T03:01:03", "upload_time_iso_8601": "2020-01-03T03:01:03.397527Z", "url": "https://files.pythonhosted.org/packages/0e/8b/dbd608f61c2e4d2a331e0bc4b256eadea2a69897b82aaa910889248e349b/eurec4a_snd-2.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ff502c84e8e26d10a2e198c58d93914", "sha256": "08c0ac31b6f44888772213b902ce584318a3e30a2ea6d066befbbebea78ff9a7" }, "downloads": -1, "filename": "eurec4a_snd-2.0.0.tar.gz", "has_sig": false, "md5_digest": "9ff502c84e8e26d10a2e198c58d93914", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 357940, "upload_time": "2020-01-03T03:01:05", "upload_time_iso_8601": "2020-01-03T03:01:05.290819Z", "url": "https://files.pythonhosted.org/packages/07/7f/5e0b294d619fbb795cd6f35360beb0602e379dc417dba0c8a887ac0e2510/eurec4a_snd-2.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "c7b201a84af581e4a4d7d74d125316c2", "sha256": "b26f58a3153a7e88a2bf3d95738aeae528119528857c5d405fae8523bc04d920" }, "downloads": -1, "filename": "eurec4a_snd-2.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "c7b201a84af581e4a4d7d74d125316c2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 344047, "upload_time": "2020-01-08T23:57:03", "upload_time_iso_8601": "2020-01-08T23:57:03.242665Z", "url": "https://files.pythonhosted.org/packages/7c/49/f6187273fa7cb2dc8f7224fad4ec1665c6d34a6d263a730c0ccd2b4b340e/eurec4a_snd-2.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8cc051910d276aad0dfdfd69aa126332", "sha256": "c8912a72af91262986ffbb28e41d900d04308b3485eda3dc700abc72e31c83ab" }, "downloads": -1, "filename": "eurec4a_snd-2.0.1.tar.gz", "has_sig": false, "md5_digest": "8cc051910d276aad0dfdfd69aa126332", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 358129, "upload_time": "2020-01-08T23:57:04", "upload_time_iso_8601": "2020-01-08T23:57:04.760834Z", "url": "https://files.pythonhosted.org/packages/d5/ad/f54f146c41823daea459cea8464dd08dc1929a6a5781a3eec97d260202ae/eurec4a_snd-2.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "2ff14cdfe5b6fd558ecc332794bdeec7", "sha256": "184e3554344312bbcc014e80e573b1da9197d9f18def46d2d9ad4700460f8ded" }, "downloads": -1, "filename": "eurec4a_snd-2.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "2ff14cdfe5b6fd558ecc332794bdeec7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 344264, "upload_time": "2020-01-15T02:46:58", "upload_time_iso_8601": "2020-01-15T02:46:58.494030Z", "url": "https://files.pythonhosted.org/packages/c3/48/fe1040616dc811572bcc22621bad6acc1cfcf9286eac3de92fed1eb68957/eurec4a_snd-2.0.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "103d56bb4d68c1a018c96e48368455a3", "sha256": "c213bb253f5b3f333ad07b4c3faea24574742bf208f02d6f7a39d2d5937667cf" }, "downloads": -1, "filename": "eurec4a_snd-2.0.2.tar.gz", "has_sig": false, "md5_digest": "103d56bb4d68c1a018c96e48368455a3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 358448, "upload_time": "2020-01-15T02:47:00", "upload_time_iso_8601": "2020-01-15T02:47:00.433033Z", "url": "https://files.pythonhosted.org/packages/6e/fa/205c9d0bff6e3fb095e7a090e6bf271b4d06456e21696e0dbacf8f3aaaa6/eurec4a_snd-2.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.4": [ { "comment_text": "", "digests": { "md5": "a1f2ad67e1353d685c027f4632e6805d", "sha256": "890890d59c2a88524a988e7fbb275687140728efc8c8de9cf23a4ec2acf15c6b" }, "downloads": -1, "filename": "eurec4a_snd-2.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "a1f2ad67e1353d685c027f4632e6805d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 344842, "upload_time": "2020-01-25T14:01:58", "upload_time_iso_8601": "2020-01-25T14:01:58.798352Z", "url": "https://files.pythonhosted.org/packages/12/d3/cf9651d577673161a2da0e04f233a21715c1c35f5ffb4eba03877aa938e2/eurec4a_snd-2.0.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d07cb5c9da365facc4fa8f039c112b0a", "sha256": "6c345186eebf181af4eb2b501fd30d1a9e30df3ef2b24e3733238fb006f31701" }, "downloads": -1, "filename": "eurec4a_snd-2.0.4.tar.gz", "has_sig": false, "md5_digest": "d07cb5c9da365facc4fa8f039c112b0a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 359017, "upload_time": "2020-01-25T14:02:00", "upload_time_iso_8601": "2020-01-25T14:02:00.558784Z", "url": "https://files.pythonhosted.org/packages/82/ec/13666142204e96b3f1a5ee7febb631a08925a056b04687571b650fb2302a/eurec4a_snd-2.0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.5": [ { "comment_text": "", "digests": { "md5": "c3ea3f4a03d8fa6e9a47bee3b0cdfa29", "sha256": "e65098eb3c67cec45d785eb1b85fd474e13f2093700ea5cc11d32f5dbeaab21a" }, "downloads": -1, "filename": "eurec4a_snd-2.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "c3ea3f4a03d8fa6e9a47bee3b0cdfa29", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 352306, "upload_time": "2020-04-02T22:21:07", "upload_time_iso_8601": "2020-04-02T22:21:07.731309Z", "url": "https://files.pythonhosted.org/packages/bc/bc/befc3e87a34fb8e883dc9555ef00681e37bb96d96af8e359eeaa5856f762/eurec4a_snd-2.0.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe720fd8a0ae6c06dcf3777a592da808", "sha256": "d8c0746e98dc04b8f20772df970e322ac0960baed83acb036e90bc172086172b" }, "downloads": -1, "filename": "eurec4a_snd-2.0.5.tar.gz", "has_sig": false, "md5_digest": "fe720fd8a0ae6c06dcf3777a592da808", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 364637, "upload_time": "2020-04-02T22:21:08", "upload_time_iso_8601": "2020-04-02T22:21:08.911693Z", "url": "https://files.pythonhosted.org/packages/bc/c3/88a30effe410832a92a2cfd11925c8336c5f7eb77af65843e578cd71f4be/eurec4a_snd-2.0.5.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.6": [ { "comment_text": "", "digests": { "md5": "a533163fcc436e420a77fbdf0bb045ec", "sha256": "bffc021c14295441ef4fb669dcff91883d0917a8c789abce2b004fbdbe69e1a8" }, "downloads": -1, "filename": "eurec4a_snd-2.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "a533163fcc436e420a77fbdf0bb045ec", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 354036, "upload_time": "2020-04-14T20:29:04", "upload_time_iso_8601": "2020-04-14T20:29:04.065494Z", "url": "https://files.pythonhosted.org/packages/a2/4d/57a1a52d3974288bfdee9dcc79747c8c2cdc0035f2aab9c2a78a82293d61/eurec4a_snd-2.0.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b544772563e9770b55e439f669566fad", "sha256": "aeb6b01e7f48564d7d838bbc0dc535bea839b8e9cab6eb9ce5b1a202704de42a" }, "downloads": -1, "filename": "eurec4a_snd-2.0.6.tar.gz", "has_sig": false, "md5_digest": "b544772563e9770b55e439f669566fad", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 366334, "upload_time": "2020-04-14T20:29:05", "upload_time_iso_8601": "2020-04-14T20:29:05.142366Z", "url": "https://files.pythonhosted.org/packages/f9/5b/29ec211725338492521f1e46e4a296e46e2bbd5f31e322d7ee996afde2d7/eurec4a_snd-2.0.6.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.7": [ { "comment_text": "", "digests": { "md5": "0cd7eb00c83959c84f246bc4e24da531", "sha256": "8e01f4674063c1c14cc7d4ef4421a70c1c7458ecb957e35f619b2055efd4b5d0" }, "downloads": -1, "filename": "eurec4a_snd-2.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "0cd7eb00c83959c84f246bc4e24da531", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 354018, "upload_time": "2020-04-14T20:59:57", "upload_time_iso_8601": "2020-04-14T20:59:57.056658Z", "url": "https://files.pythonhosted.org/packages/d6/66/61c2f1ec20dd614ba9f2c878b9bc1161b2d58f3cd0746e729dc1586a36d9/eurec4a_snd-2.0.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0e4b5fa25ccfe7c82256df73012dbb29", "sha256": "77c016b9193f0fcf6bdd67d74e78c1bc6dc0246674a43ad79f9cea8089214ca9" }, "downloads": -1, "filename": "eurec4a_snd-2.0.7.tar.gz", "has_sig": false, "md5_digest": "0e4b5fa25ccfe7c82256df73012dbb29", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 366327, "upload_time": "2020-04-14T20:59:58", "upload_time_iso_8601": "2020-04-14T20:59:58.377568Z", "url": "https://files.pythonhosted.org/packages/85/bf/45d24376dad1d5ab0776e45a3902d592b9d68b0d16d71874f48152838025/eurec4a_snd-2.0.7.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.8": [ { "comment_text": "", "digests": { "md5": "819e18b824fb182c8a7b6b67952b400f", "sha256": "1743bcb50c4132696745384d6783a177ca0ce5c8295632325ca82af8a59cfc9f" }, "downloads": -1, "filename": "eurec4a_snd-2.0.8-py3-none-any.whl", "has_sig": false, "md5_digest": "819e18b824fb182c8a7b6b67952b400f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 354037, "upload_time": "2020-04-16T08:59:46", "upload_time_iso_8601": "2020-04-16T08:59:46.433565Z", "url": "https://files.pythonhosted.org/packages/b2/b0/f7499b7787b5abf2d36d023bd29b7953299132f0f7d76d58c9b283d3adf1/eurec4a_snd-2.0.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0280bc46ac73d422d1688da2430db13e", "sha256": "220060d40ab370e1a22d09ef056530369752f778260bd760f2fd92b28d629e9a" }, "downloads": -1, "filename": "eurec4a_snd-2.0.8.tar.gz", "has_sig": false, "md5_digest": "0280bc46ac73d422d1688da2430db13e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 366330, "upload_time": "2020-04-16T08:59:47", "upload_time_iso_8601": "2020-04-16T08:59:47.766856Z", "url": "https://files.pythonhosted.org/packages/c4/14/13eaba7e818722649a8507da658707d1c664cabee3ef2a016618bf6015ec/eurec4a_snd-2.0.8.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.5": [ { "comment_text": "", "digests": { "md5": "285f6de59bb8b8d6c0b1e6cc1eb6b10e", "sha256": "e742905f55964957e3e81ca393853e3cd6fb25b1d2f5096c5be3dd5725c57c58" }, "downloads": -1, "filename": "eurec4a_snd-2.1.5-py3-none-any.whl", "has_sig": false, "md5_digest": "285f6de59bb8b8d6c0b1e6cc1eb6b10e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 354037, "upload_time": "2020-04-16T09:15:46", "upload_time_iso_8601": "2020-04-16T09:15:46.272546Z", "url": "https://files.pythonhosted.org/packages/77/eb/62fc43cb478cc36a22dc0f07e0a61574a1db0b730c57421ebd399226ba9f/eurec4a_snd-2.1.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "422e78aa2f3e893f4502e29f8dd0f309", "sha256": "77630b961048a99e36da3fee455ef6d1c38fb4d65ad76e65db54addd3210f06b" }, "downloads": -1, "filename": "eurec4a_snd-2.1.5.tar.gz", "has_sig": false, "md5_digest": "422e78aa2f3e893f4502e29f8dd0f309", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 366313, "upload_time": "2020-04-16T09:15:47", "upload_time_iso_8601": "2020-04-16T09:15:47.762445Z", "url": "https://files.pythonhosted.org/packages/fe/45/96a801478a9aa9d99bd43621bd033e5ba1e9bc5a344317a50ced18643b25/eurec4a_snd-2.1.5.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "285f6de59bb8b8d6c0b1e6cc1eb6b10e", "sha256": "e742905f55964957e3e81ca393853e3cd6fb25b1d2f5096c5be3dd5725c57c58" }, "downloads": -1, "filename": "eurec4a_snd-2.1.5-py3-none-any.whl", "has_sig": false, "md5_digest": "285f6de59bb8b8d6c0b1e6cc1eb6b10e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 354037, "upload_time": "2020-04-16T09:15:46", "upload_time_iso_8601": "2020-04-16T09:15:46.272546Z", "url": "https://files.pythonhosted.org/packages/77/eb/62fc43cb478cc36a22dc0f07e0a61574a1db0b730c57421ebd399226ba9f/eurec4a_snd-2.1.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "422e78aa2f3e893f4502e29f8dd0f309", "sha256": "77630b961048a99e36da3fee455ef6d1c38fb4d65ad76e65db54addd3210f06b" }, "downloads": -1, "filename": "eurec4a_snd-2.1.5.tar.gz", "has_sig": false, "md5_digest": "422e78aa2f3e893f4502e29f8dd0f309", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 366313, "upload_time": "2020-04-16T09:15:47", "upload_time_iso_8601": "2020-04-16T09:15:47.762445Z", "url": "https://files.pythonhosted.org/packages/fe/45/96a801478a9aa9d99bd43621bd033e5ba1e9bc5a344317a50ced18643b25/eurec4a_snd-2.1.5.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }