xtgeo


Namextgeo JSON
Version 3.8.0 PyPI version JSON
download
home_page
SummaryXTGeo is a Python library for 3D grids, surfaces, wells, etc
upload_time2024-02-29 07:58:45
maintainer
docs_urlNone
author
requires_python>=3.8
licenseLGPL-3.0
keywords grids surfaces wells cubes
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            ![XTGeo](https://github.com/equinor/xtgeo/blob/main/docs/images/xtgeo-logo-wide.png)
![builds](https://github.com/equinor/xtgeo/workflows/builds/badge.svg)
![linting](https://github.com/equinor/xtgeo/workflows/linting/badge.svg)
[![codecov](https://codecov.io/gh/equinor/xtgeo/branch/main/graph/badge.svg)](https://codecov.io/gh/equinor/xtgeo)
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
[![PyPI version](https://badge.fury.io/py/xtgeo.svg)](https://badge.fury.io/py/xtgeo)
[![Documentation Status](https://readthedocs.org/projects/xtgeo/badge/?version=latest)](https://xtgeo.readthedocs.io/en/latest/?badge=latest)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/xtgeo.svg)
![PyPI - License](https://img.shields.io/pypi/l/xtgeo.svg)

## Introduction

XTGeo is a LGPL licensed Python library with C backend to support
manipulation of (oil industry) subsurface reservoir modelling. Typical
users are geoscientist and reservoir engineers working with
reservoir modelling, in relation with RMS. XTGeo is developed in Equinor.

Detailed documentation for [XTGeo at Read _the_ Docs](https://xtgeo.readthedocs.io)

## Feature summary

-   Python 3.8+ support
-   Focus on high speed, using numpy and pandas with C backend
-   Regular surfaces, i.e. 2D maps with regular sampling and rotation
-   3D grids (corner-point), supporting several formats such as
    RMS and Eclipse
-   Support of seismic cubes, using
    [segyio](https://github.com/equinor/segyio) as backend for SEGY format
-   Support of well data, line and polygons (still somewhat immature)
-   Operations between the data types listed above; e.g. slice a surface
    with a seismic cube
-   Optional integration with ROXAR API python for several data types
    (see note later)
-   Linux is main development platform, but Windows and MacOS (64 bit) are supported
    and PYPI wheels for all three platforms are provided.

## Installation

For Linux, Windows and MacOS 64bit, PYPI installation is enabled:

```
pip install xtgeo
```

For detailed installation instructions (implies C compiling), see
the documentation.

## Getting started

```python
import xtgeo

# create an instance of a surface, read from file
mysurf = xtgeo.surface_from_file("myfile.gri")  # Irap binary as default

print(f"Mean is {mysurf.values.mean()}")

# change date so all values less than 2000 becomes 2000
# The values attribute gives the Numpy array

mysurface.values[mysurface.values < 2000] = 2000

# export the modified surface:
mysurface.to_file("newfile.gri")
```

## Note on RMS Roxar API integration

The following applies to the part of the XTGeo API that is
connected to Roxar API (RMS):

> RMS is neither an open source software nor a free software and
> any use of it needs a software license agreement in place.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "xtgeo",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "grids surfaces wells cubes",
    "author": "",
    "author_email": "Equinor <fg_fmu-atlas@equinor.com>",
    "download_url": "",
    "platform": null,
    "description": "![XTGeo](https://github.com/equinor/xtgeo/blob/main/docs/images/xtgeo-logo-wide.png)\n![builds](https://github.com/equinor/xtgeo/workflows/builds/badge.svg)\n![linting](https://github.com/equinor/xtgeo/workflows/linting/badge.svg)\n[![codecov](https://codecov.io/gh/equinor/xtgeo/branch/main/graph/badge.svg)](https://codecov.io/gh/equinor/xtgeo)\n[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)\n[![PyPI version](https://badge.fury.io/py/xtgeo.svg)](https://badge.fury.io/py/xtgeo)\n[![Documentation Status](https://readthedocs.org/projects/xtgeo/badge/?version=latest)](https://xtgeo.readthedocs.io/en/latest/?badge=latest)\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/xtgeo.svg)\n![PyPI - License](https://img.shields.io/pypi/l/xtgeo.svg)\n\n## Introduction\n\nXTGeo is a LGPL licensed Python library with C backend to support\nmanipulation of (oil industry) subsurface reservoir modelling. Typical\nusers are geoscientist and reservoir engineers working with\nreservoir modelling, in relation with RMS. XTGeo is developed in Equinor.\n\nDetailed documentation for [XTGeo at Read _the_ Docs](https://xtgeo.readthedocs.io)\n\n## Feature summary\n\n-   Python 3.8+ support\n-   Focus on high speed, using numpy and pandas with C backend\n-   Regular surfaces, i.e. 2D maps with regular sampling and rotation\n-   3D grids (corner-point), supporting several formats such as\n    RMS and Eclipse\n-   Support of seismic cubes, using\n    [segyio](https://github.com/equinor/segyio) as backend for SEGY format\n-   Support of well data, line and polygons (still somewhat immature)\n-   Operations between the data types listed above; e.g. slice a surface\n    with a seismic cube\n-   Optional integration with ROXAR API python for several data types\n    (see note later)\n-   Linux is main development platform, but Windows and MacOS (64 bit) are supported\n    and PYPI wheels for all three platforms are provided.\n\n## Installation\n\nFor Linux, Windows and MacOS 64bit, PYPI installation is enabled:\n\n```\npip install xtgeo\n```\n\nFor detailed installation instructions (implies C compiling), see\nthe documentation.\n\n## Getting started\n\n```python\nimport xtgeo\n\n# create an instance of a surface, read from file\nmysurf = xtgeo.surface_from_file(\"myfile.gri\")  # Irap binary as default\n\nprint(f\"Mean is {mysurf.values.mean()}\")\n\n# change date so all values less than 2000 becomes 2000\n# The values attribute gives the Numpy array\n\nmysurface.values[mysurface.values < 2000] = 2000\n\n# export the modified surface:\nmysurface.to_file(\"newfile.gri\")\n```\n\n## Note on RMS Roxar API integration\n\nThe following applies to the part of the XTGeo API that is\nconnected to Roxar API (RMS):\n\n> RMS is neither an open source software nor a free software and\n> any use of it needs a software license agreement in place.\n",
    "bugtrack_url": null,
    "license": "LGPL-3.0",
    "summary": "XTGeo is a Python library for 3D grids, surfaces, wells, etc",
    "version": "3.8.0",
    "project_urls": {
        "Documentation": "https://xtgeo.readthedocs.io",
        "Homepage": "https://github.com/equinor/xtgeo",
        "Issues": "https://github.com/equinor/xtgeo/issues",
        "Repository": "https://github.com/equinor/xtgeo"
    },
    "split_keywords": [
        "grids",
        "surfaces",
        "wells",
        "cubes"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "549fe11c02d676f5e6376db0ad2626528c670ae6dde57d37e830b4b550f93f91",
                "md5": "eaf00acda031c4336a80bc6a8bceede6",
                "sha256": "e749476b3a3c78dac0df3641ad63fe5f9ebca2b5a098c6f458e2ff62ac5db6c9"
            },
            "downloads": -1,
            "filename": "xtgeo-3.8.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eaf00acda031c4336a80bc6a8bceede6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 804314,
            "upload_time": "2024-02-29T07:58:45",
            "upload_time_iso_8601": "2024-02-29T07:58:45.572766Z",
            "url": "https://files.pythonhosted.org/packages/54/9f/e11c02d676f5e6376db0ad2626528c670ae6dde57d37e830b4b550f93f91/xtgeo-3.8.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ec8f6180d51b9315b806a3b17eea1ae18703caffb820e2a3bfb5d322be3a780",
                "md5": "647cfdc1f812c3de6046176bfc665248",
                "sha256": "7a869f3ba8a8fbd4e1500cfa3072cac815a784f5943f1ca1d377335e6e53283e"
            },
            "downloads": -1,
            "filename": "xtgeo-3.8.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "647cfdc1f812c3de6046176bfc665248",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 764503,
            "upload_time": "2024-02-29T07:58:49",
            "upload_time_iso_8601": "2024-02-29T07:58:49.301072Z",
            "url": "https://files.pythonhosted.org/packages/2e/c8/f6180d51b9315b806a3b17eea1ae18703caffb820e2a3bfb5d322be3a780/xtgeo-3.8.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ff76960d1f23d71e43256d3f9ab2ab022e98f7e7a21fdb7b32f50366d1c3e5e",
                "md5": "57e9e7c1a1d92de7a6af469068b23cae",
                "sha256": "c3838232d54d163cd89d21586bb29f8bc31a92306feb52dc54a71e598993e122"
            },
            "downloads": -1,
            "filename": "xtgeo-3.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "57e9e7c1a1d92de7a6af469068b23cae",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 851685,
            "upload_time": "2024-02-29T07:58:52",
            "upload_time_iso_8601": "2024-02-29T07:58:52.473893Z",
            "url": "https://files.pythonhosted.org/packages/1f/f7/6960d1f23d71e43256d3f9ab2ab022e98f7e7a21fdb7b32f50366d1c3e5e/xtgeo-3.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3653dc6963c93de0963bc0d7c1faa612040de4526cfa2a0b36924d4d3bf4cc17",
                "md5": "65736c70bcfab5d78dcbbf6f35921be1",
                "sha256": "46fff34b3e28a156e2648e6b6647f208836a5a93053d0dde60b281bbf13fb250"
            },
            "downloads": -1,
            "filename": "xtgeo-3.8.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "65736c70bcfab5d78dcbbf6f35921be1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 741319,
            "upload_time": "2024-02-29T07:58:54",
            "upload_time_iso_8601": "2024-02-29T07:58:54.305086Z",
            "url": "https://files.pythonhosted.org/packages/36/53/dc6963c93de0963bc0d7c1faa612040de4526cfa2a0b36924d4d3bf4cc17/xtgeo-3.8.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb4ae6d8ff500bd22d63f9945803a203b70bdc53f408fec0cd52771afb4c4aea",
                "md5": "a0a8a28a079b69b59e3690353ceaaf1d",
                "sha256": "8d29e58946bccdedef7d0c06e8e94ecee67a677efddd848bc3d613977eaf69b4"
            },
            "downloads": -1,
            "filename": "xtgeo-3.8.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a0a8a28a079b69b59e3690353ceaaf1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 805819,
            "upload_time": "2024-02-29T07:58:56",
            "upload_time_iso_8601": "2024-02-29T07:58:56.575604Z",
            "url": "https://files.pythonhosted.org/packages/eb/4a/e6d8ff500bd22d63f9945803a203b70bdc53f408fec0cd52771afb4c4aea/xtgeo-3.8.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c8850ce4282285933a6e1053163f755714bfbcb80f4b15fd66e0cdb8cec10a43",
                "md5": "361bb5bc0130c796215b38c3a049712d",
                "sha256": "0d3f7330583f23c65635dafd558670797044351593191498a31c9932dd70b130"
            },
            "downloads": -1,
            "filename": "xtgeo-3.8.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "361bb5bc0130c796215b38c3a049712d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 765752,
            "upload_time": "2024-02-29T07:58:58",
            "upload_time_iso_8601": "2024-02-29T07:58:58.937198Z",
            "url": "https://files.pythonhosted.org/packages/c8/85/0ce4282285933a6e1053163f755714bfbcb80f4b15fd66e0cdb8cec10a43/xtgeo-3.8.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "854a2635786f234d4b19cfcad0e22669d2cafe7c93a6a0e48333077d9e3d5c78",
                "md5": "7fb483e76bc3332c267bf1de13c37291",
                "sha256": "8dda56fd457c20cb2359ad4d4ce832a6ee759dce0867b2e24486a1a44909e29b"
            },
            "downloads": -1,
            "filename": "xtgeo-3.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7fb483e76bc3332c267bf1de13c37291",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 853639,
            "upload_time": "2024-02-29T07:59:00",
            "upload_time_iso_8601": "2024-02-29T07:59:00.825329Z",
            "url": "https://files.pythonhosted.org/packages/85/4a/2635786f234d4b19cfcad0e22669d2cafe7c93a6a0e48333077d9e3d5c78/xtgeo-3.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a9a752e9fb5985e9fc6e993b36ac4215ca11a374b5dbcee10500b553113af24",
                "md5": "ed2f9f481d365b93195807436d564119",
                "sha256": "360aed6e6b78f37c5846a907ef5a4fc18c6e87288957e5b1bc7c434935a3e2b3"
            },
            "downloads": -1,
            "filename": "xtgeo-3.8.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ed2f9f481d365b93195807436d564119",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 742467,
            "upload_time": "2024-02-29T07:59:03",
            "upload_time_iso_8601": "2024-02-29T07:59:03.242827Z",
            "url": "https://files.pythonhosted.org/packages/1a/9a/752e9fb5985e9fc6e993b36ac4215ca11a374b5dbcee10500b553113af24/xtgeo-3.8.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e8a9ddf7569bd2fea3fe00ada7984fc0c29bdbc57d6661fa65031536cff1c555",
                "md5": "e337b8041d83b0c3f7a39dfdfa423ed0",
                "sha256": "ee9a7fecfe18c981f07b855c0c2acf03c789f2e649c0acc5bedae103792a818d"
            },
            "downloads": -1,
            "filename": "xtgeo-3.8.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e337b8041d83b0c3f7a39dfdfa423ed0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 805289,
            "upload_time": "2024-02-29T07:59:05",
            "upload_time_iso_8601": "2024-02-29T07:59:05.555866Z",
            "url": "https://files.pythonhosted.org/packages/e8/a9/ddf7569bd2fea3fe00ada7984fc0c29bdbc57d6661fa65031536cff1c555/xtgeo-3.8.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f36a40885866e4a0622b022a99b6624e2cf0af5768944da67cb3b71ea35bd49b",
                "md5": "737f6dfb5b43509d24de2621d544913d",
                "sha256": "edda1437827f52b9c3f3fd14bbc00ad0fd602731a446d9aa3d99727804172724"
            },
            "downloads": -1,
            "filename": "xtgeo-3.8.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "737f6dfb5b43509d24de2621d544913d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 765052,
            "upload_time": "2024-02-29T07:59:08",
            "upload_time_iso_8601": "2024-02-29T07:59:08.071125Z",
            "url": "https://files.pythonhosted.org/packages/f3/6a/40885866e4a0622b022a99b6624e2cf0af5768944da67cb3b71ea35bd49b/xtgeo-3.8.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a539a2594c28e878e53eca13012a2a2bac67b8b08cfad4d173e4a44f1239dd1",
                "md5": "08d09ce4c6223824836771df0408771b",
                "sha256": "82c5b44089b58c3d50f4df49e0e7bed488047921ee2c293c2c5c3a96e452941e"
            },
            "downloads": -1,
            "filename": "xtgeo-3.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "08d09ce4c6223824836771df0408771b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 854696,
            "upload_time": "2024-02-29T07:59:10",
            "upload_time_iso_8601": "2024-02-29T07:59:10.305765Z",
            "url": "https://files.pythonhosted.org/packages/0a/53/9a2594c28e878e53eca13012a2a2bac67b8b08cfad4d173e4a44f1239dd1/xtgeo-3.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "88bb3c7d6b32c2b2a9a2e3c5d095436de4ad2437f346d5c83a1bcf598e012bc2",
                "md5": "52e302ab961f23b9b14d381968a51875",
                "sha256": "616a7cafbcb19f1ee10afcdcd2eb3d717269c6cf88e44331d04f82ac74d3c4d1"
            },
            "downloads": -1,
            "filename": "xtgeo-3.8.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "52e302ab961f23b9b14d381968a51875",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 742044,
            "upload_time": "2024-02-29T07:59:12",
            "upload_time_iso_8601": "2024-02-29T07:59:12.661318Z",
            "url": "https://files.pythonhosted.org/packages/88/bb/3c7d6b32c2b2a9a2e3c5d095436de4ad2437f346d5c83a1bcf598e012bc2/xtgeo-3.8.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d0e27ba0750742b22c6a73179449e741d2680c9aff16587d2df1957104c70e7e",
                "md5": "5881e6bf88c4938225ef08ff6a644fdb",
                "sha256": "b81cf8a585b6c1659b42707bd66380824abecf6efcb87fb478e08ebe064b26b2"
            },
            "downloads": -1,
            "filename": "xtgeo-3.8.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5881e6bf88c4938225ef08ff6a644fdb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 804265,
            "upload_time": "2024-02-29T07:59:14",
            "upload_time_iso_8601": "2024-02-29T07:59:14.717024Z",
            "url": "https://files.pythonhosted.org/packages/d0/e2/7ba0750742b22c6a73179449e741d2680c9aff16587d2df1957104c70e7e/xtgeo-3.8.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "344c5636d6c32c838b4d011e11c4d4cde7ee48d284bb17f05229c46af7ed67fb",
                "md5": "836c78db90c4c0444908e682c1989e72",
                "sha256": "3c9f839e3683fa3e12803fd59629dcfb30bf74061d3512c327c95129f723b90c"
            },
            "downloads": -1,
            "filename": "xtgeo-3.8.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "836c78db90c4c0444908e682c1989e72",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 764420,
            "upload_time": "2024-02-29T07:59:17",
            "upload_time_iso_8601": "2024-02-29T07:59:17.296406Z",
            "url": "https://files.pythonhosted.org/packages/34/4c/5636d6c32c838b4d011e11c4d4cde7ee48d284bb17f05229c46af7ed67fb/xtgeo-3.8.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "817a4488bcfeee183a5961e33578ab8002946ec954ab82320be70ee2c8a674b2",
                "md5": "2667f03cbe130a9136b95d39035a9819",
                "sha256": "fc3f2d53c49c69f9c67b250c5706cfc1f5b7813658c2bb0aab772d63553f37c8"
            },
            "downloads": -1,
            "filename": "xtgeo-3.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2667f03cbe130a9136b95d39035a9819",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 851350,
            "upload_time": "2024-02-29T07:59:19",
            "upload_time_iso_8601": "2024-02-29T07:59:19.013450Z",
            "url": "https://files.pythonhosted.org/packages/81/7a/4488bcfeee183a5961e33578ab8002946ec954ab82320be70ee2c8a674b2/xtgeo-3.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "99c61ba13690141d87e283335e849acca1629041ac58cece9aa88a49c5b74e0f",
                "md5": "2fe299ae11052518ae4a681a45f0050f",
                "sha256": "3604838e718cc38398f722bb939db5c829ac60fee012ced91bb14f6b0bea7242"
            },
            "downloads": -1,
            "filename": "xtgeo-3.8.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2fe299ae11052518ae4a681a45f0050f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 741450,
            "upload_time": "2024-02-29T07:59:21",
            "upload_time_iso_8601": "2024-02-29T07:59:21.292021Z",
            "url": "https://files.pythonhosted.org/packages/99/c6/1ba13690141d87e283335e849acca1629041ac58cece9aa88a49c5b74e0f/xtgeo-3.8.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3698cfe3fcc6e97de688a60e47e00252b76f3ce143685a9a13a01ec9b382e48b",
                "md5": "ad8c4ac334f5816ca182139ad9e18acc",
                "sha256": "a07cb70d74e5a555d6774564e655ec7ce04e2395e390cc9f3e61cea497dbe62e"
            },
            "downloads": -1,
            "filename": "xtgeo-3.8.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ad8c4ac334f5816ca182139ad9e18acc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 804429,
            "upload_time": "2024-02-29T07:59:23",
            "upload_time_iso_8601": "2024-02-29T07:59:23.206335Z",
            "url": "https://files.pythonhosted.org/packages/36/98/cfe3fcc6e97de688a60e47e00252b76f3ce143685a9a13a01ec9b382e48b/xtgeo-3.8.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5735874bfdb4d61114e36a9e79cda915dfe2d681ad985e3f169bfaf4f2427ab3",
                "md5": "0910bd1064cef8ab9a2ee43b3d5278c3",
                "sha256": "058426f9c19ffc99cfaf526823df2d3ec83b9bbcc37673086970f8ad131dc170"
            },
            "downloads": -1,
            "filename": "xtgeo-3.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0910bd1064cef8ab9a2ee43b3d5278c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 851483,
            "upload_time": "2024-02-29T07:59:25",
            "upload_time_iso_8601": "2024-02-29T07:59:25.162405Z",
            "url": "https://files.pythonhosted.org/packages/57/35/874bfdb4d61114e36a9e79cda915dfe2d681ad985e3f169bfaf4f2427ab3/xtgeo-3.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04ff267425775d3ed2d3bedc08b836e13f12982d2cd3c9c7918443a7471b1ef9",
                "md5": "4a02355d08d9bbf42f473e2bc315223f",
                "sha256": "a904006d4a7140e4a9923d8473f33b4fce7b2f04c7b56a15495511f309d00599"
            },
            "downloads": -1,
            "filename": "xtgeo-3.8.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4a02355d08d9bbf42f473e2bc315223f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 740675,
            "upload_time": "2024-02-29T07:59:27",
            "upload_time_iso_8601": "2024-02-29T07:59:27.119884Z",
            "url": "https://files.pythonhosted.org/packages/04/ff/267425775d3ed2d3bedc08b836e13f12982d2cd3c9c7918443a7471b1ef9/xtgeo-3.8.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-29 07:58:45",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "equinor",
    "github_project": "xtgeo",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "xtgeo"
}
        
Elapsed time: 0.19292s