Skip to main content

pypi License: MIT PyPI - Python Version Build + Test Documentation Status Downloads Downloads

EPANET-PLUS

EPANET-PLUS is a C library that merges EPANET and EPANET-MSX into a single library. Most importantly, it also provides a Python package with a high-performance interface (i.e., C extension) to the C library, together with additional helper functions for an easier use of EPANET and EPANET-MSX.

If you are interested in creating and simulating complex scenarios, we recommend to take a look at EPyT-Flow, which builds upon EPANET-PLUS.

Unique Features

Unique features of EPANET-PLUS that make it superior to other Python interfaces of EPANET are the following:

  • High-performance (single) interface to the latest version of EPANET and EPANET-MSX
  • Additional C-functions to extend EPANET and EPANET-MSX
  • Python toolkit with handy functions for working with EPANET and EPANET-MSX

Installation

Note that EPANET-PLUS supports Python 3.10 - 3.14. The Python package contains the the C library as a C extension and is already pre-build for all major platforms.

PyPI

pip install epanet-plus

Git

Download or clone the repository:

git clone https://github.com/WaterFutures/EPANET-PLUS.git
cd EPANET-PLUS

Install all requirements as listed in REQUIREMENTS.txt:

pip install -r REQUIREMENTS.txt

Build and install the package:

pip install .

Quick Example

from epanet_plus import EPyT, EpanetConstants

if __name__ == "__main__":
    # Load an .inp file in EPANET using the toolkit class
    epanet_api = EPyT("net2-cl2.inp")

    # Print some general information
    print(f"All nodes: {epanet_api.get_all_nodes_id()}")
    print(f"All links: {epanet_api.get_all_links_id()}")
    
    print(f"Simulation duration in seconds: {epanet_api.get_simulation_duration()}")
    print(f"Hydraulic time step in seconds: {epanet_api.get_hydraulic_time_step()}")
    print(f"Demand model: {epanet_api.get_demand_model()}")

    # Run hydraulic simulation and output pressure at each node (at every simulation step)
    epanet_api.openH()
    epanet_api.initH(EpanetConstants.EN_NOSAVE)

    tstep = 1
    while tstep > 0:
        t = epanet_api.runH()

        print(epanet_api.getnodevalues(EpanetConstants.EN_PRESSURE))
        #print(epanet_api.getnodevalues_numpy(EpanetConstants.EN_PRESSURE))  # Or get the values as a NumPy array

        tstep = epanet_api.nextH()

    epanet_api.closeH()

    # Close EPANET
    epanet_api.close()

Documentation

Documentation is available on readthedocs: https://epanet-plus.readthedocs.io/en/latest/

License

MIT license -- see LICENSE

How to Cite?

If you use this software, please cite it as follows:

@misc{github:epanetplus,
        author = {André Artelt},
        title = {{EPANET-PLUS}},
        year = {2025},
        publisher = {GitHub},
        journal = {GitHub repository},
        howpublished = {https://github.com/WaterFutures/EPANET-PLUS}
}

How to get Support?

If you come across any bug or need assistance please feel free to open a new issue if non of the existing issues answers your questions.

How to Contribute?

Contributions (e.g. creating issues, pull-requests, etc.) are welcome -- please make sure to read the code of conduct and follow the developers' guidelines.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

epanet_plus-0.3.0.tar.gz (341.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

epanet_plus-0.3.0-cp314-cp314t-win_amd64.whl (758.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

epanet_plus-0.3.0-cp314-cp314t-win32.whl (676.6 kB view details)

Uploaded CPython 3.14tWindows x86

epanet_plus-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

epanet_plus-0.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

epanet_plus-0.3.0-cp314-cp314t-macosx_15_0_x86_64.whl (916.2 kB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

epanet_plus-0.3.0-cp314-cp314t-macosx_15_0_arm64.whl (858.4 kB view details)

Uploaded CPython 3.14tmacOS 15.0+ ARM64

epanet_plus-0.3.0-cp314-cp314-win_amd64.whl (755.8 kB view details)

Uploaded CPython 3.14Windows x86-64

epanet_plus-0.3.0-cp314-cp314-win32.whl (673.8 kB view details)

Uploaded CPython 3.14Windows x86

epanet_plus-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

epanet_plus-0.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

epanet_plus-0.3.0-cp314-cp314-macosx_15_0_x86_64.whl (913.3 kB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

epanet_plus-0.3.0-cp314-cp314-macosx_15_0_arm64.whl (854.6 kB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

epanet_plus-0.3.0-cp313-cp313-win_amd64.whl (741.9 kB view details)

Uploaded CPython 3.13Windows x86-64

epanet_plus-0.3.0-cp313-cp313-win32.whl (664.7 kB view details)

Uploaded CPython 3.13Windows x86

epanet_plus-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

epanet_plus-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

epanet_plus-0.3.0-cp313-cp313-macosx_15_0_x86_64.whl (913.5 kB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

epanet_plus-0.3.0-cp313-cp313-macosx_15_0_arm64.whl (854.7 kB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

epanet_plus-0.3.0-cp312-cp312-win_amd64.whl (741.9 kB view details)

Uploaded CPython 3.12Windows x86-64

epanet_plus-0.3.0-cp312-cp312-win32.whl (664.7 kB view details)

Uploaded CPython 3.12Windows x86

epanet_plus-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

epanet_plus-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

epanet_plus-0.3.0-cp312-cp312-macosx_15_0_x86_64.whl (913.5 kB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

epanet_plus-0.3.0-cp312-cp312-macosx_15_0_arm64.whl (854.7 kB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

epanet_plus-0.3.0-cp311-cp311-win_amd64.whl (741.9 kB view details)

Uploaded CPython 3.11Windows x86-64

epanet_plus-0.3.0-cp311-cp311-win32.whl (664.6 kB view details)

Uploaded CPython 3.11Windows x86

epanet_plus-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

epanet_plus-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

epanet_plus-0.3.0-cp311-cp311-macosx_15_0_x86_64.whl (913.8 kB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

epanet_plus-0.3.0-cp311-cp311-macosx_15_0_arm64.whl (855.4 kB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

epanet_plus-0.3.0-cp310-cp310-win_amd64.whl (741.9 kB view details)

Uploaded CPython 3.10Windows x86-64

epanet_plus-0.3.0-cp310-cp310-win32.whl (664.6 kB view details)

Uploaded CPython 3.10Windows x86

epanet_plus-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

epanet_plus-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

epanet_plus-0.3.0-cp310-cp310-macosx_15_0_x86_64.whl (913.8 kB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

epanet_plus-0.3.0-cp310-cp310-macosx_15_0_arm64.whl (855.4 kB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

File details

Details for the file epanet_plus-0.3.0.tar.gz.

File metadata

  • Download URL: epanet_plus-0.3.0.tar.gz
  • Upload date:
  • Size: 341.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.13

File hashes

Hashes for epanet_plus-0.3.0.tar.gz
Algorithm Hash digest
SHA256 a1bee2588651e65f0c8b87b56af120fb559d7412f57917d86011856efb83e4bb
MD5 6376154522c42c69b90b4d384855ac36
BLAKE2b-256 e58d232cb75733de0ed9395b44546780288c30fe426c1b00b8f9cc3f04bb05df

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for epanet_plus-0.3.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4796a8b10ebe23c8956ce48ec551eb422af5b574351959fdb7f2c4db6240d380
MD5 2294bd029220d440fad1fa9554de96b9
BLAKE2b-256 7103e064f546a0a82cff1f641dc4162134a335c66e8acf6dcf0c71e6819f306f

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: epanet_plus-0.3.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 676.6 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.13

File hashes

Hashes for epanet_plus-0.3.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 3bddaf8a019ecafb94c40a34da46bc3f125e6da1acae0e68643f0c8c23c08876
MD5 24bf081d5a8d416c8faed17ec0aa80e0
BLAKE2b-256 126c25089e715d5871d174003eecbc92dd7727dff05fe5e484450fcd6c63369d

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for epanet_plus-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04b99b4f9a99eb0574475483c249efeb3bd7674c0acf0c6ad93759efec2c7e96
MD5 95e1e651f131df425e8f34c99e3d9e3b
BLAKE2b-256 d761ade049a8dd6ae5df4600e3abd4d54415feaf8b56cc057044a5dd270d9c42

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for epanet_plus-0.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1779bef4fd911d7316f43901543de639149686f0258c45b56a3fab9ac4e5b342
MD5 b1768d6ded18171d87a2653f524349a7
BLAKE2b-256 b5cad1087d0541216632879f7107d91974d7fce7b90efd61d2187d157248068d

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp314-cp314t-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for epanet_plus-0.3.0-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 c2e33e0d94688df1433c4c75380af75f53d42452cb4ddcadcdb2882749e34e5e
MD5 fcb05616bbd2670f6e1f8d7c267ac007
BLAKE2b-256 215134d263ab5b1f2ab377edea9353ff1065d93ac06dc0ebca43cff216df6ff3

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp314-cp314t-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for epanet_plus-0.3.0-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 d510b731bf56ba2eb55fd4c20ee41738d91a5e677b6d2b38250009cb3b6fa854
MD5 0b1cd9cff4e07729e05d25f534a12502
BLAKE2b-256 827794f6a4b39462ab35365ecb0b682a3f670d428c6a064a0d7c64725fb4f074

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: epanet_plus-0.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 755.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.13

File hashes

Hashes for epanet_plus-0.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 caf9d929bea4a3c191cb3fd19717f4e7e9d7b3b2e25f446f61fe8d7ed3bef75f
MD5 2d633b26692085d1da1f9633dcd4276b
BLAKE2b-256 aece8553f1b54e92e45d39cafe9108006bb1818068b386fb53b36f32447fdc7b

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: epanet_plus-0.3.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 673.8 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.13

File hashes

Hashes for epanet_plus-0.3.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 917e839c648413096a1ed62606b819a46f7d13fe0b8a85ed013f4f1de7e0f05b
MD5 85e48bbbad98cb41527cfb6c9959bfd3
BLAKE2b-256 7ab713915e66ca7cfead75e0e15f7d7f5f4913d96316cf371e4b0d78e38a30f5

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for epanet_plus-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dcdb729804dd1aa87025e35e89cac5acd0939e4741d86b8c89f109d3474f85e4
MD5 f2b0dd7fd71a625f0a96ab9996dee178
BLAKE2b-256 d19105704573271bd4d29cdf6bb65670148ce386198bb200d930c565db89551c

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for epanet_plus-0.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4de839d7efe1c86784f247a582a285ab4c6ef58a581f6aa35aafa6efb07df165
MD5 202ebf4f0434c33f7c56e5c4dc644e7d
BLAKE2b-256 6a9e21c6884d6f67b68997ac98f92a9c36e05205d879fc4b0de630313fc41240

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for epanet_plus-0.3.0-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 f9768b4849066dda6c0625f93590d4cf14e720efe0122ee5f0633110ca7e8c46
MD5 607bda26969e29e21da0f1ef6fa099e8
BLAKE2b-256 6e7983d44988ac58074169afb9148012501ca35d38454bc313072a30d4f2ab81

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for epanet_plus-0.3.0-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 cae72c39cefbd58c6f91197bbd356a2ca39bb4acd7ca20bb760de484367332b0
MD5 406d8907a3429db29404c55a4b31a911
BLAKE2b-256 3f76dfa550e8879b8e6e5d483d2b268602645314dff62b7e1b1d732147128a86

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: epanet_plus-0.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 741.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.13

File hashes

Hashes for epanet_plus-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 644eec05aa4ec9ae3ed9b0151b07e8dcadc0a9b4fe0cae4d9cc3a5b3a15c9175
MD5 0e9910d422f2518f432d7cf4f2b7f5c9
BLAKE2b-256 d35e1967df16ea71dd46ce6cd968de7b9d9b5a3ba23c263d1313d14b68339bd5

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: epanet_plus-0.3.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 664.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.13

File hashes

Hashes for epanet_plus-0.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 cb641ee0cc3f56d4a7562df29c3ee74e54146b4c99d3572186ce58af35ea8905
MD5 da6a5bdafde7affb54a906a349b7a68f
BLAKE2b-256 1903f5650fdc872833a174660dd3d5dd6449261c7e92061628778c9bb6f53318

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for epanet_plus-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e87f9d1a0f7a0b18a74bdaf23d5ca047da5a0f4a4d5740b5034214188e7d6600
MD5 3f270e62b366e626c76961ef2aadab8f
BLAKE2b-256 51e7d1aeb43a7c66ce9d6eb4a85f35ea6474a3c6db1b45f64e1f7b4debd9f925

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for epanet_plus-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c5010eff08361ddef1ae1ce663b9e52e5d01a5abe1bb6b48361de1fdd96eeec5
MD5 6e7fde7f9fb141cbdb20d4ce5a665ba9
BLAKE2b-256 1d059b0a8c8e8c13366d09d04a54061a18bd4cce7d527a9f6499afa63b5ab590

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for epanet_plus-0.3.0-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 aede0256f041e8ce209d31995552f78d06efc19d4bbdd385a3d626f24f92f84e
MD5 4af329e78584b7d4b3aee26c5660f027
BLAKE2b-256 3b97c884849889d7c91a5e0f726fbd3ea836517ce11547960cc6131d2f92b2b6

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for epanet_plus-0.3.0-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 368069dc94d29f06e62b226c3df4d688b49fcb8467553bb4457bb61fa96c8b61
MD5 2c660f343824d0ebb177c071af33023d
BLAKE2b-256 e62e96199fa1fe4384691e8293e55a3b82709b4494b727b38d4ff2db50ada8fa

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: epanet_plus-0.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 741.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.13

File hashes

Hashes for epanet_plus-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 542b54bc2f3a5ce3a5938a3e27764251724558956f28eaae8bc690aea182e909
MD5 e9629b10792106396a04a589bc541b3a
BLAKE2b-256 0eac37873207f6f0b0b568e3115050550ea264c75840d51537eca866a6477d16

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: epanet_plus-0.3.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 664.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.13

File hashes

Hashes for epanet_plus-0.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5e9e90d820a19848d900e041eeab1a1d4233adf81793d8d808923ab0ced50736
MD5 ffb016247f8bbb76d91c621a3757caf5
BLAKE2b-256 a8fedd3a01153470e445297994dd355a7712b477dbaf3dbd65a23af473ead502

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for epanet_plus-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1994afc278165186e2271b4c606d68abd26772cbc4ce94643f49cb36f3058a6e
MD5 024a24fc2baa45b21723f921cd96ee7a
BLAKE2b-256 14e69dd134029c543f64630f1faf9baa337af4cd216723caa781bee586e9bf09

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for epanet_plus-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d44501c7cce2ceb8919ad0f71bce02b293413b44ba399b8bc6c407e162d29fff
MD5 326f96de686a3b07bd7e7fe9dcdd639f
BLAKE2b-256 f43c329d6d8b90850e8b5338fd5f92f6a47cfb676952ac6c3650be0c3efad404

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for epanet_plus-0.3.0-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 e6646b9c4bc7bff23b8f2014e65753bb44ee34b9bcacdb90436f967e30e9c651
MD5 44398c25c56574541a3b6def10f8d382
BLAKE2b-256 abac93ec157b8b00793c073f2a34986a27e40ca18f44e00646e40fc08d7846d3

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for epanet_plus-0.3.0-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 93ba8253f4f67a41c5e052ba6aa724bc6d877939f228a78b0bc816f0167cba26
MD5 f57047cfe980ac154e7cc6191f89c511
BLAKE2b-256 6155a1d66dbd6b6097edda59de65a511672b6136c40d63caf0ce9bb573af35d5

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: epanet_plus-0.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 741.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.13

File hashes

Hashes for epanet_plus-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c570b378e0c902e3adfe7a178807f0f47c32ad695b99f5b273dbd7baa1065b31
MD5 e360d63dafd9d58118d12bdafcfa155c
BLAKE2b-256 d0111e38ce368bf20968144646e94c523d79864fee73f97d74ad04ee531af364

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: epanet_plus-0.3.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 664.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.13

File hashes

Hashes for epanet_plus-0.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 dd5999a54c97d7aee791ee0f904b9880dd0763ed73cc2db51a97c7db962101da
MD5 148941c8adfe2aabbbca8a6a5974f635
BLAKE2b-256 3da4e686108e690e45f35cf1406a9a2b7444143a832ea44fe66bf8a9c5bcc97e

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for epanet_plus-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f38cd055478681eeab0fbabe33a056e4f6be825e7a07e929938b6462b11d0dd4
MD5 d77b2a013e6885408f9966d462d0fb4f
BLAKE2b-256 e5dcfbdbf11cc6afff7e45d8c240d26c35648f921293d94bc068865fdd426de7

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for epanet_plus-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 75692f986dd0f5a341d563460149b6719fc3288e5cc69b0e1d285c3c710ae7db
MD5 511fa4a0aaa080ada0baac1b47515f49
BLAKE2b-256 d851f6b9f8ef786f066146fadbbc8099d7710d7b2d2e9fc600ba8ece29aad875

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for epanet_plus-0.3.0-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 1cae51a27361b57c23429559c43f8b3454336068dba2d043e45771501b6a26b4
MD5 2ce35aea5f47a583e6d12ede9b292b11
BLAKE2b-256 8d2ff31487691e2ab7c940168199f502daaf686f601ec3b0f4ffd65cde120051

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for epanet_plus-0.3.0-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 a9a83358a180ca4ff0013bce5e80eafb551853b931adf5018b294fdc574221aa
MD5 c5918b879892e41faebf880ba0f86cb6
BLAKE2b-256 3077465ed5d0d41ad1434520fe52b51ca921c88dd9e29b05dac7d395681bf9fe

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: epanet_plus-0.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 741.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.13

File hashes

Hashes for epanet_plus-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ccfabfd2d185c84188aa91ec6f881542203d6b0eea34acd09a540d5dcaef5601
MD5 9b759e483e31a9f3f5088b1d150ce799
BLAKE2b-256 34aeabc3d69ff1b382846636da3343c03dd990aab752fdb11b15f9d7c9cb6746

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: epanet_plus-0.3.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 664.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.13

File hashes

Hashes for epanet_plus-0.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c2fd54c49c75004b4e01ec14984e85f646cc707025eee7e4c4eee2ff39f13665
MD5 a9bccf3e80d5e85c508693f09f365f0b
BLAKE2b-256 4cea75fe74520c72989ee03533d605cc66a8a53ccab8ca9ecf939d42896df353

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for epanet_plus-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c39d932b3d86137c99540ea69e30b997629c8c8615ededec5ad93b37ac21ff69
MD5 ee28af53bbfb3b64cd0bc40a6dc88517
BLAKE2b-256 3daafe430039f2a21f0e0df2b6687250ef2aa43be78646d767e9d52b4dee5374

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for epanet_plus-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 def39db1020ce23f1de4034395e28ec68a10dab773fefe6cdaf6415d8e63ab8d
MD5 f53ff39aefa3da5520d2693f6a32fe9c
BLAKE2b-256 3fdc4d6a3c44f1a2b893b6b06027cdbff2424db8d69067a471f4d6052493bfa5

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for epanet_plus-0.3.0-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 5162602c08d91bc2d0fdb051c7a56adcd0c08db6adb673ea416ccb3c8b8ac0d2
MD5 9d9cf14f4550e46ea523f5d5f8b4ff97
BLAKE2b-256 54ea776ee4e30f7a4e37a4e0784c009dc30ddbacec21dd221b39e8c4a8c84f05

See more details on using hashes here.

File details

Details for the file epanet_plus-0.3.0-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for epanet_plus-0.3.0-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 ac42a073425d14c557027de20ad5de885b8ce9a5aefedc3da7d275146a2f8ea1
MD5 ea10ea8a675a3ca4e80e47230571c3ee
BLAKE2b-256 74a4543345415c91652b7cd5a953d8a94fe19e02aff3ac2a3c5f65af92d883b3

See more details on using hashes here.

Release history Release notifications | RSS feed

0.3.1

37 files

This release

0.3.0 This release

37 files

0.2.3

37 files

0.2.2

37 files

0.2.1

37 files

0.2.0

43 files

0.1.3

42 files

0.1.2

41 files

0.1.1

41 files

0.1.0

41 files

0.0.1

33 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page