{ "info": { "author": "Sebastian Mueller, Falk Hesse", "author_email": "info@geostat-framework.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: End Users/Desktop", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: MacOS", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Operating System :: Unix", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Topic :: Scientific/Engineering", "Topic :: Software Development", "Topic :: Utilities" ], "description": "# Welcome to ogs5py\n\n[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.2546767.svg)](https://doi.org/10.5281/zenodo.2546767)\n[![PyPI version](https://badge.fury.io/py/ogs5py.svg)](https://badge.fury.io/py/ogs5py)\n[![Build Status](https://travis-ci.org/GeoStat-Framework/ogs5py.svg?branch=master)](https://travis-ci.org/GeoStat-Framework/ogs5py)\n[![Coverage Status](https://coveralls.io/repos/github/GeoStat-Framework/ogs5py/badge.svg?branch=master)](https://coveralls.io/github/GeoStat-Framework/ogs5py?branch=master)\n[![Documentation Status](https://readthedocs.org/projects/ogs5py/badge/?version=latest)](https://geostat-framework.readthedocs.io/projects/ogs5py/en/latest/?badge=latest)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)\n\n

\n\"ogs5py-LOGO\"\n

\n\n## Purpose\n\nogs5py is A python-API for the [OpenGeoSys 5][ogs5_link] scientific modeling package.\n\n\n## Installation\n\nYou can install the latest version with the following command:\n\n pip install ogs5py\n\n\n## Documentation for ogs5py\n\nYou can find the documentation under [geostat-framework.readthedocs.io][doc_link].\n\n\n### Further Information\n\n- General homepage: https://www.opengeosys.org/ogs-5\n- OGS5 Repository: https://github.com/ufz/ogs5\n- Keyword documentation: https://ogs5-keywords.netlify.com\n- OGS5 Benchmarks: https://github.com/ufz/ogs5-benchmarks\n- ogs5py Benchmarks: https://github.com/GeoStat-Framework/ogs5py_benchmarks\n\n\n### Tutorials and Examples\n\nIn the following a simple transient pumping test is simulated on a radial symmetric mesh.\nThe point output at the observation well is plotted afterwards.\n\n```python\nfrom ogs5py import OGS\nfrom matplotlib import pyplot as plt\n\nmodel = OGS(task_root=\"pump_test\", task_id=\"model\")\n\n# generate a radial mesh\nmodel.msh.generate(\"radial\", dim=2, rad=range(51))\n# generate a radial outer boundary\nmodel.gli.generate(\"radial\", dim=2, rad_out=50.)\nmodel.gli.add_points([0., 0., 0.], \"pwell\")\nmodel.gli.add_points([1., 0., 0.], \"owell\")\nmodel.bc.add_block( # boundary condition\n PCS_TYPE='GROUNDWATER_FLOW',\n PRIMARY_VARIABLE='HEAD',\n GEO_TYPE=['POLYLINE', \"boundary\"],\n DIS_TYPE=['CONSTANT', 0.0],\n)\nmodel.st.add_block( # source term\n PCS_TYPE='GROUNDWATER_FLOW',\n PRIMARY_VARIABLE='HEAD',\n GEO_TYPE=['POINT', \"pwell\"],\n DIS_TYPE=['CONSTANT_NEUMANN', -1.0e-04],\n)\nmodel.ic.add_block( # initial condition\n PCS_TYPE='GROUNDWATER_FLOW',\n PRIMARY_VARIABLE='HEAD',\n GEO_TYPE='DOMAIN',\n DIS_TYPE=['CONSTANT', 0.0],\n)\nmodel.mmp.add_block( # medium properties\n GEOMETRY_DIMENSION=2,\n STORAGE=[1, 1.0e-04],\n PERMEABILITY_TENSOR=['ISOTROPIC', 1.0e-4],\n)\nmodel.num.add_block( # numerical solver\n PCS_TYPE='GROUNDWATER_FLOW',\n LINEAR_SOLVER=[2, 5, 1.0e-14, 1000, 1.0, 100, 4],\n)\nmodel.out.add_block( # point observation\n PCS_TYPE='GROUNDWATER_FLOW',\n NOD_VALUES='HEAD',\n GEO_TYPE=['POINT', \"owell\"],\n DAT_TYPE='TECPLOT',\n TIM_TYPE=['STEPS', 1],\n)\nmodel.pcs.add_block( # set the process type\n PCS_TYPE='GROUNDWATER_FLOW', NUM_TYPE='NEW'\n)\nmodel.tim.add_block( # set the timesteps\n PCS_TYPE='GROUNDWATER_FLOW',\n TIME_START=0,\n TIME_END=600,\n TIME_STEPS=[[10, 30], [5, 60]],\n)\nmodel.write_input()\nsuccess = model.run_model()\n\npoint = model.readtec_point(pcs='GROUNDWATER_FLOW')\ntime = point['owell'][\"TIME\"]\nhead = point['owell'][\"HEAD\"]\n\nplt.plot(time, head)\nplt.show()\n```\n\n

\n\"Drawdown\"\n

\n\n\n### OGS5 executable\n\nTo obtain an OGS5 executable, ``ogs5py`` brings a download routine:\n\n```python\nfrom ogs5py import download_ogs\ndownload_ogs()\n```\n\nThen a executable is stored in the ogs5py config path and will be called\nwhen a model is run.\n\nYou can pass a ``version`` statement to the ``download_ogs`` routine, to\nobtain a specific version (5.7, 5.7.1 (win only) and 5.8).\nAlso \"latest\" and \"stable\" are possible.\nFor OGS 5.7 there are executables for Windows/Linux and MacOS.\nFor \"5.8\", \"latest\" and \"stable\" there are no MacOS pre-builds.\nHave a look at the documentation for all options.\n\nIf you have compiled your own OGS5 version, you can add your executable\nto the ogs5py config path with:\n\n```python\nfrom ogs5py import add_exe\nadd_exe(\"path/to/your/ogs/exe\")\n```\n\nOtherwise you need to specify the path to the executable within the run command:\n\n```python\nmodel.run_model(ogs_exe=\"path/to/ogs\")\n```\n\n\n## Requirements:\n\n- [NumPy >= 1.13.0](https://www.numpy.org)\n- [Pandas >= 0.23.0](https://pandas.pydata.org/)\n- [whichcraft](https://github.com/pydanny/whichcraft)\n- [meshio](https://github.com/nschloe/meshio)\n- [lxml](https://github.com/lxml/lxml)\n- [vtk](https://vtk.org/)\n- [pexpect](https://github.com/pexpect/pexpect)\n\n## Contact\n\nYou can contact us via .\n\n\n## License\n\n[MIT][gpl_link] \u00a9 2018-2019 (inspired by Falk Hesse and Miao Jing)\n\nThis project is based on [OGSPY][ogspy_link].\n\n[ogspy_link]: https://github.com/fhesze/OGSPY\n[gpl_link]: https://github.com/GeoStat-Framework/ogs5py/blob/master/LICENSE\n[ogs5_link]: https://www.opengeosys.org/ogs-5/\n[doc_link]: https://geostat-framework.readthedocs.io/projects/ogs5py/en/latest/\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/GeoStat-Framework/ogs5py", "keywords": "", "license": "MIT", "maintainer": "Sebastian Mueller", "maintainer_email": "sebastian.mueller@ufz.de", "name": "ogs5py", "package_url": "https://pypi.org/project/ogs5py/", "platform": "Windows", "project_url": "https://pypi.org/project/ogs5py/", "project_urls": { "Homepage": "https://github.com/GeoStat-Framework/ogs5py" }, "release_url": "https://pypi.org/project/ogs5py/1.0.4/", "requires_dist": [ "numpy (>=1.13.0)", "whichcraft", "pandas (>=0.23.0)", "meshio", "lxml", "vtk", "pexpect", "pygmsh ; extra == 'all'", "mayavi ; extra == 'all'", "pygmsh ; extra == 'gmsh'", "mayavi ; extra == 'show'" ], "requires_python": "", "summary": "ogs5py: a python API for OpenGeoSys5", "version": "1.0.4" }, "last_serial": 5809348, "releases": { "0.6.0": [ { "comment_text": "", "digests": { "md5": "9d059fafa2d2f91c6375724d5eaa9b0b", "sha256": "9f953ea5f6ac3e7ca2416bea59c71ee6b47aacc66954524039b0d4d8ef4482dd" }, "downloads": -1, "filename": "ogs5py-0.6.0-py2-none-any.whl", "has_sig": false, "md5_digest": "9d059fafa2d2f91c6375724d5eaa9b0b", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 129605, "upload_time": "2019-01-22T14:22:29", "url": "https://files.pythonhosted.org/packages/73/c6/63f64a749dd3858f54ac2520b4b982b85841472d102141554bc4faa2b9c2/ogs5py-0.6.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3f0fe0ed49f27d70567fcccb9727d5b9", "sha256": "98a3b46626dacbd0b7a95cbc3877e550dada1079436a34cc0fe09c1875a68d99" }, "downloads": -1, "filename": "ogs5py-0.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "3f0fe0ed49f27d70567fcccb9727d5b9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 116873, "upload_time": "2019-01-22T14:23:17", "url": "https://files.pythonhosted.org/packages/e0/49/cdc863530eb2cb973bf8721523e46fbedcdc5232837ece47ee821f8672a9/ogs5py-0.6.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3d36827a06a82febae4f973b2e9e7052", "sha256": "d37033d10810e84cc587edb5374f2a6cca9378c7fbbe922f885184e80d20d2ee" }, "downloads": -1, "filename": "ogs5py-0.6.0.tar.gz", "has_sig": false, "md5_digest": "3d36827a06a82febae4f973b2e9e7052", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 200370, "upload_time": "2019-01-22T14:23:19", "url": "https://files.pythonhosted.org/packages/df/7b/e060013e07b10dad21654ffd107030e1571be4d97aa6f4f55ff838a3823d/ogs5py-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "1106763db596cf8ae576b19ada7c325e", "sha256": "7afc7015bfbc9d869dd68c1d51815508e44433fa47295b7843b71aa884b17de3" }, "downloads": -1, "filename": "ogs5py-0.6.1-py2-none-any.whl", "has_sig": false, "md5_digest": "1106763db596cf8ae576b19ada7c325e", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 129829, "upload_time": "2019-01-22T17:57:00", "url": "https://files.pythonhosted.org/packages/ae/dc/cd9164b5da8a2093311bdbd7859c29796acd3ab4edd827593e36d75d0e9e/ogs5py-0.6.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ff935216cef6c562de97b730d1c570d1", "sha256": "297f7a1a75f068c3b43cedfd7346492b4730cb2e4913528c3d97d0bc18361a93" }, "downloads": -1, "filename": "ogs5py-0.6.1-py3-none-any.whl", "has_sig": false, "md5_digest": "ff935216cef6c562de97b730d1c570d1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 117097, "upload_time": "2019-01-22T17:57:09", "url": "https://files.pythonhosted.org/packages/dd/6f/5ae1d32e6c88f14314ea0889ecb68c414bb76e26bac0fb6d169f5cb8a92b/ogs5py-0.6.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d47105d6ec07d9dc0cf861846871625c", "sha256": "3148e35d7112c21a38f15bf931b666de8723137d64eed44c7cd0a9d58b042c5f" }, "downloads": -1, "filename": "ogs5py-0.6.1.tar.gz", "has_sig": false, "md5_digest": "d47105d6ec07d9dc0cf861846871625c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 200638, "upload_time": "2019-01-22T17:57:12", "url": "https://files.pythonhosted.org/packages/e0/74/8d384967eaab5810183c015baec05e44c8fe28b805de4b2fb2d37b0fe087/ogs5py-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "b3ac4aa0c2913f2aab9e470e3e3d33cd", "sha256": "02b78c5fb6f3353b8f32bfa1736d21cdd555a626977789297e91523e5b8c9d6f" }, "downloads": -1, "filename": "ogs5py-0.6.2-py2-none-any.whl", "has_sig": false, "md5_digest": "b3ac4aa0c2913f2aab9e470e3e3d33cd", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 130017, "upload_time": "2019-03-21T16:17:39", "url": "https://files.pythonhosted.org/packages/9b/ef/9e643cae27f44008f46e931842f84caaaa08971cdedf86e2d02beed0214f/ogs5py-0.6.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1e7cd90b05fd18ecc9b513a6fbb666a3", "sha256": "3fc374d60d2411a5f663242f0c18a648597b6155478bead16794dd5027cfec20" }, "downloads": -1, "filename": "ogs5py-0.6.2-py3-none-any.whl", "has_sig": false, "md5_digest": "1e7cd90b05fd18ecc9b513a6fbb666a3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 130017, "upload_time": "2019-03-21T16:17:58", "url": "https://files.pythonhosted.org/packages/0a/df/95fcece4f71628d5da6faff118a8ee2356511f7cd0bda3a8baea74b5f16b/ogs5py-0.6.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3d7d0ca6d69574a4d0228c6388430dbe", "sha256": "db26ed541f1c35bd3bf6dda538b3d3804b4de6b569a93ae1a2a027cd97545619" }, "downloads": -1, "filename": "ogs5py-0.6.2.tar.gz", "has_sig": false, "md5_digest": "3d7d0ca6d69574a4d0228c6388430dbe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 199263, "upload_time": "2019-03-21T16:18:01", "url": "https://files.pythonhosted.org/packages/e5/b3/05ff172e96e1b1582cd1b069136c81daa6baec4ca5e76de505312b14aaf1/ogs5py-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "4bacf7b16b90b65f96c1c85105aefbe9", "sha256": "4880bb68bb0b847af4d27fb3199f37edb8b1f8ad9758adb12421c0497904e79b" }, "downloads": -1, "filename": "ogs5py-0.6.3-py2-none-any.whl", "has_sig": false, "md5_digest": "4bacf7b16b90b65f96c1c85105aefbe9", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 130021, "upload_time": "2019-03-21T16:32:49", "url": "https://files.pythonhosted.org/packages/14/c9/055e965489b6c20b81bb50c0d61372a9d311f99a5bee4d3120640a5617e3/ogs5py-0.6.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3163a5ee88926b1c37c9c16d19dbbc6e", "sha256": "5b05049b726b1409b88ede13c72ba29b61024d9fda1d4583ede304dbd47511d7" }, "downloads": -1, "filename": "ogs5py-0.6.3-py3-none-any.whl", "has_sig": false, "md5_digest": "3163a5ee88926b1c37c9c16d19dbbc6e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 130022, "upload_time": "2019-03-21T16:32:53", "url": "https://files.pythonhosted.org/packages/4a/24/68dadb8b9486f6eecec43b51dfd70ca2f870c9cc5b126430718a8c673a95/ogs5py-0.6.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d9b373ac5b6fdf8aaaba90ea29fed5db", "sha256": "62df90e561647c08deea00f9449410a650b2931b8f84c8189218366483907731" }, "downloads": -1, "filename": "ogs5py-0.6.3.tar.gz", "has_sig": false, "md5_digest": "d9b373ac5b6fdf8aaaba90ea29fed5db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 199295, "upload_time": "2019-03-21T16:32:55", "url": "https://files.pythonhosted.org/packages/3b/8d/fc429ef745c650f2318b676999f4cff573a215dff89b81135d95609551d8/ogs5py-0.6.3.tar.gz" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "44fc8cb40656445d461f22b6a2c1ffd7", "sha256": "1fe19ca2c364b7c84fab5021eab8e9972de0d12b03873db5b78f3d5563b3f473" }, "downloads": -1, "filename": "ogs5py-0.6.4-py2-none-any.whl", "has_sig": false, "md5_digest": "44fc8cb40656445d461f22b6a2c1ffd7", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 131535, "upload_time": "2019-05-16T16:04:54", "url": "https://files.pythonhosted.org/packages/8f/59/b1748a00c792c053d1bdf27dbc9bbcb25d99fa6f4d1025fc1ab0c3d28091/ogs5py-0.6.4-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2a7ed372d6b8f7b1f59092809615b71b", "sha256": "9547b394c0a632e5779f0dbcd2674ae50d393aea6bc5e79f38747dc4bf4a3732" }, "downloads": -1, "filename": "ogs5py-0.6.4-py3-none-any.whl", "has_sig": false, "md5_digest": "2a7ed372d6b8f7b1f59092809615b71b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 131536, "upload_time": "2019-05-16T16:05:15", "url": "https://files.pythonhosted.org/packages/73/78/4d8757c9da49336f526eb09ac09dbd0e5c0c3cfe7a3ccb7ddf833060f314/ogs5py-0.6.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "098b10fa0e97490be633f2384ca111e4", "sha256": "1f0350aa6a60a448dd3f8119db59e591abb66ca7f2ff43c52b0701bcb8091b91" }, "downloads": -1, "filename": "ogs5py-0.6.4.tar.gz", "has_sig": false, "md5_digest": "098b10fa0e97490be633f2384ca111e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 200356, "upload_time": "2019-05-16T16:05:18", "url": "https://files.pythonhosted.org/packages/a1/b4/00c16945641a7cd4be29071c5c5b8b01325567dea511572e10c3c52a1e95/ogs5py-0.6.4.tar.gz" } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "5ef0d39ea09f83f9566a7e189b43180c", "sha256": "fe3d52d5a18162a6c87753793ebab67ec0653b2407c60cb56fff3a0893e2dcd4" }, "downloads": -1, "filename": "ogs5py-0.6.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5ef0d39ea09f83f9566a7e189b43180c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 131742, "upload_time": "2019-07-05T13:53:37", "url": "https://files.pythonhosted.org/packages/3b/ac/e826e2bda4572c7e12198e3bed5b3de1ef3eef19d22e066ea38892130b3f/ogs5py-0.6.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5bdd3d6bf03483ceaf68dc3ca3adeb8f", "sha256": "ba52b72f52b5c884ceb8129d210c040e895783d16432dd24696af6f41fb63c52" }, "downloads": -1, "filename": "ogs5py-0.6.5.tar.gz", "has_sig": false, "md5_digest": "5bdd3d6bf03483ceaf68dc3ca3adeb8f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 201021, "upload_time": "2019-07-05T13:53:46", "url": "https://files.pythonhosted.org/packages/e0/a8/18036ffe505025e170e2b7edd769dd963f1a3133fc4337555e62a0f4aaee/ogs5py-0.6.5.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "d576a4628a82ac548c5e429e8e4e1ec5", "sha256": "180112ebd8792891d3672b2e08c21eda1b56ad22add071628abe0a64a10a7d79" }, "downloads": -1, "filename": "ogs5py-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d576a4628a82ac548c5e429e8e4e1ec5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 130562, "upload_time": "2019-08-22T15:18:05", "url": "https://files.pythonhosted.org/packages/82/f1/cf9051e00afb48d7cec18ae7d6a36c6358fa6cef75871b5363802bd2f0dd/ogs5py-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7991ea202cfbeb63b4d7936dc2470c86", "sha256": "8321f445615c44f4bb5c0b77abd44b7c2983a6c010d31a5b6d53d17a13afeeed" }, "downloads": -1, "filename": "ogs5py-1.0.0.tar.gz", "has_sig": false, "md5_digest": "7991ea202cfbeb63b4d7936dc2470c86", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 240015, "upload_time": "2019-08-22T15:18:08", "url": "https://files.pythonhosted.org/packages/c5/26/befa2293e2b5d971b05cca1bf26ddae6f9cc5e25969d3422e38c5e5ca6f2/ogs5py-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "a857fd60b4dd69ee7ad67f069ccaf762", "sha256": "9f45845b140da7918250307c949715c52a7728e9c5da25004fcdc204e42244e5" }, "downloads": -1, "filename": "ogs5py-1.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a857fd60b4dd69ee7ad67f069ccaf762", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 130567, "upload_time": "2019-08-22T20:03:54", "url": "https://files.pythonhosted.org/packages/ef/2b/959833b0230a582b409cc5810e5893a17aebc86a5bb25d59c39bb2ed84a2/ogs5py-1.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f408240e070a5fcce531c26dad0ce1a2", "sha256": "7c3aa6768fb1a555f98fe2bf8aeab85fac5db30cd453338ce9dff561effc0e35" }, "downloads": -1, "filename": "ogs5py-1.0.1.tar.gz", "has_sig": false, "md5_digest": "f408240e070a5fcce531c26dad0ce1a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 240012, "upload_time": "2019-08-22T20:03:57", "url": "https://files.pythonhosted.org/packages/f1/69/0cf9a27c81e08d8a56b6f0859418565d8ecd6170339cfc690818b654b1aa/ogs5py-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "44330ad8462b1a673fe09403650f6250", "sha256": "8f7188b4ea477e8701769918617611cf00ec3414a75627cd86cd4a2a25b102bc" }, "downloads": -1, "filename": "ogs5py-1.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "44330ad8462b1a673fe09403650f6250", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 130587, "upload_time": "2019-08-22T21:34:14", "url": "https://files.pythonhosted.org/packages/36/f1/71ef636283a5d0d5704218c2c0a41f2f7a1c4d4dba61e3d43d59cec4698c/ogs5py-1.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a6eb97ef45bd331f9409e8cc090baffa", "sha256": "f717a2319eec03387e1d60aad1e85d97a76fd2e811d82be1b6b4875a4d005b17" }, "downloads": -1, "filename": "ogs5py-1.0.2.tar.gz", "has_sig": false, "md5_digest": "a6eb97ef45bd331f9409e8cc090baffa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 240048, "upload_time": "2019-08-22T21:34:17", "url": "https://files.pythonhosted.org/packages/7d/9c/7610e18bbb93b6a321ba7cebc3bdae9d0fd927107b1ff484f5f35d4a8155/ogs5py-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "23ffc6dab8f7f0e61890ab40729db75b", "sha256": "e64ac2278b6e49a5b6f8b8ef607c41b9429a18bfd447f2665ec7697f842b7840" }, "downloads": -1, "filename": "ogs5py-1.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "23ffc6dab8f7f0e61890ab40729db75b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 130586, "upload_time": "2019-08-23T11:04:20", "url": "https://files.pythonhosted.org/packages/7c/76/69253e89e6ccc94d5251b909b82b0552d0142b2b66cd529cdefb73314277/ogs5py-1.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8e1a902696bf7dbd14b953976fecda0f", "sha256": "17f8176649bb2c811dc9cf3bf75fe038c24edb4f64d7c72d50cd1a596d02c848" }, "downloads": -1, "filename": "ogs5py-1.0.3.tar.gz", "has_sig": false, "md5_digest": "8e1a902696bf7dbd14b953976fecda0f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 240038, "upload_time": "2019-08-23T11:04:24", "url": "https://files.pythonhosted.org/packages/3d/78/d98d648fdf50d3cd796b5998f0a14a36fbe1dd72a57c9eadae0f2b920597/ogs5py-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "af9c6cffabf92b6f657d35093852cbc2", "sha256": "ac0768005c5d19e93e96c74724c44c118ba8f96f949d4234d7dcc1fe40a7c21a" }, "downloads": -1, "filename": "ogs5py-1.0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "af9c6cffabf92b6f657d35093852cbc2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 131855, "upload_time": "2019-09-10T14:44:43", "url": "https://files.pythonhosted.org/packages/51/46/25124b99f762e34a48b52ea5d6b8523b595672b9072d03102ba18f247949/ogs5py-1.0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4f6b7242384050dd5b46f1fc0dd7de3a", "sha256": "b8b70b7ae2a5f78375dcf3cc8fe4968aa9f99566162db98662722f47df0b5cdf" }, "downloads": -1, "filename": "ogs5py-1.0.4.tar.gz", "has_sig": false, "md5_digest": "4f6b7242384050dd5b46f1fc0dd7de3a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 241206, "upload_time": "2019-09-10T14:44:46", "url": "https://files.pythonhosted.org/packages/06/a7/f7d46b3ef9450fdeee455b5acce4323be8a17827c39c11cd7789281c9e5d/ogs5py-1.0.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "af9c6cffabf92b6f657d35093852cbc2", "sha256": "ac0768005c5d19e93e96c74724c44c118ba8f96f949d4234d7dcc1fe40a7c21a" }, "downloads": -1, "filename": "ogs5py-1.0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "af9c6cffabf92b6f657d35093852cbc2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 131855, "upload_time": "2019-09-10T14:44:43", "url": "https://files.pythonhosted.org/packages/51/46/25124b99f762e34a48b52ea5d6b8523b595672b9072d03102ba18f247949/ogs5py-1.0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4f6b7242384050dd5b46f1fc0dd7de3a", "sha256": "b8b70b7ae2a5f78375dcf3cc8fe4968aa9f99566162db98662722f47df0b5cdf" }, "downloads": -1, "filename": "ogs5py-1.0.4.tar.gz", "has_sig": false, "md5_digest": "4f6b7242384050dd5b46f1fc0dd7de3a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 241206, "upload_time": "2019-09-10T14:44:46", "url": "https://files.pythonhosted.org/packages/06/a7/f7d46b3ef9450fdeee455b5acce4323be8a17827c39c11cd7789281c9e5d/ogs5py-1.0.4.tar.gz" } ] }