<!--
SPDX-FileCopyrightText: 2024 Helmholtz-Zentrum hereon GmbH
SPDX-License-Identifier: CC-BY-4.0
-->
# psy-ugrid
[![CI](https://codebase.helmholtz.cloud/psyplot/psy-ugrid/badges/main/pipeline.svg)](https://codebase.helmholtz.cloud/psyplot/psy-ugrid/-/pipelines?page=1&scope=all&ref=main)
[![Code coverage](https://codebase.helmholtz.cloud/psyplot/psy-ugrid/badges/main/coverage.svg)](https://codebase.helmholtz.cloud/psyplot/psy-ugrid/-/graphs/main/charts)
[![Latest Release](https://codebase.helmholtz.cloud/psyplot/psy-ugrid/-/badges/release.svg)](https://codebase.helmholtz.cloud/psyplot/psy-ugrid)
[![PyPI version](https://img.shields.io/pypi/v/psy-ugrid.svg)](https://pypi.python.org/pypi/psy-ugrid/)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://pycqa.github.io/isort/)
[![PEP8](https://img.shields.io/badge/code%20style-pep8-orange.svg)](https://www.python.org/dev/peps/pep-0008/)
[![Checked with mypy](http://www.mypy-lang.org/static/mypy_badge.svg)](http://mypy-lang.org/)
[![REUSE status](https://api.reuse.software/badge/codebase.helmholtz.cloud/psyplot/psy-ugrid)](https://api.reuse.software/info/codebase.helmholtz.cloud/psyplot/psy-ugrid)
A psyplot plugin for decoding unstructured grids following the UGRID conventions
## Installation
Install this package in a dedicated python environment via
```bash
python -m venv venv
source venv/bin/activate
pip install psy-ugrid
```
To use this in a development setup, clone the [source code][source code] from
gitlab, start the development server and make your changes::
```bash
git clone https://codebase.helmholtz.cloud/psyplot/psy-ugrid
cd psy-ugrid
python -m venv venv
source venv/bin/activate
make dev-install
```
More detailed installation instructions my be found in the [docs][docs].
[source code]: https://codebase.helmholtz.cloud/psyplot/psy-ugrid
[docs]: https://psyplot.github.io/psy-ugrid/installation.html
## Usage
Once installed, the `UGRIDDecoder` is automatically registered within the
`psyplot` framework. Once you open a UGRID-conform file, the `UGRIDDecoder`
will be automatically used for all variables in the netCDF-file that define a
`mesh`. You do not have to do anything extra.
A :ref:`demo` on how this package works can be found [in the docs][docs].
## Technical note
This package has been generated from the template
https://codebase.helmholtz.cloud/psyplot/psyplot-plugin-template.git.
See the template repository for instructions on how to update the skeleton for
this package.
## License information
Copyright © 2024 Helmholtz-Zentrum hereon GmbH
Code files in this repository are licensed under the
LGPL-3.0-only, if not stated otherwise
in the file.
Documentation files in this repository are licensed under CC-BY-4.0, if not stated otherwise in the file.
Supplementary and configuration files in this repository are licensed
under CC0-1.0, if not stated otherwise
in the file.
Please check the header of the individual files for more detailed
information.
### License management
License management is handled with [``reuse``](https://reuse.readthedocs.io/).
If you have any questions on this, please have a look into the
[contributing guide][contributing] or contact the maintainers of
`psy-ugrid`.
[contributing]: https://psyplot.github.io/psy-ugrid/contributing.html
Raw data
{
"_id": null,
"home_page": null,
"name": "psy-ugrid",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": "\"Philipp S. Sommer\" <philipp.sommer@hereon.de>",
"keywords": "visualization, psyplot, ugrid, unstructured, dual mesh, native, cython",
"author": null,
"author_email": "\"Philipp S. Sommer\" <philipp.sommer@hereon.de>",
"download_url": "https://files.pythonhosted.org/packages/b7/24/35c8d21e9d98c27ca2f692362f45e797ef44549ef3f791d3319bdc299b19/psy-ugrid-0.1.0.tar.gz",
"platform": null,
"description": "<!--\nSPDX-FileCopyrightText: 2024 Helmholtz-Zentrum hereon GmbH\n\nSPDX-License-Identifier: CC-BY-4.0\n-->\n\n# psy-ugrid\n\n[![CI](https://codebase.helmholtz.cloud/psyplot/psy-ugrid/badges/main/pipeline.svg)](https://codebase.helmholtz.cloud/psyplot/psy-ugrid/-/pipelines?page=1&scope=all&ref=main)\n[![Code coverage](https://codebase.helmholtz.cloud/psyplot/psy-ugrid/badges/main/coverage.svg)](https://codebase.helmholtz.cloud/psyplot/psy-ugrid/-/graphs/main/charts)\n[![Latest Release](https://codebase.helmholtz.cloud/psyplot/psy-ugrid/-/badges/release.svg)](https://codebase.helmholtz.cloud/psyplot/psy-ugrid)\n[![PyPI version](https://img.shields.io/pypi/v/psy-ugrid.svg)](https://pypi.python.org/pypi/psy-ugrid/)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n[![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://pycqa.github.io/isort/)\n[![PEP8](https://img.shields.io/badge/code%20style-pep8-orange.svg)](https://www.python.org/dev/peps/pep-0008/)\n[![Checked with mypy](http://www.mypy-lang.org/static/mypy_badge.svg)](http://mypy-lang.org/)\n[![REUSE status](https://api.reuse.software/badge/codebase.helmholtz.cloud/psyplot/psy-ugrid)](https://api.reuse.software/info/codebase.helmholtz.cloud/psyplot/psy-ugrid)\n\n\nA psyplot plugin for decoding unstructured grids following the UGRID conventions\n\n## Installation\n\nInstall this package in a dedicated python environment via\n\n```bash\npython -m venv venv\nsource venv/bin/activate\npip install psy-ugrid\n```\n\nTo use this in a development setup, clone the [source code][source code] from\ngitlab, start the development server and make your changes::\n\n```bash\ngit clone https://codebase.helmholtz.cloud/psyplot/psy-ugrid\ncd psy-ugrid\npython -m venv venv\nsource venv/bin/activate\nmake dev-install\n```\n\nMore detailed installation instructions my be found in the [docs][docs].\n\n\n[source code]: https://codebase.helmholtz.cloud/psyplot/psy-ugrid\n[docs]: https://psyplot.github.io/psy-ugrid/installation.html\n\n## Usage\n\nOnce installed, the `UGRIDDecoder` is automatically registered within the\n`psyplot` framework. Once you open a UGRID-conform file, the `UGRIDDecoder`\nwill be automatically used for all variables in the netCDF-file that define a\n`mesh`. You do not have to do anything extra.\n\nA :ref:`demo` on how this package works can be found [in the docs][docs].\n\n\n## Technical note\n\nThis package has been generated from the template\nhttps://codebase.helmholtz.cloud/psyplot/psyplot-plugin-template.git.\n\nSee the template repository for instructions on how to update the skeleton for\nthis package.\n\n\n## License information\n\nCopyright \u00a9 2024 Helmholtz-Zentrum hereon GmbH\n\n\n\nCode files in this repository are licensed under the\nLGPL-3.0-only, if not stated otherwise\nin the file.\n\nDocumentation files in this repository are licensed under CC-BY-4.0, if not stated otherwise in the file.\n\nSupplementary and configuration files in this repository are licensed\nunder CC0-1.0, if not stated otherwise\nin the file.\n\nPlease check the header of the individual files for more detailed\ninformation.\n\n\n\n### License management\n\nLicense management is handled with [``reuse``](https://reuse.readthedocs.io/).\nIf you have any questions on this, please have a look into the\n[contributing guide][contributing] or contact the maintainers of\n`psy-ugrid`.\n\n[contributing]: https://psyplot.github.io/psy-ugrid/contributing.html\n",
"bugtrack_url": null,
"license": "LGPL-3.0-only",
"summary": "A psyplot plugin for decoding unstructured grids following the UGRID conventions",
"version": "0.1.0",
"project_urls": {
"Documentation": "https://psyplot.github.io/psy-ugrid/",
"Homepage": "https://codebase.helmholtz.cloud/psyplot/psy-ugrid",
"Source": "https://codebase.helmholtz.cloud/psyplot/psy-ugrid",
"Tracker": "https://codebase.helmholtz.cloud/psyplot/psy-ugrid/issues/"
},
"split_keywords": [
"visualization",
" psyplot",
" ugrid",
" unstructured",
" dual mesh",
" native",
" cython"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "4e692725c04f670545c379fa9687f7eb12c47fef1bb2bfc1b79579e875cdd712",
"md5": "c28738a23e292afd09b59f2a062ad26f",
"sha256": "c6fb488881b2eed0f6b9266962be7bf6e3f99e5d501518e822fcdec4083f1897"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "c28738a23e292afd09b59f2a062ad26f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 259490,
"upload_time": "2024-04-04T00:48:49",
"upload_time_iso_8601": "2024-04-04T00:48:49.468659Z",
"url": "https://files.pythonhosted.org/packages/4e/69/2725c04f670545c379fa9687f7eb12c47fef1bb2bfc1b79579e875cdd712/psy_ugrid-0.1.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "04b779468665c599a49c8fd3cc83125ff74f4e2f865baaaf39cb0bea30c29639",
"md5": "dbe0a8c5b065846b71d4aa922ce092ee",
"sha256": "4f397d1e211972a5316c4e7e450fa8c9aef16c890efe8d81de12496ac7a0ae4d"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "dbe0a8c5b065846b71d4aa922ce092ee",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 631750,
"upload_time": "2024-04-04T00:48:54",
"upload_time_iso_8601": "2024-04-04T00:48:54.644602Z",
"url": "https://files.pythonhosted.org/packages/04/b7/79468665c599a49c8fd3cc83125ff74f4e2f865baaaf39cb0bea30c29639/psy_ugrid-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9bf0553efb39dc253aee382d5aa1c2f5d6ee2935c136216ec13db6ca1dd322ec",
"md5": "8487ed668b25f73fda12077db17bc62e",
"sha256": "cc4a5b6ac39f3af8474736e5205d2acf93d75d1dbe0872c54510109401cb9bd4"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "8487ed668b25f73fda12077db17bc62e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 612148,
"upload_time": "2024-04-04T00:48:57",
"upload_time_iso_8601": "2024-04-04T00:48:57.990570Z",
"url": "https://files.pythonhosted.org/packages/9b/f0/553efb39dc253aee382d5aa1c2f5d6ee2935c136216ec13db6ca1dd322ec/psy_ugrid-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7687f47fccdfe4213eccdc06d0eed67800e8ccf582d5996189f897045099a2bd",
"md5": "1780ac3ca3236ebaa650e443f7dc8b25",
"sha256": "48039b36fc1ca9a130f2ec95e45aadba2bbfbd13d3015797a00f0adedf0240d9"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "1780ac3ca3236ebaa650e443f7dc8b25",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 610150,
"upload_time": "2024-04-04T00:49:01",
"upload_time_iso_8601": "2024-04-04T00:49:01.285927Z",
"url": "https://files.pythonhosted.org/packages/76/87/f47fccdfe4213eccdc06d0eed67800e8ccf582d5996189f897045099a2bd/psy_ugrid-0.1.0-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "da4b6ca6849a44769d3d9e832c5686eb90861826798249b1a3d3ccbce7ab70b9",
"md5": "2480673068187ca96eee66b7083d098e",
"sha256": "c875d5679298f8f6ba1c55d008a3ce43bfdf66af7d66d348b7538ff6a530cb89"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "2480673068187ca96eee66b7083d098e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 637513,
"upload_time": "2024-04-04T00:49:04",
"upload_time_iso_8601": "2024-04-04T00:49:04.261792Z",
"url": "https://files.pythonhosted.org/packages/da/4b/6ca6849a44769d3d9e832c5686eb90861826798249b1a3d3ccbce7ab70b9/psy_ugrid-0.1.0-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3d361bdc2b5638843ab5bf58d4494336ec860f3d31f6aec0d391192c67ca9505",
"md5": "7198d65eef7a1daa24e32d66124f1f64",
"sha256": "a3266263ae39f446475284a2a66e6ada45a39b28b1924e63b80fbb93dfac47bd"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "7198d65eef7a1daa24e32d66124f1f64",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 244204,
"upload_time": "2024-04-04T00:49:06",
"upload_time_iso_8601": "2024-04-04T00:49:06.115199Z",
"url": "https://files.pythonhosted.org/packages/3d/36/1bdc2b5638843ab5bf58d4494336ec860f3d31f6aec0d391192c67ca9505/psy_ugrid-0.1.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4ac8bf9573bb0ac6a48150e48a31d5fe6ddf62883116bc36afbce6c7be8d5f71",
"md5": "c5eee2ca8b40199e213bf81de3386a74",
"sha256": "9bedef0894e98f3cadf39a2c0dea3bd2140a8c775fd5f1a4bbad6e313a050223"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "c5eee2ca8b40199e213bf81de3386a74",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 255262,
"upload_time": "2024-04-04T00:49:09",
"upload_time_iso_8601": "2024-04-04T00:49:09.138112Z",
"url": "https://files.pythonhosted.org/packages/4a/c8/bf9573bb0ac6a48150e48a31d5fe6ddf62883116bc36afbce6c7be8d5f71/psy_ugrid-0.1.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4c6f6dad5d4bbea6066d9d645d3c3dba5569dec73c1a89c40fa6a95a6c94d2b9",
"md5": "2dbf122539afad182e9aef1641763542",
"sha256": "8cd4ca3ea97ff42ef138aeb77cbf3200e939fb6aa84f8889066b1ceca17dd7d5"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2dbf122539afad182e9aef1641763542",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 259471,
"upload_time": "2024-04-04T00:49:10",
"upload_time_iso_8601": "2024-04-04T00:49:10.918939Z",
"url": "https://files.pythonhosted.org/packages/4c/6f/6dad5d4bbea6066d9d645d3c3dba5569dec73c1a89c40fa6a95a6c94d2b9/psy_ugrid-0.1.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6f1634811d3a79e541b663509f6f71dcea6332a7ac1391498602e3411f4b1c73",
"md5": "2e1ae1895e88c04ad3c9e7f408bc8947",
"sha256": "f77673249f05e5fe99f654279fa840534045abb98573b36170f89dade0c9b0e7"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "2e1ae1895e88c04ad3c9e7f408bc8947",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 671525,
"upload_time": "2024-04-04T00:49:13",
"upload_time_iso_8601": "2024-04-04T00:49:13.369794Z",
"url": "https://files.pythonhosted.org/packages/6f/16/34811d3a79e541b663509f6f71dcea6332a7ac1391498602e3411f4b1c73/psy_ugrid-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cbe1e72b42f744bc0ab006a2e1329119d48a41e7fdeb92a6d198358b24ee773b",
"md5": "06a425f1960b8da29cdec4ec907d77af",
"sha256": "62cf64e06f2065754e8ba3e999e387619025a9c5a9a2e34a197d31755d8684aa"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "06a425f1960b8da29cdec4ec907d77af",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 643537,
"upload_time": "2024-04-04T00:49:15",
"upload_time_iso_8601": "2024-04-04T00:49:15.478029Z",
"url": "https://files.pythonhosted.org/packages/cb/e1/e72b42f744bc0ab006a2e1329119d48a41e7fdeb92a6d198358b24ee773b/psy_ugrid-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b33ffbe53ec798ecd8d49d9e84e7ab5c71db91483194c38bf8521bd685379e1c",
"md5": "98572715ec322eeb9788aa17d4c9c63b",
"sha256": "2054a80a2c5fd353da3bf1a7e90a6617583d6bc89eaabbbf4416a591d51bb8f7"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "98572715ec322eeb9788aa17d4c9c63b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 644270,
"upload_time": "2024-04-04T00:49:18",
"upload_time_iso_8601": "2024-04-04T00:49:18.194362Z",
"url": "https://files.pythonhosted.org/packages/b3/3f/fbe53ec798ecd8d49d9e84e7ab5c71db91483194c38bf8521bd685379e1c/psy_ugrid-0.1.0-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "70cef2c15bbcfa00ecf4a4235de72cf6de494939076db1a4e4b480bdae08222e",
"md5": "101e542e2a28f408c808e949caadc3c2",
"sha256": "8f3a720b2474f1fe41ff71d54c1ea24736779cf807b1f9f7cbf3fac8a13a6d0e"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "101e542e2a28f408c808e949caadc3c2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 675457,
"upload_time": "2024-04-04T00:49:20",
"upload_time_iso_8601": "2024-04-04T00:49:20.009423Z",
"url": "https://files.pythonhosted.org/packages/70/ce/f2c15bbcfa00ecf4a4235de72cf6de494939076db1a4e4b480bdae08222e/psy_ugrid-0.1.0-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1ae1c475ff71b1fedbe6e86813cd0e76f41955ab3025981aba916ff7d9f4192a",
"md5": "d03678a7a471867f55449bc4fbb1f896",
"sha256": "a13e4d2adad6ddafbd725c4a3032b42d594d952fb32234950845755833c7de65"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "d03678a7a471867f55449bc4fbb1f896",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 243926,
"upload_time": "2024-04-04T00:49:22",
"upload_time_iso_8601": "2024-04-04T00:49:22.562510Z",
"url": "https://files.pythonhosted.org/packages/1a/e1/c475ff71b1fedbe6e86813cd0e76f41955ab3025981aba916ff7d9f4192a/psy_ugrid-0.1.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9a017ad2f0c5bc3ca0c02ee014c7963d6e07c6f7cab5e6ff9ea66b6d07620606",
"md5": "fbc29364dace44d966d16597aac1c0c4",
"sha256": "5890c0180303d68def4dd6e0158fa9d65e02234bfc938e789548f05f7d29adb8"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "fbc29364dace44d966d16597aac1c0c4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 255265,
"upload_time": "2024-04-04T00:49:24",
"upload_time_iso_8601": "2024-04-04T00:49:24.198624Z",
"url": "https://files.pythonhosted.org/packages/9a/01/7ad2f0c5bc3ca0c02ee014c7963d6e07c6f7cab5e6ff9ea66b6d07620606/psy_ugrid-0.1.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4ccc5a7ca793e22478cd60183ae1be9de972650145390d628a6e894f0a4c98b6",
"md5": "b693072a1ea4d16f3809b13734edfc9f",
"sha256": "358ce2ee2c8fd3611f749d376193e1c74adc0852de973f45aaf850ee8f1b56bc"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b693072a1ea4d16f3809b13734edfc9f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 260758,
"upload_time": "2024-04-04T00:49:25",
"upload_time_iso_8601": "2024-04-04T00:49:25.779462Z",
"url": "https://files.pythonhosted.org/packages/4c/cc/5a7ca793e22478cd60183ae1be9de972650145390d628a6e894f0a4c98b6/psy_ugrid-0.1.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a06614cfaa52be693337fbc9826b2c4920f10009533293fc4956f4877fae68fc",
"md5": "25ad6db2e695fc044e6fb8daf107b664",
"sha256": "fb5196364258fe69d627468605270e494d6e1a63ea6e86294b878377182ce9de"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "25ad6db2e695fc044e6fb8daf107b664",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 661995,
"upload_time": "2024-04-04T00:49:27",
"upload_time_iso_8601": "2024-04-04T00:49:27.632542Z",
"url": "https://files.pythonhosted.org/packages/a0/66/14cfaa52be693337fbc9826b2c4920f10009533293fc4956f4877fae68fc/psy_ugrid-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4cc283bba5a49091d3c3d644b73603743540959421f029a7da0306bcc69409f5",
"md5": "58f263cad072937b9a5f7ce6522f5200",
"sha256": "b8e5397923f547842495f39c90f94823bf7bfa05fb85c1e56053d8d21449c453"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "58f263cad072937b9a5f7ce6522f5200",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 636875,
"upload_time": "2024-04-04T00:49:29",
"upload_time_iso_8601": "2024-04-04T00:49:29.791472Z",
"url": "https://files.pythonhosted.org/packages/4c/c2/83bba5a49091d3c3d644b73603743540959421f029a7da0306bcc69409f5/psy_ugrid-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "084410becd0879e77caa1a7ce0e24a1be029e37b66cb84cf9d7c8dd62afc3d71",
"md5": "ecc27bb988b05e87e3406ea24af5c95d",
"sha256": "508f0f7c8eeba26310435dd5ba535b7bdbe0efe46051e06687261f93bc18cdce"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-cp312-cp312-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "ecc27bb988b05e87e3406ea24af5c95d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 632834,
"upload_time": "2024-04-04T00:49:31",
"upload_time_iso_8601": "2024-04-04T00:49:31.505425Z",
"url": "https://files.pythonhosted.org/packages/08/44/10becd0879e77caa1a7ce0e24a1be029e37b66cb84cf9d7c8dd62afc3d71/psy_ugrid-0.1.0-cp312-cp312-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fdc2ee4fb4cdaa744bd19e8efd7f02aaf93fa7199607277cff7a3f17275aec95",
"md5": "19c90f008cefd6e17d5c61db444969fa",
"sha256": "1f480653f9dbbb5abb30102c287ca2678cebbe8657648d17a251f8a3649ee254"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "19c90f008cefd6e17d5c61db444969fa",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 667436,
"upload_time": "2024-04-04T00:49:34",
"upload_time_iso_8601": "2024-04-04T00:49:34.381178Z",
"url": "https://files.pythonhosted.org/packages/fd/c2/ee4fb4cdaa744bd19e8efd7f02aaf93fa7199607277cff7a3f17275aec95/psy_ugrid-0.1.0-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "481c6d13a282b81c62f09a5d7810024c42ce8c9de8d4127ae97aaee8d96ba3fa",
"md5": "4f2c26f77bfae8a85da575eef14f3baf",
"sha256": "4a2a05adb88728e70d17f426f75514327125841adb6f79f1028fc70ac96fcda6"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "4f2c26f77bfae8a85da575eef14f3baf",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 244079,
"upload_time": "2024-04-04T00:49:35",
"upload_time_iso_8601": "2024-04-04T00:49:35.892764Z",
"url": "https://files.pythonhosted.org/packages/48/1c/6d13a282b81c62f09a5d7810024c42ce8c9de8d4127ae97aaee8d96ba3fa/psy_ugrid-0.1.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3fd933cf9554b8ccf7f4da3ef1026dd6e634627a4ab3c81fb8711feb8f166e66",
"md5": "4e9b79cf117352e082efc8e05eeff71c",
"sha256": "91f290d3874e05e5f60fd3bc770a1fca69cd482e3f7d1877516c28ae9a95a7a9"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "4e9b79cf117352e082efc8e05eeff71c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 256344,
"upload_time": "2024-04-04T00:49:37",
"upload_time_iso_8601": "2024-04-04T00:49:37.417450Z",
"url": "https://files.pythonhosted.org/packages/3f/d9/33cf9554b8ccf7f4da3ef1026dd6e634627a4ab3c81fb8711feb8f166e66/psy_ugrid-0.1.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "806024f5fee8e8ea4953886ffbb59513a5850dbb1f6077b9faeac4be7c45231f",
"md5": "2744a1bbefc32279960a904571eed48c",
"sha256": "985e0cecaaba576b91ed435fd0127e9b9dccf5368db1a541281dcf5e3baf5638"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2744a1bbefc32279960a904571eed48c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 260020,
"upload_time": "2024-04-04T00:49:39",
"upload_time_iso_8601": "2024-04-04T00:49:39.765822Z",
"url": "https://files.pythonhosted.org/packages/80/60/24f5fee8e8ea4953886ffbb59513a5850dbb1f6077b9faeac4be7c45231f/psy_ugrid-0.1.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5b2b1a79f1bc48295e314d81230d7d246b42cf4786af054cb17717e9fe12bd7e",
"md5": "470369bc93eea5780e5a8db5bb77eab4",
"sha256": "197d86a39932685da0bb0e1f10949e8e5a0f4629cf444a669330244393176c54"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "470369bc93eea5780e5a8db5bb77eab4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 634675,
"upload_time": "2024-04-04T00:49:41",
"upload_time_iso_8601": "2024-04-04T00:49:41.448716Z",
"url": "https://files.pythonhosted.org/packages/5b/2b/1a79f1bc48295e314d81230d7d246b42cf4786af054cb17717e9fe12bd7e/psy_ugrid-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0a846163ee4d850df7451c79500b1eadcf40f6c960acd0a114bebbfd0731f2d9",
"md5": "d6a9df3c680d3c517197120f89645cb0",
"sha256": "ece0f5b434bf229889de6198c14e4b09c2d3ffff63283f65b3ad7c87dff9eed9"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "d6a9df3c680d3c517197120f89645cb0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 614942,
"upload_time": "2024-04-04T00:49:44",
"upload_time_iso_8601": "2024-04-04T00:49:44.311617Z",
"url": "https://files.pythonhosted.org/packages/0a/84/6163ee4d850df7451c79500b1eadcf40f6c960acd0a114bebbfd0731f2d9/psy_ugrid-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "185b334f5567675da56d2c9f0380d1b75f10bb812820c387c881e442a9b5e893",
"md5": "2365f3566dbb03e402ecb9542826109d",
"sha256": "aa182bd9f5d857d5b4b64b3dc1d9999e95ce0b66a986bc33fb2076ad96fc1e0f"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "2365f3566dbb03e402ecb9542826109d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 612955,
"upload_time": "2024-04-04T00:49:47",
"upload_time_iso_8601": "2024-04-04T00:49:47.907763Z",
"url": "https://files.pythonhosted.org/packages/18/5b/334f5567675da56d2c9f0380d1b75f10bb812820c387c881e442a9b5e893/psy_ugrid-0.1.0-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4e346332e457e298ce9ae57ad31182c1ae49162f19618a4e453c3689e0f4e602",
"md5": "e6ab6d4a388f1e205ce7e7fe3f84760c",
"sha256": "426d4530f1e21b3842ce4bd03ea3c2f289267f91bb7f73bb40ef0dfc3fe3d51b"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "e6ab6d4a388f1e205ce7e7fe3f84760c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 640407,
"upload_time": "2024-04-04T00:49:50",
"upload_time_iso_8601": "2024-04-04T00:49:50.553341Z",
"url": "https://files.pythonhosted.org/packages/4e/34/6332e457e298ce9ae57ad31182c1ae49162f19618a4e453c3689e0f4e602/psy_ugrid-0.1.0-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dcd09d1632920dd0cd5cc6a31ed3448fa9362ce1f8b8ebdc82599102aea40847",
"md5": "20ee4f505523caee5361b59e706b905a",
"sha256": "6c6f275553d77b004f433a3ef40a467f35d2c99a3a8b61f40596880dd33f083e"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "20ee4f505523caee5361b59e706b905a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 244836,
"upload_time": "2024-04-04T00:49:53",
"upload_time_iso_8601": "2024-04-04T00:49:53.132719Z",
"url": "https://files.pythonhosted.org/packages/dc/d0/9d1632920dd0cd5cc6a31ed3448fa9362ce1f8b8ebdc82599102aea40847/psy_ugrid-0.1.0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7d07065a81a9fc32c8c1a7a454eee10a36573776de41df78f43aa34bd5bb64c6",
"md5": "52f5c1165c48536343a6b8a6d9995951",
"sha256": "640c2148e434906886f3dbe6331525455b6823688f59d7bb6f20a7b80ad26021"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "52f5c1165c48536343a6b8a6d9995951",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 255813,
"upload_time": "2024-04-04T00:49:54",
"upload_time_iso_8601": "2024-04-04T00:49:54.901386Z",
"url": "https://files.pythonhosted.org/packages/7d/07/065a81a9fc32c8c1a7a454eee10a36573776de41df78f43aa34bd5bb64c6/psy_ugrid-0.1.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bf93a9b890c706ecde0b4343ce194a36dfbaa1ee34d4fe969b96175a0e7b9d4b",
"md5": "37953f243f65b19703722e1d2c6c2054",
"sha256": "ea2a5441d2a94c532026f03a1ecee473b7beb250503d1e133bd621364b066723"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "37953f243f65b19703722e1d2c6c2054",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 246429,
"upload_time": "2024-04-04T00:49:57",
"upload_time_iso_8601": "2024-04-04T00:49:57.274015Z",
"url": "https://files.pythonhosted.org/packages/bf/93/a9b890c706ecde0b4343ce194a36dfbaa1ee34d4fe969b96175a0e7b9d4b/psy_ugrid-0.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "effc8d181ff696c2c370e8ce85448df2d1395580730d0cee6930b361e53ca827",
"md5": "0d2b420721e190554b5c3600b97feef2",
"sha256": "8e27ddf8723fc0c9f17fcebca7e5d2230cca2e63250d778de3b56238b0741c47"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0d2b420721e190554b5c3600b97feef2",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 263030,
"upload_time": "2024-04-04T00:49:58",
"upload_time_iso_8601": "2024-04-04T00:49:58.740306Z",
"url": "https://files.pythonhosted.org/packages/ef/fc/8d181ff696c2c370e8ce85448df2d1395580730d0cee6930b361e53ca827/psy_ugrid-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e662c5a69849fb4f7a0b1e88c7f56208366000c5fd9207dd3ec021c3e527fbe4",
"md5": "e427cedf0133a2a1d4a3908de82d3c9d",
"sha256": "9d5bbb3c73912430a6f60ceef92b8e1b2c9fe8e3731560b42ef4206a91392a07"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "e427cedf0133a2a1d4a3908de82d3c9d",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 264169,
"upload_time": "2024-04-04T00:50:01",
"upload_time_iso_8601": "2024-04-04T00:50:01.297459Z",
"url": "https://files.pythonhosted.org/packages/e6/62/c5a69849fb4f7a0b1e88c7f56208366000c5fd9207dd3ec021c3e527fbe4/psy_ugrid-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "77ccbed02492c4170982dfaa9159fb4fa3b2bc4857efc6ff7fe8c744a2c1e7b3",
"md5": "3bee03bcef46bf92138c310d0d2e2ee0",
"sha256": "3184aa7c3379297711de9f1b2e2071745f1f2cba468cfc0ec92cb86b9828fd8a"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "3bee03bcef46bf92138c310d0d2e2ee0",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 250672,
"upload_time": "2024-04-04T00:50:03",
"upload_time_iso_8601": "2024-04-04T00:50:03.751467Z",
"url": "https://files.pythonhosted.org/packages/77/cc/bed02492c4170982dfaa9159fb4fa3b2bc4857efc6ff7fe8c744a2c1e7b3/psy_ugrid-0.1.0-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fefac465461a95dc1f245e3b6a7e8ff311b1fa4442fe5f447c14e8311fcf1cb9",
"md5": "1f61bc1eab4181a2b4620dd55cbc0eee",
"sha256": "fb24594d4b31c6070b851495f5857bcaeaead168b570b8a50ebcddeb03a3a07d"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "1f61bc1eab4181a2b4620dd55cbc0eee",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 246303,
"upload_time": "2024-04-04T00:50:05",
"upload_time_iso_8601": "2024-04-04T00:50:05.550338Z",
"url": "https://files.pythonhosted.org/packages/fe/fa/c465461a95dc1f245e3b6a7e8ff311b1fa4442fe5f447c14e8311fcf1cb9/psy_ugrid-0.1.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f307a404a876dda4153bf772843257ed51d65732663b0c081468d67e7bad13b9",
"md5": "e308cee6b3118cea342e53161ef7e445",
"sha256": "dc8acbed674f26c6a340d363cf640e240b63b307f1c68bb42de83659ea4ac25b"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e308cee6b3118cea342e53161ef7e445",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 262866,
"upload_time": "2024-04-04T00:50:07",
"upload_time_iso_8601": "2024-04-04T00:50:07.397465Z",
"url": "https://files.pythonhosted.org/packages/f3/07/a404a876dda4153bf772843257ed51d65732663b0c081468d67e7bad13b9/psy_ugrid-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b2221af0d5cae10661e23ee128a8d6838196e9b4eede27a759bf09645bd9dbd8",
"md5": "81b0c9e8fb15ffd4f20e7cb189fab414",
"sha256": "23008924d3b028a1da5db94918e73477cf6aa72670c54a97ea2e1a716bddc255"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "81b0c9e8fb15ffd4f20e7cb189fab414",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 263917,
"upload_time": "2024-04-04T00:50:09",
"upload_time_iso_8601": "2024-04-04T00:50:09.136619Z",
"url": "https://files.pythonhosted.org/packages/b2/22/1af0d5cae10661e23ee128a8d6838196e9b4eede27a759bf09645bd9dbd8/psy_ugrid-0.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "742b0795e3eccda824e669e7c25db3bfbdbd9309e05dae0464dee6e92abd0abd",
"md5": "5c2c7e669d125a158ded101e54b5a2c8",
"sha256": "baad37c65d852e2865f549302088ec303968c90904c93e1466b9eaa1ad25dc45"
},
"downloads": -1,
"filename": "psy_ugrid-0.1.0-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "5c2c7e669d125a158ded101e54b5a2c8",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 250546,
"upload_time": "2024-04-04T00:50:10",
"upload_time_iso_8601": "2024-04-04T00:50:10.799919Z",
"url": "https://files.pythonhosted.org/packages/74/2b/0795e3eccda824e669e7c25db3bfbdbd9309e05dae0464dee6e92abd0abd/psy_ugrid-0.1.0-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b72435c8d21e9d98c27ca2f692362f45e797ef44549ef3f791d3319bdc299b19",
"md5": "a80c8b6fd7c30b2c1106e629706502b6",
"sha256": "6ffd736d34b4d746789758b9f90375140056c20f1455b826ec91e719d75221bd"
},
"downloads": -1,
"filename": "psy-ugrid-0.1.0.tar.gz",
"has_sig": false,
"md5_digest": "a80c8b6fd7c30b2c1106e629706502b6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 180519,
"upload_time": "2024-04-04T00:50:13",
"upload_time_iso_8601": "2024-04-04T00:50:13.069422Z",
"url": "https://files.pythonhosted.org/packages/b7/24/35c8d21e9d98c27ca2f692362f45e797ef44549ef3f791d3319bdc299b19/psy-ugrid-0.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-04-04 00:50:13",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "psy-ugrid"
}