Name | fluidimage JSON |
Version |
0.5.4
JSON |
| download |
home_page | None |
Summary | Fluid image processing with Python. |
upload_time | 2024-11-07 11:39:15 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.10 |
license | CeCILL |
keywords |
piv
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# FluidImage
[![Latest version](https://img.shields.io/pypi/v/fluidimage.svg)](https://pypi.python.org/pypi/fluidimage/)
![Supported Python versions](https://img.shields.io/pypi/pyversions/fluidimage.svg)
[![Documentation status](https://readthedocs.org/projects/fluidimage/badge/?version=latest)](http://fluidimage.readthedocs.org)
[![Code coverage](https://codecov.io/gh/fluiddyn/fluidimage/branch/branch%2Fdefault/graph/badge.svg)](https://codecov.io/gh/fluiddyn/fluidimage/branch/branch%2Fdefault/)
[![Heptapod CI](https://foss.heptapod.net/fluiddyn/fluidimage/badges/branch/default/pipeline.svg)](https://foss.heptapod.net/fluiddyn/fluidimage/-/pipelines)
[![Github Actions Linux](https://github.com/fluiddyn/fluidimage/actions/workflows/ci-linux.yml/badge.svg?branch=branch/default)](https://github.com/fluiddyn/fluidimage/actions/workflows/ci-linux.yml)
[![Github Actions Pixi](https://github.com/fluiddyn/fluidimage/actions/workflows/ci-pixi.yml/badge.svg?branch=branch/default)](https://github.com/fluiddyn/fluidimage/actions/workflows/ci-pixi.yml)
<!-- start description -->
FluidImage is a free and open-source Python framework to process images of fluids (in
particular with [PIV]), and analyse the resulting fields.
**Documentation:** <http://fluidimage.readthedocs.org>
Image processing for fluid mechanics is still dominated by proprietary tools. Such tools
are not ideal when you want to understand and tweak the algorithms and/or to use
clusters. There are also good and useful PIV software ([PIVlab], [UVmat]) written in
Matlab, which is itself proprietary.
With the improvement of the Python numerical ecosystem and of tools for collaborative
development, one can think it is possible to build together a good community-driven
library/toolkit specialized in image processing for fluid mechanics. This is our project
with FluidImage.
Fluidimage has now grown into a clean software reimplementing in modern Python algorithms
and ideas taken from [UVmat], [OpenPIV], [PIVlab] and [PIVmat] with a focus on
performance, usability and maintanability. However, Fluidimage is not restricted to
Particle Image Velocimetry computations ([PIV], i.e. displacements of pattern obtained by
correlations of cropped images) and can be used to
- display and pre-process images,
- compute displacement or velocity fields with PIV, Background-Oriented Schlieren
([BOS](https://en.wikipedia.org/wiki/Background-oriented_schlieren_technique)) and
[optical flow](https://en.wikipedia.org/wiki/Optical_flow),
- analyze and display vector and scalar fields.
We want to make FluidImage easy (useful documentation, easy installation, nice API,
usable with simple scripts and few simple graphical user interfaces), reliable (with good
[unittests](https://codecov.io/gh/fluiddyn/fluidimage/)) and very efficient, in
particular when the number of images is large. Thus we want FluidImage to be able to run
efficiently and easily on a personal computer and on big clusters. The efficiency is
achieved by using
- a framework for asynchronous computations (currently, we use
[Trio](https://trio.readthedocs.io)) and an associated API to define "topologies" of
parallel computations.
- parallelism to efficiently use the available cores of the Central Processing Units
(CPU),
- good profiling and efficient and specialized algorithms,
- cutting-edge tools for fast computations with Python (in particular
[Pythran](https://pythran.readthedocs.io) through
[Transonic](https://transonic.readthedocs.io)).
[openpiv]: http://www.openpiv.net/
[piv]: https://en.wikipedia.org/wiki/Particle_image_velocimetry%20(PIV)
[pivlab]: https://pivlab.blogspot.com/p/what-is-pivlab.html
[pivmat]: http://www.fast.u-psud.fr/pivmat/
[uvmat]: http://servforge.legi.grenoble-inp.fr/projects/soft-uvmat/wiki/UvmatHelp
Raw data
{
"_id": null,
"home_page": null,
"name": "fluidimage",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.10",
"maintainer_email": null,
"keywords": "PIV",
"author": null,
"author_email": "Pierre Augier <pierre.augier@legi.cnrs.fr>",
"download_url": "https://files.pythonhosted.org/packages/75/f0/486b7646859a828ad139bfb31cef20e9084514390950622384c40844cddb/fluidimage-0.5.4.tar.gz",
"platform": null,
"description": "# FluidImage\n\n[![Latest version](https://img.shields.io/pypi/v/fluidimage.svg)](https://pypi.python.org/pypi/fluidimage/)\n![Supported Python versions](https://img.shields.io/pypi/pyversions/fluidimage.svg)\n[![Documentation status](https://readthedocs.org/projects/fluidimage/badge/?version=latest)](http://fluidimage.readthedocs.org)\n[![Code coverage](https://codecov.io/gh/fluiddyn/fluidimage/branch/branch%2Fdefault/graph/badge.svg)](https://codecov.io/gh/fluiddyn/fluidimage/branch/branch%2Fdefault/)\n[![Heptapod CI](https://foss.heptapod.net/fluiddyn/fluidimage/badges/branch/default/pipeline.svg)](https://foss.heptapod.net/fluiddyn/fluidimage/-/pipelines)\n[![Github Actions Linux](https://github.com/fluiddyn/fluidimage/actions/workflows/ci-linux.yml/badge.svg?branch=branch/default)](https://github.com/fluiddyn/fluidimage/actions/workflows/ci-linux.yml)\n[![Github Actions Pixi](https://github.com/fluiddyn/fluidimage/actions/workflows/ci-pixi.yml/badge.svg?branch=branch/default)](https://github.com/fluiddyn/fluidimage/actions/workflows/ci-pixi.yml)\n\n<!-- start description -->\n\nFluidImage is a free and open-source Python framework to process images of fluids (in\nparticular with [PIV]), and analyse the resulting fields.\n\n**Documentation:** <http://fluidimage.readthedocs.org>\n\nImage processing for fluid mechanics is still dominated by proprietary tools. Such tools\nare not ideal when you want to understand and tweak the algorithms and/or to use\nclusters. There are also good and useful PIV software ([PIVlab], [UVmat]) written in\nMatlab, which is itself proprietary.\n\nWith the improvement of the Python numerical ecosystem and of tools for collaborative\ndevelopment, one can think it is possible to build together a good community-driven\nlibrary/toolkit specialized in image processing for fluid mechanics. This is our project\nwith FluidImage.\n\nFluidimage has now grown into a clean software reimplementing in modern Python algorithms\nand ideas taken from [UVmat], [OpenPIV], [PIVlab] and [PIVmat] with a focus on\nperformance, usability and maintanability. However, Fluidimage is not restricted to\nParticle Image Velocimetry computations ([PIV], i.e. displacements of pattern obtained by\ncorrelations of cropped images) and can be used to\n\n- display and pre-process images,\n\n- compute displacement or velocity fields with PIV, Background-Oriented Schlieren\n ([BOS](https://en.wikipedia.org/wiki/Background-oriented_schlieren_technique)) and\n [optical flow](https://en.wikipedia.org/wiki/Optical_flow),\n\n- analyze and display vector and scalar fields.\n\nWe want to make FluidImage easy (useful documentation, easy installation, nice API,\nusable with simple scripts and few simple graphical user interfaces), reliable (with good\n[unittests](https://codecov.io/gh/fluiddyn/fluidimage/)) and very efficient, in\nparticular when the number of images is large. Thus we want FluidImage to be able to run\nefficiently and easily on a personal computer and on big clusters. The efficiency is\nachieved by using\n\n- a framework for asynchronous computations (currently, we use\n [Trio](https://trio.readthedocs.io)) and an associated API to define \"topologies\" of\n parallel computations.\n\n- parallelism to efficiently use the available cores of the Central Processing Units\n (CPU),\n\n- good profiling and efficient and specialized algorithms,\n\n- cutting-edge tools for fast computations with Python (in particular\n [Pythran](https://pythran.readthedocs.io) through\n [Transonic](https://transonic.readthedocs.io)).\n\n[openpiv]: http://www.openpiv.net/\n[piv]: https://en.wikipedia.org/wiki/Particle_image_velocimetry%20(PIV)\n[pivlab]: https://pivlab.blogspot.com/p/what-is-pivlab.html\n[pivmat]: http://www.fast.u-psud.fr/pivmat/\n[uvmat]: http://servforge.legi.grenoble-inp.fr/projects/soft-uvmat/wiki/UvmatHelp\n",
"bugtrack_url": null,
"license": "CeCILL",
"summary": "Fluid image processing with Python.",
"version": "0.5.4",
"project_urls": {
"documentation": "https://fluidimage.readthedocs.io",
"homepage": "https://foss.heptapod.net/fluiddyn/fluidimage",
"read-only-mirror": "https://github.com/fluiddyn/fluidimage"
},
"split_keywords": [
"piv"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "db0f19c6d7123fadf973bcc4da3e6ecb317eda99d3527f803bb149f79f47a842",
"md5": "e019e4da78fff6950257b83161ad1c12",
"sha256": "514715c6b6663f7a79ca1f358bbdcf458f800aa9d0a0256dfc23adfd88b9881e"
},
"downloads": -1,
"filename": "fluidimage-0.5.4-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "e019e4da78fff6950257b83161ad1c12",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.10",
"size": 377779,
"upload_time": "2024-11-07T11:38:42",
"upload_time_iso_8601": "2024-11-07T11:38:42.234799Z",
"url": "https://files.pythonhosted.org/packages/db/0f/19c6d7123fadf973bcc4da3e6ecb317eda99d3527f803bb149f79f47a842/fluidimage-0.5.4-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e9e8bcf27cbac26943163d244a410ce8a8d977292c3a4ccbc9379edca6dca3ab",
"md5": "9e57df59235b5c7a999bfa93af66beb1",
"sha256": "5e43fb2016898a947746d51c87fbc7e2a9a2831c6a0556c7aa9f329eb55c2026"
},
"downloads": -1,
"filename": "fluidimage-0.5.4-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "9e57df59235b5c7a999bfa93af66beb1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.10",
"size": 360213,
"upload_time": "2024-11-07T11:38:44",
"upload_time_iso_8601": "2024-11-07T11:38:44.106222Z",
"url": "https://files.pythonhosted.org/packages/e9/e8/bcf27cbac26943163d244a410ce8a8d977292c3a4ccbc9379edca6dca3ab/fluidimage-0.5.4-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "98f2202c9be0c13d7682cc12928cffd24530730ce12329a92a1df266a91a37ff",
"md5": "f7dc43c11bde147a347b3e87dd7140b0",
"sha256": "1c5390a0c5d11c3d634fc22025168a08c82cd18b8a09948773ce49dd58873fb5"
},
"downloads": -1,
"filename": "fluidimage-0.5.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f7dc43c11bde147a347b3e87dd7140b0",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.10",
"size": 439077,
"upload_time": "2024-11-07T11:38:45",
"upload_time_iso_8601": "2024-11-07T11:38:45.607557Z",
"url": "https://files.pythonhosted.org/packages/98/f2/202c9be0c13d7682cc12928cffd24530730ce12329a92a1df266a91a37ff/fluidimage-0.5.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5b5a8ee297a6f8f342e2baf446075a7a69b0b78a12512029dc484851d0292d5a",
"md5": "b18b52a1bd16a68cd801ebf53a9680b7",
"sha256": "6edcd7b00ecbfe405635060cc82bb419c34f6c9dbdbac081b0def0505f1b3361"
},
"downloads": -1,
"filename": "fluidimage-0.5.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b18b52a1bd16a68cd801ebf53a9680b7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.10",
"size": 437176,
"upload_time": "2024-11-07T11:38:47",
"upload_time_iso_8601": "2024-11-07T11:38:47.134050Z",
"url": "https://files.pythonhosted.org/packages/5b/5a/8ee297a6f8f342e2baf446075a7a69b0b78a12512029dc484851d0292d5a/fluidimage-0.5.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "70bacce655415ece38f8ebf38502b921488abe46277184fc6bb101ba2cca7341",
"md5": "a26f62434921932021ec5c3fa5a1a0d3",
"sha256": "f0cf5e0c56edb3d80de113988daa5da3e633a3b095f00d7120bcfee59360f9ba"
},
"downloads": -1,
"filename": "fluidimage-0.5.4-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "a26f62434921932021ec5c3fa5a1a0d3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.10",
"size": 387053,
"upload_time": "2024-11-07T11:38:48",
"upload_time_iso_8601": "2024-11-07T11:38:48.425669Z",
"url": "https://files.pythonhosted.org/packages/70/ba/cce655415ece38f8ebf38502b921488abe46277184fc6bb101ba2cca7341/fluidimage-0.5.4-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "150d073968491c1b63aa5a76ce2ddbbe389e63ec9938d820f9c13d465689ef37",
"md5": "11349c4068a8c92ead448e055549fe4a",
"sha256": "de4609e3e69a96579c15584901e243a7986d2d0c8a8b0ee5829c8f7a615edc50"
},
"downloads": -1,
"filename": "fluidimage-0.5.4-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "11349c4068a8c92ead448e055549fe4a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.10",
"size": 377783,
"upload_time": "2024-11-07T11:38:49",
"upload_time_iso_8601": "2024-11-07T11:38:49.817089Z",
"url": "https://files.pythonhosted.org/packages/15/0d/073968491c1b63aa5a76ce2ddbbe389e63ec9938d820f9c13d465689ef37/fluidimage-0.5.4-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e6f6859502dd5377a04e8170bfdeecb321c6dd0c8999c2dcf599358d9e010a9d",
"md5": "3cb6e9360e0a739a56d675713eac451c",
"sha256": "829c29e95e91a8fa589c0f5faf61c84996aca29863aa3487d8b17fd222634fda"
},
"downloads": -1,
"filename": "fluidimage-0.5.4-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "3cb6e9360e0a739a56d675713eac451c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.10",
"size": 360213,
"upload_time": "2024-11-07T11:38:51",
"upload_time_iso_8601": "2024-11-07T11:38:51.729689Z",
"url": "https://files.pythonhosted.org/packages/e6/f6/859502dd5377a04e8170bfdeecb321c6dd0c8999c2dcf599358d9e010a9d/fluidimage-0.5.4-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b6432534afe050093c2db86c7146c65db8fa38cd870b8c11b98e03bf59b957c0",
"md5": "3b83be8c228a55c5085b349ee843ccb2",
"sha256": "0fb17a2a31a5f28687c1dd47feb201545c08bb5158236212b2d2a05cbac97c43"
},
"downloads": -1,
"filename": "fluidimage-0.5.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3b83be8c228a55c5085b349ee843ccb2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.10",
"size": 439390,
"upload_time": "2024-11-07T11:38:53",
"upload_time_iso_8601": "2024-11-07T11:38:53.391253Z",
"url": "https://files.pythonhosted.org/packages/b6/43/2534afe050093c2db86c7146c65db8fa38cd870b8c11b98e03bf59b957c0/fluidimage-0.5.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "750d932d445405af8ba371ad7f41d05251a307c04573764d6c16a57fd206e450",
"md5": "b223283f7e2bf182c086eb599860c768",
"sha256": "814d88f0cfe2597b0fa2781e30e2159b563ef96d9abe734e1fce4f127e968564"
},
"downloads": -1,
"filename": "fluidimage-0.5.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b223283f7e2bf182c086eb599860c768",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.10",
"size": 437085,
"upload_time": "2024-11-07T11:38:55",
"upload_time_iso_8601": "2024-11-07T11:38:55.049460Z",
"url": "https://files.pythonhosted.org/packages/75/0d/932d445405af8ba371ad7f41d05251a307c04573764d6c16a57fd206e450/fluidimage-0.5.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "286905612d2ae742649ac897ef72cd55b718e76d828a74b1d577210a73bc2dc6",
"md5": "dd5c6656deeaba715380dbe0eab510bf",
"sha256": "3f39689ccc18cc0a37a9e8afad6d941fa513f8ec3f015da8457511a0d948aaa9"
},
"downloads": -1,
"filename": "fluidimage-0.5.4-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "dd5c6656deeaba715380dbe0eab510bf",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.10",
"size": 387075,
"upload_time": "2024-11-07T11:38:56",
"upload_time_iso_8601": "2024-11-07T11:38:56.581583Z",
"url": "https://files.pythonhosted.org/packages/28/69/05612d2ae742649ac897ef72cd55b718e76d828a74b1d577210a73bc2dc6/fluidimage-0.5.4-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1e4709c453c152a9b9d8c6405f357e56c45b4323de5988343742f5f65d8a5faf",
"md5": "1647b37cfba9aca70143891eeae858da",
"sha256": "2fc6558d1f90f7453f72e125bec2bf3ee0d41c28f48a08549b80beef0893f45d"
},
"downloads": -1,
"filename": "fluidimage-0.5.4-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "1647b37cfba9aca70143891eeae858da",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.10",
"size": 377955,
"upload_time": "2024-11-07T11:38:58",
"upload_time_iso_8601": "2024-11-07T11:38:58.424921Z",
"url": "https://files.pythonhosted.org/packages/1e/47/09c453c152a9b9d8c6405f357e56c45b4323de5988343742f5f65d8a5faf/fluidimage-0.5.4-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c24ffdb9d2f318037d7fc89c468ddefeacdda16751f6dd8647c3b175c4747173",
"md5": "ee85874e1927d5a22c93b9b5d469a15f",
"sha256": "209705661f6c318232d7de33ee202a8150a620d9a794ed769549bfb81cfb3ed3"
},
"downloads": -1,
"filename": "fluidimage-0.5.4-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ee85874e1927d5a22c93b9b5d469a15f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.10",
"size": 360107,
"upload_time": "2024-11-07T11:39:00",
"upload_time_iso_8601": "2024-11-07T11:39:00.199333Z",
"url": "https://files.pythonhosted.org/packages/c2/4f/fdb9d2f318037d7fc89c468ddefeacdda16751f6dd8647c3b175c4747173/fluidimage-0.5.4-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "78bb6af00e00ad6e909112247d46f75d34f339b484376199123560a16e27a203",
"md5": "afa20b386fa5b6fba5824abc1d9f9929",
"sha256": "0e1acc04a39bc333e18b6232677c6bbcd67f3d7b3b0c291370f7153c19ec7bd1"
},
"downloads": -1,
"filename": "fluidimage-0.5.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "afa20b386fa5b6fba5824abc1d9f9929",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.10",
"size": 439036,
"upload_time": "2024-11-07T11:39:01",
"upload_time_iso_8601": "2024-11-07T11:39:01.872057Z",
"url": "https://files.pythonhosted.org/packages/78/bb/6af00e00ad6e909112247d46f75d34f339b484376199123560a16e27a203/fluidimage-0.5.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6c662c25c9da1abac8eac18a5475d56f0e6bbd12c10a30e6310751cab8bbaa77",
"md5": "227cce3da3440cc8a1a45898bd7b74e2",
"sha256": "4f991f6dfbc5675bd84d1f6a4c4f2e556727d63e0aa3d4d98d067b2cdf691621"
},
"downloads": -1,
"filename": "fluidimage-0.5.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "227cce3da3440cc8a1a45898bd7b74e2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.10",
"size": 437623,
"upload_time": "2024-11-07T11:39:03",
"upload_time_iso_8601": "2024-11-07T11:39:03.376845Z",
"url": "https://files.pythonhosted.org/packages/6c/66/2c25c9da1abac8eac18a5475d56f0e6bbd12c10a30e6310751cab8bbaa77/fluidimage-0.5.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5d66f9a84a5a90800ea9f1bbfef4486c99e4c166043bff4edfd7cf2c3f0cf7b4",
"md5": "17f8691866edc7e32b69e7eb42eb9c0a",
"sha256": "2e866e18ce0c5814e4bacdd9e5a1c3dae6c432533b1e21bb127669cc1d90b2cb"
},
"downloads": -1,
"filename": "fluidimage-0.5.4-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "17f8691866edc7e32b69e7eb42eb9c0a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.10",
"size": 387040,
"upload_time": "2024-11-07T11:39:05",
"upload_time_iso_8601": "2024-11-07T11:39:05.311267Z",
"url": "https://files.pythonhosted.org/packages/5d/66/f9a84a5a90800ea9f1bbfef4486c99e4c166043bff4edfd7cf2c3f0cf7b4/fluidimage-0.5.4-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a73eca320ddabae513bdfbed901adcc05b398c5c2c9b739fb331ff7150af45b7",
"md5": "e1f01c388ea9932171747ecd240759c6",
"sha256": "2b1833ce1f5d68a108f4f6b6313722e51acfeffe381abb8e8082c201d7d311a4"
},
"downloads": -1,
"filename": "fluidimage-0.5.4-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "e1f01c388ea9932171747ecd240759c6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.10",
"size": 377958,
"upload_time": "2024-11-07T11:39:07",
"upload_time_iso_8601": "2024-11-07T11:39:07.207867Z",
"url": "https://files.pythonhosted.org/packages/a7/3e/ca320ddabae513bdfbed901adcc05b398c5c2c9b739fb331ff7150af45b7/fluidimage-0.5.4-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "900859ac3394be5f599253934a9245e4c3a0fe6945a2ef2c4168bfdc193eed13",
"md5": "fde7dfea54716a2ade76ef6984320edf",
"sha256": "94d8f5b2b8c6b7e57df0442174aefe212d78125e552173f600bf39ef5d35e150"
},
"downloads": -1,
"filename": "fluidimage-0.5.4-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "fde7dfea54716a2ade76ef6984320edf",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.10",
"size": 360110,
"upload_time": "2024-11-07T11:39:08",
"upload_time_iso_8601": "2024-11-07T11:39:08.828266Z",
"url": "https://files.pythonhosted.org/packages/90/08/59ac3394be5f599253934a9245e4c3a0fe6945a2ef2c4168bfdc193eed13/fluidimage-0.5.4-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8805ae5e63cb6f95d79d74684a3dbe569ed519bfcc436cfba934de0b11bb93ca",
"md5": "6cb69c215aedafc738b690ec6f9ac85d",
"sha256": "fb957e1f06c266b933ad4b54483147a7119947d6bfe80c8e6377aa2311e5969a"
},
"downloads": -1,
"filename": "fluidimage-0.5.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "6cb69c215aedafc738b690ec6f9ac85d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.10",
"size": 439062,
"upload_time": "2024-11-07T11:39:10",
"upload_time_iso_8601": "2024-11-07T11:39:10.299407Z",
"url": "https://files.pythonhosted.org/packages/88/05/ae5e63cb6f95d79d74684a3dbe569ed519bfcc436cfba934de0b11bb93ca/fluidimage-0.5.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f8366124eb3f45c9e673dff51fba90ebc68fdcea1bf62037af2a6ea135ba0101",
"md5": "9ea681abc7d5bcaf107940f83d1b768a",
"sha256": "d786fdae2b8a4ef8046e2f2bfd9301e39b37f5f1608b19ddcca63e66319e80a3"
},
"downloads": -1,
"filename": "fluidimage-0.5.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9ea681abc7d5bcaf107940f83d1b768a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.10",
"size": 437654,
"upload_time": "2024-11-07T11:39:11",
"upload_time_iso_8601": "2024-11-07T11:39:11.539847Z",
"url": "https://files.pythonhosted.org/packages/f8/36/6124eb3f45c9e673dff51fba90ebc68fdcea1bf62037af2a6ea135ba0101/fluidimage-0.5.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "911802cf68175415513dfacfbe301b6b10c573314d94753bee55b0a081f707c2",
"md5": "5e8818fbc5178f061a93e636332892cf",
"sha256": "0cd0991448aa396723e4793fe3cb9dbffc87a97196b90b7666d996c934bfca03"
},
"downloads": -1,
"filename": "fluidimage-0.5.4-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "5e8818fbc5178f061a93e636332892cf",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.10",
"size": 387049,
"upload_time": "2024-11-07T11:39:13",
"upload_time_iso_8601": "2024-11-07T11:39:13.303463Z",
"url": "https://files.pythonhosted.org/packages/91/18/02cf68175415513dfacfbe301b6b10c573314d94753bee55b0a081f707c2/fluidimage-0.5.4-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "75f0486b7646859a828ad139bfb31cef20e9084514390950622384c40844cddb",
"md5": "71952b25f52340398f06f63d1ad6dfbd",
"sha256": "d6aaeadf45811ba02e7e727453bff9a4f8024ddb3c8e9abb7feebd727f112df2"
},
"downloads": -1,
"filename": "fluidimage-0.5.4.tar.gz",
"has_sig": false,
"md5_digest": "71952b25f52340398f06f63d1ad6dfbd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.10",
"size": 1061337,
"upload_time": "2024-11-07T11:39:15",
"upload_time_iso_8601": "2024-11-07T11:39:15.385735Z",
"url": "https://files.pythonhosted.org/packages/75/f0/486b7646859a828ad139bfb31cef20e9084514390950622384c40844cddb/fluidimage-0.5.4.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-07 11:39:15",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "fluiddyn",
"github_project": "fluidimage",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "fluidimage"
}