pywaterflood


Namepywaterflood JSON
Version 0.3.3 PyPI version JSON
download
home_page
SummaryPhysics-inspired waterflood performance modeling
upload_time2024-03-14 04:03:55
maintainer
docs_urlNone
author
requires_python>=3.8
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # `pywaterflood`: Waterflood Connectivity Analysis

[![PyPI version](https://badge.fury.io/py/pywaterflood.svg)](https://badge.fury.io/py/pywaterflood)
[![Conda](https://img.shields.io/conda/v/conda-forge/pywaterflood)](https://anaconda.org/conda-forge/pywaterflood)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/pywaterflood)](https://pypi.org/project/pywaterflood/)

[![Documentation Status](https://readthedocs.org/projects/pywaterflood/badge/?version=latest)](https://pywaterflood.readthedocs.io/en/latest/?badge=latest)
[![DOI](https://zenodo.org/badge/234408267.svg)](https://zenodo.org/badge/latestdoi/234408267)
[![status](https://joss.theoj.org/papers/2fdffa96e936553d289e622e5e12388c/status.svg)](https://joss.theoj.org/papers/2fdffa96e936553d289e622e5e12388c)

[![License](https://img.shields.io/badge/License-BSD_2--Clause-orange.svg)](https://opensource.org/licenses/BSD-2-Clause)
[![codecov](https://codecov.io/gh/frank1010111/pywaterflood/branch/master/graph/badge.svg?token=3XRGLKO7T8)](https://codecov.io/gh/frank1010111/pywaterflood)
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)

`pywaterflood` provides tools for capacitance resistance modeling, a
physics-inspired model for estimating well connectivity between injectors and
producers or producers and other producers. It is useful for analyzing and
optimizing waterfloods, CO<sub>2</sub> floods, and geothermal projects.

## Overview

A literature review has been written by Holanda, Gildin, Jensen, Lake and Kabir,
entitled "A State-of-the-Art Literature Review on Capacitance Resistance Models
for Reservoir Characterization and Performance Forecasting."
[They](https://doi.org/10.3390/en11123368) describe CRM as the following:

> The Capacitance Resistance Model (CRM) is a fast way for modeling and
> simulating gas and waterflooding recovery processes, making it a useful tool
> for improving flood management in real-time. CRM is an input-output and
> material balance-based model, and requires only injection and production
> history, which are the most readily available data gathered throughout the
> production life of a reservoir.

There are several CRM versions (see Holanda et al., 2018). Through passing
different parameters when creating the CRM instance, you can choose between
CRMIP, where a unique time constant is used for each injector-producer pair, and
CRMP, where a unique time constant is used for each producer. CRMIP is more
reliable given sufficient data. With CRMP, you can reduce the number of
unknowns, which is useful if available production data is limited.

## Getting started

You can install this package from PyPI with the line

```
pip install pywaterflood
```

Or from conda/mamba with

```
conda install -c conda-forge pywaterflood
```

Then, [read the docs](https://pywaterflood.readthedocs.io/) to learn more. If you
want to try it out online before installing it on your computer, you can run
[this google colab notebook](https://colab.research.google.com/github/frank1010111/pywaterflood/blob/master/docs/user-guide/7-minutes-to-pywaterflood.ipynb).

### A simple example

    import numpy as np
    import pandas as pd
    from pywaterflood import CRM

    gh_url = "https://raw.githubusercontent.com/frank1010111/pywaterflood/master/testing/data/"
    prod = pd.read_csv(gh_url + 'production.csv', header=None).values
    inj = pd.read_csv(gh_url + "injection.csv", header=None).values
    time = pd.read_csv(gh_url + "time.csv", header=None).values[:,0]

    crm = CRM(tau_selection='per-pair', constraints='up-to one')
    crm.fit(prod, inj, time)
    q_hat = crm.predict()
    residuals = crm.residual()

    print("MAE by well:", np.round(np.abs(residuals).mean(axis=0), 2), "barrels")
    print("MAPE by well:", np.round(np.mean(np.abs(residuals) / prod * 100, axis=0), 2), "percent")
    print("RMSE by well:", np.round(np.sqrt(np.sum(residuals**2, axis=0)), 2))

## Contributing

Contributions are extremely welcome! Have [an issue to report](https://github.com/frank1010111/bluebonnet/issues/new)?
Want to offer new features or documentation? Check out the [contribution guide](https://github.com/frank1010111/pywaterflood/blob/master/CONTRIBUTING.md)
to help you set up. Discussions could start anytime at
[the discussions section](https://github.com/frank1010111/pywaterflood/discussions).

`pywaterflood` uses Rust for computation and python as the high level interface.
Luckily, [maturin](https://www.maturin.rs/) is a very convenient tool for working
with mixed Python-Rust projects.

Running tests, building the package, linting to conform to code standards, and building the documentation are all handled by [nox](https://nox.thea.codes).

### Running tests

The [guide for getting started](https://github.com/frank1010111/pywaterflood/blob/master/CONTRIBUTING.md#get-started), has instructions for installing rust, python, and nox. At that point, both the lint and unit test sessions are run with the command

```
nox
```

## License

This software library is released under a BSD 2-Clause License.

## Acknowledgments

Capacitance resistance modeling would not have caught on without the persistence
of two professors: Larry Lake and Jerry Jensen. Both of these gentlemen generously
helped answer questions in the development of this library. Research funding for
this project came from the Department of Energy grant "Optimizing Sweep based on
Geochemical and Reservoir Characterization of the Residual Oil Zone of Hess Seminole
Unit" (PI: Ian Duncan) and the State of Texas Advanced Resource Recovery program
(PI: William Ambrose). Further development is supported by Penn State faculty
promotion funds and volunteer time.


            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "pywaterflood",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "",
    "author": "",
    "author_email": "Frank Male <frmale@utexas.edu>",
    "download_url": "https://files.pythonhosted.org/packages/20/6c/70e17becc406aa1a56a80875fc92532f66908624f73aeb6b9894e9b95867/pywaterflood-0.3.3.tar.gz",
    "platform": null,
    "description": "# `pywaterflood`: Waterflood Connectivity Analysis\n\n[![PyPI version](https://badge.fury.io/py/pywaterflood.svg)](https://badge.fury.io/py/pywaterflood)\n[![Conda](https://img.shields.io/conda/v/conda-forge/pywaterflood)](https://anaconda.org/conda-forge/pywaterflood)\n[![PyPI - Downloads](https://img.shields.io/pypi/dm/pywaterflood)](https://pypi.org/project/pywaterflood/)\n\n[![Documentation Status](https://readthedocs.org/projects/pywaterflood/badge/?version=latest)](https://pywaterflood.readthedocs.io/en/latest/?badge=latest)\n[![DOI](https://zenodo.org/badge/234408267.svg)](https://zenodo.org/badge/latestdoi/234408267)\n[![status](https://joss.theoj.org/papers/2fdffa96e936553d289e622e5e12388c/status.svg)](https://joss.theoj.org/papers/2fdffa96e936553d289e622e5e12388c)\n\n[![License](https://img.shields.io/badge/License-BSD_2--Clause-orange.svg)](https://opensource.org/licenses/BSD-2-Clause)\n[![codecov](https://codecov.io/gh/frank1010111/pywaterflood/branch/master/graph/badge.svg?token=3XRGLKO7T8)](https://codecov.io/gh/frank1010111/pywaterflood)\n[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)\n\n`pywaterflood` provides tools for capacitance resistance modeling, a\nphysics-inspired model for estimating well connectivity between injectors and\nproducers or producers and other producers. It is useful for analyzing and\noptimizing waterfloods, CO<sub>2</sub> floods, and geothermal projects.\n\n## Overview\n\nA literature review has been written by Holanda, Gildin, Jensen, Lake and Kabir,\nentitled \"A State-of-the-Art Literature Review on Capacitance Resistance Models\nfor Reservoir Characterization and Performance Forecasting.\"\n[They](https://doi.org/10.3390/en11123368) describe CRM as the following:\n\n> The Capacitance Resistance Model (CRM) is a fast way for modeling and\n> simulating gas and waterflooding recovery processes, making it a useful tool\n> for improving flood management in real-time. CRM is an input-output and\n> material balance-based model, and requires only injection and production\n> history, which are the most readily available data gathered throughout the\n> production life of a reservoir.\n\nThere are several CRM versions (see Holanda et al., 2018). Through passing\ndifferent parameters when creating the CRM instance, you can choose between\nCRMIP, where a unique time constant is used for each injector-producer pair, and\nCRMP, where a unique time constant is used for each producer. CRMIP is more\nreliable given sufficient data. With CRMP, you can reduce the number of\nunknowns, which is useful if available production data is limited.\n\n## Getting started\n\nYou can install this package from PyPI with the line\n\n```\npip install pywaterflood\n```\n\nOr from conda/mamba with\n\n```\nconda install -c conda-forge pywaterflood\n```\n\nThen, [read the docs](https://pywaterflood.readthedocs.io/) to learn more. If you\nwant to try it out online before installing it on your computer, you can run\n[this google colab notebook](https://colab.research.google.com/github/frank1010111/pywaterflood/blob/master/docs/user-guide/7-minutes-to-pywaterflood.ipynb).\n\n### A simple example\n\n    import numpy as np\n    import pandas as pd\n    from pywaterflood import CRM\n\n    gh_url = \"https://raw.githubusercontent.com/frank1010111/pywaterflood/master/testing/data/\"\n    prod = pd.read_csv(gh_url + 'production.csv', header=None).values\n    inj = pd.read_csv(gh_url + \"injection.csv\", header=None).values\n    time = pd.read_csv(gh_url + \"time.csv\", header=None).values[:,0]\n\n    crm = CRM(tau_selection='per-pair', constraints='up-to one')\n    crm.fit(prod, inj, time)\n    q_hat = crm.predict()\n    residuals = crm.residual()\n\n    print(\"MAE by well:\", np.round(np.abs(residuals).mean(axis=0), 2), \"barrels\")\n    print(\"MAPE by well:\", np.round(np.mean(np.abs(residuals) / prod * 100, axis=0), 2), \"percent\")\n    print(\"RMSE by well:\", np.round(np.sqrt(np.sum(residuals**2, axis=0)), 2))\n\n## Contributing\n\nContributions are extremely welcome! Have [an issue to report](https://github.com/frank1010111/bluebonnet/issues/new)?\nWant to offer new features or documentation? Check out the [contribution guide](https://github.com/frank1010111/pywaterflood/blob/master/CONTRIBUTING.md)\nto help you set up. Discussions could start anytime at\n[the discussions section](https://github.com/frank1010111/pywaterflood/discussions).\n\n`pywaterflood` uses Rust for computation and python as the high level interface.\nLuckily, [maturin](https://www.maturin.rs/) is a very convenient tool for working\nwith mixed Python-Rust projects.\n\nRunning tests, building the package, linting to conform to code standards, and building the documentation are all handled by [nox](https://nox.thea.codes).\n\n### Running tests\n\nThe [guide for getting started](https://github.com/frank1010111/pywaterflood/blob/master/CONTRIBUTING.md#get-started), has instructions for installing rust, python, and nox. At that point, both the lint and unit test sessions are run with the command\n\n```\nnox\n```\n\n## License\n\nThis software library is released under a BSD 2-Clause License.\n\n## Acknowledgments\n\nCapacitance resistance modeling would not have caught on without the persistence\nof two professors: Larry Lake and Jerry Jensen. Both of these gentlemen generously\nhelped answer questions in the development of this library. Research funding for\nthis project came from the Department of Energy grant \"Optimizing Sweep based on\nGeochemical and Reservoir Characterization of the Residual Oil Zone of Hess Seminole\nUnit\" (PI: Ian Duncan) and the State of Texas Advanced Resource Recovery program\n(PI: William Ambrose). Further development is supported by Penn State faculty\npromotion funds and volunteer time.\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Physics-inspired waterflood performance modeling",
    "version": "0.3.3",
    "project_urls": {
        "Bug Tracker": "https://github.com/frank1010111/pywaterflood/issues",
        "documentation": "https://pywaterflood.readthedocs.io",
        "repository": "https://github.com/frank1010111/pywaterflood"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65ac7e864ba11036bdc0da393e2e108005fdf84d4fe7276fbd6ad5a09fd34d39",
                "md5": "99fc65b968ed161c45143a0423723c19",
                "sha256": "be3e1450fcb4ce48c8e91c8703cc529893fab1103f591c1de2d2c826b910f611"
            },
            "downloads": -1,
            "filename": "pywaterflood-0.3.3-cp37-abi3-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "99fc65b968ed161c45143a0423723c19",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.8",
            "size": 273533,
            "upload_time": "2024-03-14T04:03:20",
            "upload_time_iso_8601": "2024-03-14T04:03:20.780424Z",
            "url": "https://files.pythonhosted.org/packages/65/ac/7e864ba11036bdc0da393e2e108005fdf84d4fe7276fbd6ad5a09fd34d39/pywaterflood-0.3.3-cp37-abi3-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "df3be70dfd6212b5f70b311b1e56e90f9abe1c4adf8638e1b7c4482a8b3849ea",
                "md5": "696bca08fb665b2e35f685fb63bdcb2b",
                "sha256": "6aceb5828c9293488384c63ee62fd62f4c49a95c11959b5746f9562b64fccf66"
            },
            "downloads": -1,
            "filename": "pywaterflood-0.3.3-cp37-abi3-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "696bca08fb665b2e35f685fb63bdcb2b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.8",
            "size": 261454,
            "upload_time": "2024-03-14T04:03:22",
            "upload_time_iso_8601": "2024-03-14T04:03:22.190549Z",
            "url": "https://files.pythonhosted.org/packages/df/3b/e70dfd6212b5f70b311b1e56e90f9abe1c4adf8638e1b7c4482a8b3849ea/pywaterflood-0.3.3-cp37-abi3-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca640b5a26a898386611f553f805b425b6428825fd920f90dc3da4db5b7fcb48",
                "md5": "27c5189849c9018182f526793ea67d57",
                "sha256": "daf6bfd6bc07fe59a8d90de746c617924ca3bff1a82b86276f81f368d85ea3de"
            },
            "downloads": -1,
            "filename": "pywaterflood-0.3.3-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "27c5189849c9018182f526793ea67d57",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.8",
            "size": 1041028,
            "upload_time": "2024-03-14T04:03:24",
            "upload_time_iso_8601": "2024-03-14T04:03:24.023604Z",
            "url": "https://files.pythonhosted.org/packages/ca/64/0b5a26a898386611f553f805b425b6428825fd920f90dc3da4db5b7fcb48/pywaterflood-0.3.3-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "241ad1d4f7a3768c79a2175a3827e1936463b06ac1bccaaa6dfab808a98d6e1e",
                "md5": "5a35f5262d5d02299f052cbd150f599a",
                "sha256": "b771d4ae89365189da378f8b9eff0b3c3d780c9c05da480ec3edd787f56aac15"
            },
            "downloads": -1,
            "filename": "pywaterflood-0.3.3-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5a35f5262d5d02299f052cbd150f599a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.8",
            "size": 1066471,
            "upload_time": "2024-03-14T04:03:25",
            "upload_time_iso_8601": "2024-03-14T04:03:25.874371Z",
            "url": "https://files.pythonhosted.org/packages/24/1a/d1d4f7a3768c79a2175a3827e1936463b06ac1bccaaa6dfab808a98d6e1e/pywaterflood-0.3.3-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f13ea9fd9658cb34dcf43b01d3b002ca3dda1115f6291dafb2241dfda8f52c2",
                "md5": "c1d12804cab6e7567dab5de0a9a52158",
                "sha256": "59311a62b1fb19184e95c65b5552816f00553ca351088b528a9e8d61371aa33b"
            },
            "downloads": -1,
            "filename": "pywaterflood-0.3.3-cp37-abi3-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c1d12804cab6e7567dab5de0a9a52158",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.8",
            "size": 1068609,
            "upload_time": "2024-03-14T04:03:27",
            "upload_time_iso_8601": "2024-03-14T04:03:27.786155Z",
            "url": "https://files.pythonhosted.org/packages/1f/13/ea9fd9658cb34dcf43b01d3b002ca3dda1115f6291dafb2241dfda8f52c2/pywaterflood-0.3.3-cp37-abi3-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4cf7dc7bbbbdaf4c4c8025c2e53043f8c40e2650475bc7ba8ccc01da3759bfc9",
                "md5": "a9065d450e4275ca1034404769386997",
                "sha256": "f02bf2c1aaf6e7ae2612c881bdcc396579769b30ace55c4dcf93feeb38644459"
            },
            "downloads": -1,
            "filename": "pywaterflood-0.3.3-cp37-abi3-win32.whl",
            "has_sig": false,
            "md5_digest": "a9065d450e4275ca1034404769386997",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.8",
            "size": 150950,
            "upload_time": "2024-03-14T04:03:29",
            "upload_time_iso_8601": "2024-03-14T04:03:29.010850Z",
            "url": "https://files.pythonhosted.org/packages/4c/f7/dc7bbbbdaf4c4c8025c2e53043f8c40e2650475bc7ba8ccc01da3759bfc9/pywaterflood-0.3.3-cp37-abi3-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d92e9e4935d9e15c3733077f71364016ee9082c457d18cfa9410883cd10277f2",
                "md5": "5272202b8cbd7e6667fcbfd52721e242",
                "sha256": "c708fd5d725f74f25437560f673e153e75c7d35a7d1c888fb68c15bc59724052"
            },
            "downloads": -1,
            "filename": "pywaterflood-0.3.3-cp37-abi3-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5272202b8cbd7e6667fcbfd52721e242",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.8",
            "size": 157191,
            "upload_time": "2024-03-14T04:03:30",
            "upload_time_iso_8601": "2024-03-14T04:03:30.676930Z",
            "url": "https://files.pythonhosted.org/packages/d9/2e/9e4935d9e15c3733077f71364016ee9082c457d18cfa9410883cd10277f2/pywaterflood-0.3.3-cp37-abi3-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f2eac8d4ce8cd32e9ec8e1be1cd17d1e6fbc3add53f2f568d3a5708529aee3ab",
                "md5": "0cd8d234dce8674ca704a559669b7820",
                "sha256": "37d636679da9dcaba461bcccc3c71ae93b3f70c056841ccb0ca87003d6feaeb0"
            },
            "downloads": -1,
            "filename": "pywaterflood-0.3.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0cd8d234dce8674ca704a559669b7820",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 274197,
            "upload_time": "2024-03-14T04:03:31",
            "upload_time_iso_8601": "2024-03-14T04:03:31.866561Z",
            "url": "https://files.pythonhosted.org/packages/f2/ea/c8d4ce8cd32e9ec8e1be1cd17d1e6fbc3add53f2f568d3a5708529aee3ab/pywaterflood-0.3.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1d76a7722dee9257b5cd7342b75d884daf8a365979c844a21011e10d00e2a2cd",
                "md5": "9f97e16897706b71e6d291f17d9da718",
                "sha256": "ab1f8b93ca3b616177be7fbe24e5f8200cfe440250b019dbf46e71a333bf569d"
            },
            "downloads": -1,
            "filename": "pywaterflood-0.3.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9f97e16897706b71e6d291f17d9da718",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 261798,
            "upload_time": "2024-03-14T04:03:33",
            "upload_time_iso_8601": "2024-03-14T04:03:33.524992Z",
            "url": "https://files.pythonhosted.org/packages/1d/76/a7722dee9257b5cd7342b75d884daf8a365979c844a21011e10d00e2a2cd/pywaterflood-0.3.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f9c02cf9fb9ece7619d900f61f59523b70216e22686bf0c637eefa37f627059",
                "md5": "0ec2516659bbdd51d44c6759c2ebb1fa",
                "sha256": "bc5d88b99543e2e7eb09438fb99f1e5fe7762e79256c94db0cc4551741df95dc"
            },
            "downloads": -1,
            "filename": "pywaterflood-0.3.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0ec2516659bbdd51d44c6759c2ebb1fa",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1042452,
            "upload_time": "2024-03-14T04:03:34",
            "upload_time_iso_8601": "2024-03-14T04:03:34.607464Z",
            "url": "https://files.pythonhosted.org/packages/3f/9c/02cf9fb9ece7619d900f61f59523b70216e22686bf0c637eefa37f627059/pywaterflood-0.3.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "35fd31ac74620af3300ad5a8a30ddae1fcbab415d1eac5bacd0db6d084502cdb",
                "md5": "febacb49d25fc6a36787cd8b200e401f",
                "sha256": "a874353b9a2727bc4cf0d0dad3053e0c29d25fa6c4106feae2c4b922fd0e5d4e"
            },
            "downloads": -1,
            "filename": "pywaterflood-0.3.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "febacb49d25fc6a36787cd8b200e401f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1065871,
            "upload_time": "2024-03-14T04:03:36",
            "upload_time_iso_8601": "2024-03-14T04:03:36.504633Z",
            "url": "https://files.pythonhosted.org/packages/35/fd/31ac74620af3300ad5a8a30ddae1fcbab415d1eac5bacd0db6d084502cdb/pywaterflood-0.3.3-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": "90ddb981fb356362446e1fe9ad22d5308ca2ad6099049e7ce8e2a5a5ae3453d1",
                "md5": "e78fe83c7e55839801214100f3daf3b6",
                "sha256": "5b50179b92ced1e8a743cb2b281ef6bf02d92cf92448fcea133674a4d12e5ca3"
            },
            "downloads": -1,
            "filename": "pywaterflood-0.3.3-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e78fe83c7e55839801214100f3daf3b6",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 157770,
            "upload_time": "2024-03-14T04:03:38",
            "upload_time_iso_8601": "2024-03-14T04:03:38.342973Z",
            "url": "https://files.pythonhosted.org/packages/90/dd/b981fb356362446e1fe9ad22d5308ca2ad6099049e7ce8e2a5a5ae3453d1/pywaterflood-0.3.3-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c93724f4d0612245402db1b7818a9d0a2c688ac5ee85a7cfd9f1013de599ef8b",
                "md5": "006784f4d6a8347307b9371b9dae3dc1",
                "sha256": "69e3fd951cbef12f512168f8a77f1ab5082e3142e9112ae9840e08b112775bed"
            },
            "downloads": -1,
            "filename": "pywaterflood-0.3.3-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "006784f4d6a8347307b9371b9dae3dc1",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 274215,
            "upload_time": "2024-03-14T04:03:39",
            "upload_time_iso_8601": "2024-03-14T04:03:39.844331Z",
            "url": "https://files.pythonhosted.org/packages/c9/37/24f4d0612245402db1b7818a9d0a2c688ac5ee85a7cfd9f1013de599ef8b/pywaterflood-0.3.3-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fac2d5cff3d14f9a52ae7e7da76903b0706da408daa8cbe057ae7b7f98740152",
                "md5": "99efc78a0f365cce6a5bb2b45a85e197",
                "sha256": "85cf7b997c3704d486cecfa28558f329bcb2c5cd9d602402b11f45d2ecb035f2"
            },
            "downloads": -1,
            "filename": "pywaterflood-0.3.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "99efc78a0f365cce6a5bb2b45a85e197",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 261878,
            "upload_time": "2024-03-14T04:03:41",
            "upload_time_iso_8601": "2024-03-14T04:03:41.691738Z",
            "url": "https://files.pythonhosted.org/packages/fa/c2/d5cff3d14f9a52ae7e7da76903b0706da408daa8cbe057ae7b7f98740152/pywaterflood-0.3.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7727cf668d780799c3bced3d45db90330c4fc2e96688c5dca4d5e9b4bce8cb82",
                "md5": "1e13e6040148c753e60669b1b07fe47d",
                "sha256": "c7130e384dd3f87bb0c1815e1b0d256ba23a306eba3ef04c886aea07e999e81e"
            },
            "downloads": -1,
            "filename": "pywaterflood-0.3.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1e13e6040148c753e60669b1b07fe47d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1041987,
            "upload_time": "2024-03-14T04:03:42",
            "upload_time_iso_8601": "2024-03-14T04:03:42.856491Z",
            "url": "https://files.pythonhosted.org/packages/77/27/cf668d780799c3bced3d45db90330c4fc2e96688c5dca4d5e9b4bce8cb82/pywaterflood-0.3.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "006935e43cddabff160eb47124807cd81642017e39ca3ea23530632cedbaa6e5",
                "md5": "360d913c24d52d46c7f4ad1d8009f08b",
                "sha256": "b01be0ff971e71f9035667afb40d54350f075f2c4acdd11694e271ed109223d1"
            },
            "downloads": -1,
            "filename": "pywaterflood-0.3.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "360d913c24d52d46c7f4ad1d8009f08b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1065897,
            "upload_time": "2024-03-14T04:03:44",
            "upload_time_iso_8601": "2024-03-14T04:03:44.713065Z",
            "url": "https://files.pythonhosted.org/packages/00/69/35e43cddabff160eb47124807cd81642017e39ca3ea23530632cedbaa6e5/pywaterflood-0.3.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a87f0f7c5fd4def698864d5df1e7a11684b0183ae6bab28d6b2baad1d800a9ce",
                "md5": "2261c31813ab8c7ead191487b6468d4b",
                "sha256": "8963ee613d1f67342f84c74691926886d86a0e91600535d51cd3dd9d107aa805"
            },
            "downloads": -1,
            "filename": "pywaterflood-0.3.3-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2261c31813ab8c7ead191487b6468d4b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 157576,
            "upload_time": "2024-03-14T04:03:46",
            "upload_time_iso_8601": "2024-03-14T04:03:46.476904Z",
            "url": "https://files.pythonhosted.org/packages/a8/7f/0f7c5fd4def698864d5df1e7a11684b0183ae6bab28d6b2baad1d800a9ce/pywaterflood-0.3.3-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a712ddb24045000c5917afd8e563c26df9c282de8f863047cddce8eebb42c516",
                "md5": "1a8b059a662598692a5fbb09e3109068",
                "sha256": "4f5bf32eefa319bb8f07abc3cc0149607201e2a00c9848bd2d9f1e664b5f4cba"
            },
            "downloads": -1,
            "filename": "pywaterflood-0.3.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1a8b059a662598692a5fbb09e3109068",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 274192,
            "upload_time": "2024-03-14T04:03:48",
            "upload_time_iso_8601": "2024-03-14T04:03:48.092164Z",
            "url": "https://files.pythonhosted.org/packages/a7/12/ddb24045000c5917afd8e563c26df9c282de8f863047cddce8eebb42c516/pywaterflood-0.3.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db7b858a478b2227eea2395d1d910f604b9bb5ebb0189061f1ea9843c5a7ec18",
                "md5": "59e99166da98d2e172de3c671ed955d3",
                "sha256": "f27d42dc6bac8f29c53301cef82eae95b17b668bc62326d26590ea89e47c3fdf"
            },
            "downloads": -1,
            "filename": "pywaterflood-0.3.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "59e99166da98d2e172de3c671ed955d3",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 261795,
            "upload_time": "2024-03-14T04:03:49",
            "upload_time_iso_8601": "2024-03-14T04:03:49.156103Z",
            "url": "https://files.pythonhosted.org/packages/db/7b/858a478b2227eea2395d1d910f604b9bb5ebb0189061f1ea9843c5a7ec18/pywaterflood-0.3.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "361d769eaf0f11a5b484628036b983f548d03292b2af8c646e8d4cc3b6175993",
                "md5": "2748cad84839f382e15d7d9e1f9b55b4",
                "sha256": "19b4d9dd22ca11f63aed463c980861d7ba824fa0b512b5c9472771f6f43d12a8"
            },
            "downloads": -1,
            "filename": "pywaterflood-0.3.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2748cad84839f382e15d7d9e1f9b55b4",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1042451,
            "upload_time": "2024-03-14T04:03:50",
            "upload_time_iso_8601": "2024-03-14T04:03:50.855422Z",
            "url": "https://files.pythonhosted.org/packages/36/1d/769eaf0f11a5b484628036b983f548d03292b2af8c646e8d4cc3b6175993/pywaterflood-0.3.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c096d0b1e2a8e1a6a9bc7a993b12732d179acfeab43832046cf2735fb5f598cd",
                "md5": "31f6f90e1bd2ff219cbed30415e49ce1",
                "sha256": "bbc0be8d42db0530b82e52ffffaff420916658288c6b63ae9466f2b99a23673d"
            },
            "downloads": -1,
            "filename": "pywaterflood-0.3.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "31f6f90e1bd2ff219cbed30415e49ce1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1065864,
            "upload_time": "2024-03-14T04:03:52",
            "upload_time_iso_8601": "2024-03-14T04:03:52.824860Z",
            "url": "https://files.pythonhosted.org/packages/c0/96/d0b1e2a8e1a6a9bc7a993b12732d179acfeab43832046cf2735fb5f598cd/pywaterflood-0.3.3-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": "b0ba3f82ee311004adfd8c21d0000828a48c60dc55810be0a108a3332c570b3d",
                "md5": "f895e3b8ec069350898429e9c57d9d26",
                "sha256": "f00a206a2f34935ad66d98a3686ae75e29bba367347f4f45f003e65779f31b12"
            },
            "downloads": -1,
            "filename": "pywaterflood-0.3.3-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f895e3b8ec069350898429e9c57d9d26",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 157753,
            "upload_time": "2024-03-14T04:03:54",
            "upload_time_iso_8601": "2024-03-14T04:03:54.078926Z",
            "url": "https://files.pythonhosted.org/packages/b0/ba/3f82ee311004adfd8c21d0000828a48c60dc55810be0a108a3332c570b3d/pywaterflood-0.3.3-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "206c70e17becc406aa1a56a80875fc92532f66908624f73aeb6b9894e9b95867",
                "md5": "9054099e91ab3ffbf8332b3e284fbf7a",
                "sha256": "735806182c55708c53f4988b12d5b41296eb3ded2a2dc23ba1d45ca573afb22e"
            },
            "downloads": -1,
            "filename": "pywaterflood-0.3.3.tar.gz",
            "has_sig": false,
            "md5_digest": "9054099e91ab3ffbf8332b3e284fbf7a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 973366,
            "upload_time": "2024-03-14T04:03:55",
            "upload_time_iso_8601": "2024-03-14T04:03:55.172637Z",
            "url": "https://files.pythonhosted.org/packages/20/6c/70e17becc406aa1a56a80875fc92532f66908624f73aeb6b9894e9b95867/pywaterflood-0.3.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-14 04:03:55",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "frank1010111",
    "github_project": "pywaterflood",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pywaterflood"
}
        
Elapsed time: 0.21222s