ANU-inversion-course


NameANU-inversion-course JSON
Version 0.1.1 PyPI version JSON
download
home_page
SummaryANU Inversion Course Package
upload_time2024-02-16 04:10:46
maintainer
docs_urlNone
authorInLab
requires_python>=3.6
license
keywords inversion inference geoscience geophysics
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # ANU Inversion Course Package

[![Build](https://github.com/anu-ilab/ANUInversionCourse/actions/workflows/build_wheels.yml/badge.svg?branch=main)](https://github.com/anu-ilab/ANUInversionCourse/actions/workflows/build_wheels.yml)
[![PyPI version](https://badge.fury.io/py/ANU-inversion-course.svg)](https://badge.fury.io/py/ANU-inversion-course)

This package contains resources to be used in the [inversion course practicals](https://github.com/anu-ilab/JupyterPracticals).

## Table of contents
- [Getting started](README.md#getting-started)
  - [Pre-requisites](README.md#1-pre-requisites)
  - [Set up a virtual environment (optional)](README.md#2-set-up-a-virtual-environment-optional)
  - [Installation](README.md#3-installation)
  - [Check](README.md#4-check)
- [Troubleshooting](README.md#troubleshooting)
- [Developer notes](README.md#developer-notes)

## Getting started

### 1. Pre-requisites

Before installing the `ANU-inversion-course` package, make sure you have the following ready:

- A computer with a recent OS.
- OS-specific dependencies including a system package manager:
  - For *Linux* users:
    1. Familiarise yourself with the linux system package manager `apt` / `dnf` / `pacman` / `yast` etc.
  - For *MacOS* users:
    1. Download and install `Xcode` from "App Store" (you'll need to create an Apple account if not already done)
    2. Install the Xcode command line tools by typing this in "Terminal":
       `xcode-select --install; sudo xcodebuild -license; sudo softwareinstall -i -a`
    4. Install a recent package manager e.g. one of `Anaconda` (https://www.anaconda.com/), `MacPorts` (https://www.macports.org/), `HomeBrew` (https://brew.sh/)
  - For *Windows* users:
    1. Install the `Cygwin` package manager (https://www.cygwin.com/)
- Install git, gcc, g++, gfortran and python (3.6+) using the package manager. Use the package manager search facility to find options.
- Install any other software development tools you want using the package manager.
- If necessary add your package manager installation directory to the system PATH environment variable so installed programs can/will be found.

These tools can usually be downloaded in source form and compiled however this should only be necessary if you have an unusual setup.
Don't be tempted by web sites that claim easy one step package installs, install a package manager. Package managers are far superior in almost every way.

### 2. Set up a python virtual environment [optional]

It's recommended to use a python virtual environment (e.g. [`venv`](https://docs.python.org/3/library/venv.html), [`virtualenv`](https://virtualenv.pypa.io/en/latest/), [`mamba`](https://mamba.readthedocs.io/en/latest/) or [`conda`](https://docs.conda.io/en/latest/)) so that ANU-Inversion-Course doesn't conflict with your other Python projects. 

Open a terminal (or a Cygwin shell for Windows users) and refer to the cheat sheet below for how to create, activate, exit and remove a virtual environment. `$ ` is the system prompt.

<details>
  <summary>venv</summary>

  Ensure you have and are using *python >= 3.6*. It may not be called `python` but something like `python3`, `python3.10` etc.

  Use the first two lines below to create and activate the new virtual environment. The other lines are for your
  future reference.

  ```console
  $ python -m venv <path-to-new-env>/inversion_course           # to create
  $ source <path-to-new-env>/inversion_course/bin/activate      # to activate
  $ deactivate                                                  # to exit
  $ rm -rf <path-to-new-env>/inversion_course                   # to remove
  ```
  
</details>

<details>
  <summary>virtualenv</summary>

  Use the first two lines below to create and activate the new virtual environment. The other lines are for your
  future reference.

  ```console
  $ virtualenv <path-to-new-env>/inversion_course -p=3.10       # to create
  $ source <path-to-new-env>/inversion_course/bin/activate      # to activate
  $ deactivate                                                  # to exit
  $ rm -rf <path-to-new-env>/inversion_course                   # to remove
  ```

</details>

<details>
  <summary>mamba</summary>

  Use the first two lines below to create and activate the new virtual environment. The other lines are for your
  future reference.

  ```console
  $ mamba create -n inversion_course python=3.10                # to create
  $ mamba activate inversion_course                             # to activate
  $ mamba deactivate                                            # to exit
  $ mamba env remove -n inversion_course                        # to remove
  ```

</details>

<details>
  <summary>conda</summary>

  Use the first two lines below to create and activate the new virtual environment. The other lines are for your
  future reference.

  ```console
  $ conda create -n inversion_course python=3.10                # to create
  $ conda activate inversion_course                             # to activate
  $ conda deactivate                                            # to exit
  $ conda env remove -n inversion_course                        # to remove
  ```

</details>


### 3. Installation

Type the following in your terminal (or Cygwin shell for Windows users):

```console
$ pip install jupyterlab matplotlib anu-inversion-course
```

### 4. Check
And when you run `jupyter-lab` to do the practicals, make sure you are in the same environment as where your `anu-inversion-course` was installed. You can try to test this by checking if the following commands give you similar result:

```console
$ which pip
<some-path>/bin/pip
$ which jupyter-lab
<same-path>/bin/jupyter-lab
$ pip list | grep ANU-inversion-course
ANU-inversion-course               0.1.0
```

## Troubleshooting

If you find problems *importing* `anu_inversion_course.rf`, try to search for the error message you get. [Here](https://stackoverflow.com/questions/58793399/importerror-library-not-loaded-for-f2py) contains a nice explanation for one possible cause. And here is how to locate `libgfortran`:
```console
gfortran --print-file-name libgfortran.5.dylib # macOS
```

## Developer Notes

Check out [NOTES.md](NOTES.md) if you'd like to contribute to this package.

1. [Getting started](NOTES.md#getting-started)
2. [Cheatsheet](NOTES.md#cheatsheet)
   1. [conda environment](NOTES.md#conda-environment)
   2. [git operations](NOTES.md#git-operations)
   3. [package development](NOTES.md#package-development)
   4. [package metadata](NOTES.md#package-metadata)
   5. [package building test & release](NOTES.md#package-building-test--release)
3. [Adding C/C++ extensions](NOTES.md#adding-cc-extensions)
4. [Adding Fortran extensions](NOTES.md#adding-fortran-extensions)
5. [More references](NOTES.md#more-references)
6. [Appendix - semantic versioning](NOTES.md#appendix-i---sementic-versioning)
7. [Additional Notes about gfortran](NOTES.md#additional-notes-about-gfortran)

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "ANU-inversion-course",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "inversion,inference,geoscience,geophysics",
    "author": "InLab",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/a8/04/909d3edc449b9388db671b71061604b4edb8cd01c8d5ad2b3a47ac4e79ab/ANU_inversion_course-0.1.1.tar.gz",
    "platform": null,
    "description": "# ANU Inversion Course Package\n\n[![Build](https://github.com/anu-ilab/ANUInversionCourse/actions/workflows/build_wheels.yml/badge.svg?branch=main)](https://github.com/anu-ilab/ANUInversionCourse/actions/workflows/build_wheels.yml)\n[![PyPI version](https://badge.fury.io/py/ANU-inversion-course.svg)](https://badge.fury.io/py/ANU-inversion-course)\n\nThis package contains resources to be used in the [inversion course practicals](https://github.com/anu-ilab/JupyterPracticals).\n\n## Table of contents\n- [Getting started](README.md#getting-started)\n  - [Pre-requisites](README.md#1-pre-requisites)\n  - [Set up a virtual environment (optional)](README.md#2-set-up-a-virtual-environment-optional)\n  - [Installation](README.md#3-installation)\n  - [Check](README.md#4-check)\n- [Troubleshooting](README.md#troubleshooting)\n- [Developer notes](README.md#developer-notes)\n\n## Getting started\n\n### 1. Pre-requisites\n\nBefore installing the `ANU-inversion-course` package, make sure you have the following ready:\n\n- A computer with a recent OS.\n- OS-specific dependencies including a system package manager:\n  - For *Linux* users:\n    1. Familiarise yourself with the linux system package manager `apt` / `dnf` / `pacman` / `yast` etc.\n  - For *MacOS* users:\n    1. Download and install `Xcode` from \"App Store\" (you'll need to create an Apple account if not already done)\n    2. Install the Xcode command line tools by typing this in \"Terminal\":\n       `xcode-select --install; sudo xcodebuild -license; sudo softwareinstall -i -a`\n    4. Install a recent package manager e.g. one of `Anaconda` (https://www.anaconda.com/), `MacPorts` (https://www.macports.org/), `HomeBrew` (https://brew.sh/)\n  - For *Windows* users:\n    1. Install the `Cygwin` package manager (https://www.cygwin.com/)\n- Install git, gcc, g++, gfortran and python (3.6+) using the package manager. Use the package manager search facility to find options.\n- Install any other software development tools you want using the package manager.\n- If necessary add your package manager installation directory to the system PATH environment variable so installed programs can/will be found.\n\nThese tools can usually be downloaded in source form and compiled however this should only be necessary if you have an unusual setup.\nDon't be tempted by web sites that claim easy one step package installs, install a package manager. Package managers are far superior in almost every way.\n\n### 2. Set up a python virtual environment [optional]\n\nIt's recommended to use a python virtual environment (e.g. [`venv`](https://docs.python.org/3/library/venv.html), [`virtualenv`](https://virtualenv.pypa.io/en/latest/), [`mamba`](https://mamba.readthedocs.io/en/latest/) or [`conda`](https://docs.conda.io/en/latest/)) so that ANU-Inversion-Course doesn't conflict with your other Python projects. \n\nOpen a terminal (or a Cygwin shell for Windows users) and refer to the cheat sheet below for how to create, activate, exit and remove a virtual environment. `$ ` is the system prompt.\n\n<details>\n  <summary>venv</summary>\n\n  Ensure you have and are using *python >= 3.6*. It may not be called `python` but something like `python3`, `python3.10` etc.\n\n  Use the first two lines below to create and activate the new virtual environment. The other lines are for your\n  future reference.\n\n  ```console\n  $ python -m venv <path-to-new-env>/inversion_course           # to create\n  $ source <path-to-new-env>/inversion_course/bin/activate      # to activate\n  $ deactivate                                                  # to exit\n  $ rm -rf <path-to-new-env>/inversion_course                   # to remove\n  ```\n  \n</details>\n\n<details>\n  <summary>virtualenv</summary>\n\n  Use the first two lines below to create and activate the new virtual environment. The other lines are for your\n  future reference.\n\n  ```console\n  $ virtualenv <path-to-new-env>/inversion_course -p=3.10       # to create\n  $ source <path-to-new-env>/inversion_course/bin/activate      # to activate\n  $ deactivate                                                  # to exit\n  $ rm -rf <path-to-new-env>/inversion_course                   # to remove\n  ```\n\n</details>\n\n<details>\n  <summary>mamba</summary>\n\n  Use the first two lines below to create and activate the new virtual environment. The other lines are for your\n  future reference.\n\n  ```console\n  $ mamba create -n inversion_course python=3.10                # to create\n  $ mamba activate inversion_course                             # to activate\n  $ mamba deactivate                                            # to exit\n  $ mamba env remove -n inversion_course                        # to remove\n  ```\n\n</details>\n\n<details>\n  <summary>conda</summary>\n\n  Use the first two lines below to create and activate the new virtual environment. The other lines are for your\n  future reference.\n\n  ```console\n  $ conda create -n inversion_course python=3.10                # to create\n  $ conda activate inversion_course                             # to activate\n  $ conda deactivate                                            # to exit\n  $ conda env remove -n inversion_course                        # to remove\n  ```\n\n</details>\n\n\n### 3. Installation\n\nType the following in your terminal (or Cygwin shell for Windows users):\n\n```console\n$ pip install jupyterlab matplotlib anu-inversion-course\n```\n\n### 4. Check\nAnd when you run `jupyter-lab` to do the practicals, make sure you are in the same environment as where your `anu-inversion-course` was installed. You can try to test this by checking if the following commands give you similar result:\n\n```console\n$ which pip\n<some-path>/bin/pip\n$ which jupyter-lab\n<same-path>/bin/jupyter-lab\n$ pip list | grep ANU-inversion-course\nANU-inversion-course               0.1.0\n```\n\n## Troubleshooting\n\nIf you find problems *importing* `anu_inversion_course.rf`, try to search for the error message you get. [Here](https://stackoverflow.com/questions/58793399/importerror-library-not-loaded-for-f2py) contains a nice explanation for one possible cause. And here is how to locate `libgfortran`:\n```console\ngfortran --print-file-name libgfortran.5.dylib # macOS\n```\n\n## Developer Notes\n\nCheck out [NOTES.md](NOTES.md) if you'd like to contribute to this package.\n\n1. [Getting started](NOTES.md#getting-started)\n2. [Cheatsheet](NOTES.md#cheatsheet)\n   1. [conda environment](NOTES.md#conda-environment)\n   2. [git operations](NOTES.md#git-operations)\n   3. [package development](NOTES.md#package-development)\n   4. [package metadata](NOTES.md#package-metadata)\n   5. [package building test & release](NOTES.md#package-building-test--release)\n3. [Adding C/C++ extensions](NOTES.md#adding-cc-extensions)\n4. [Adding Fortran extensions](NOTES.md#adding-fortran-extensions)\n5. [More references](NOTES.md#more-references)\n6. [Appendix - semantic versioning](NOTES.md#appendix-i---sementic-versioning)\n7. [Additional Notes about gfortran](NOTES.md#additional-notes-about-gfortran)\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "ANU Inversion Course Package",
    "version": "0.1.1",
    "project_urls": null,
    "split_keywords": [
        "inversion",
        "inference",
        "geoscience",
        "geophysics"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "570c5b9e9a6252fbf08696e71e0ef3dd4f4d6e996b24ffd2a86e34e221a5c179",
                "md5": "f15087f4d8d4ac14765eaf2bb5499523",
                "sha256": "353713959cfda4d5174797d96998e443df44528f936051706bcaa7e08b416850"
            },
            "downloads": -1,
            "filename": "ANU_inversion_course-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f15087f4d8d4ac14765eaf2bb5499523",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 1393309,
            "upload_time": "2024-02-16T04:10:28",
            "upload_time_iso_8601": "2024-02-16T04:10:28.973819Z",
            "url": "https://files.pythonhosted.org/packages/57/0c/5b9e9a6252fbf08696e71e0ef3dd4f4d6e996b24ffd2a86e34e221a5c179/ANU_inversion_course-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0c0ab0436ba7b48da7359491799abafbe286a184e66808a6992d5a17011a94f",
                "md5": "5b29988003036d50a1ec5ddd6fc7b199",
                "sha256": "fbd594521da4ae02df65867ab1ca9e702dad6ff5fc65a1e288641d1e70a32731"
            },
            "downloads": -1,
            "filename": "ANU_inversion_course-0.1.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5b29988003036d50a1ec5ddd6fc7b199",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 180425,
            "upload_time": "2024-02-16T04:10:31",
            "upload_time_iso_8601": "2024-02-16T04:10:31.251419Z",
            "url": "https://files.pythonhosted.org/packages/c0/c0/ab0436ba7b48da7359491799abafbe286a184e66808a6992d5a17011a94f/ANU_inversion_course-0.1.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57748694b47f25bd7b5fa815deffd65889673f040dfdcb37bec25aaa28b3c942",
                "md5": "55dcc3f5df78f52bb016c0863c032bda",
                "sha256": "5e37f65fd5030716df021da75fa1851091a7810c18bbc2baed17dfc1ffeef914"
            },
            "downloads": -1,
            "filename": "ANU_inversion_course-0.1.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "55dcc3f5df78f52bb016c0863c032bda",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 1380587,
            "upload_time": "2024-02-16T04:10:33",
            "upload_time_iso_8601": "2024-02-16T04:10:33.457781Z",
            "url": "https://files.pythonhosted.org/packages/57/74/8694b47f25bd7b5fa815deffd65889673f040dfdcb37bec25aaa28b3c942/ANU_inversion_course-0.1.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de73c6f0689933349d32d814afb3fbb704b8c925f073699406f064c27ae9302d",
                "md5": "50ea44a7ff860ddc4ff1e15f13c3a8a3",
                "sha256": "9a56cffd839484638969cd1225b727b79645d511ca5f8a0a07f85f50b1eae93e"
            },
            "downloads": -1,
            "filename": "ANU_inversion_course-0.1.1-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "50ea44a7ff860ddc4ff1e15f13c3a8a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 180486,
            "upload_time": "2024-02-16T04:10:34",
            "upload_time_iso_8601": "2024-02-16T04:10:34.889669Z",
            "url": "https://files.pythonhosted.org/packages/de/73/c6f0689933349d32d814afb3fbb704b8c925f073699406f064c27ae9302d/ANU_inversion_course-0.1.1-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c5642853fedacb8d53b4e2186aa69843f039eab3c3600cc411032ac885ade9c3",
                "md5": "14115d8863c4439d3d5f3581a1d20e2c",
                "sha256": "e3689373c49a3ce2e202d7d0ae39f2c9b4208810d38ec711af2b2edbb6e5bc01"
            },
            "downloads": -1,
            "filename": "ANU_inversion_course-0.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "14115d8863c4439d3d5f3581a1d20e2c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 1387845,
            "upload_time": "2024-02-16T04:10:36",
            "upload_time_iso_8601": "2024-02-16T04:10:36.771599Z",
            "url": "https://files.pythonhosted.org/packages/c5/64/2853fedacb8d53b4e2186aa69843f039eab3c3600cc411032ac885ade9c3/ANU_inversion_course-0.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a265f035d8c2513db56411feff4da81eac9ed8bc8518c984f8527a3d454c86b9",
                "md5": "366785d725d661a6d9abe0d2419ead5c",
                "sha256": "4456596c9cca2678edba2b3882698f82dc6bfebafcef80dcaca6aa689b7ff91d"
            },
            "downloads": -1,
            "filename": "ANU_inversion_course-0.1.1-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "366785d725d661a6d9abe0d2419ead5c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 179775,
            "upload_time": "2024-02-16T04:10:38",
            "upload_time_iso_8601": "2024-02-16T04:10:38.676941Z",
            "url": "https://files.pythonhosted.org/packages/a2/65/f035d8c2513db56411feff4da81eac9ed8bc8518c984f8527a3d454c86b9/ANU_inversion_course-0.1.1-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6715fd5ccc112ce3df2780fbca2c4616ddaa652929ad666e22bb06815faa7cc0",
                "md5": "4bb748e5ee4fcd0efd69ace0117d7424",
                "sha256": "bddad33fafec313848e287c6abb26a6a0433249a59dd7144bbee90a093fd6703"
            },
            "downloads": -1,
            "filename": "ANU_inversion_course-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4bb748e5ee4fcd0efd69ace0117d7424",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 1392268,
            "upload_time": "2024-02-16T04:10:40",
            "upload_time_iso_8601": "2024-02-16T04:10:40.478002Z",
            "url": "https://files.pythonhosted.org/packages/67/15/fd5ccc112ce3df2780fbca2c4616ddaa652929ad666e22bb06815faa7cc0/ANU_inversion_course-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5ae134924af6933a483ecbaaaf6380bb1cafed38fcef8689b2ef53d158ccbf62",
                "md5": "e61c489a5725b94112d376ada260fc12",
                "sha256": "91a23089ec03d1a397703ce1b0439d801c56940f7ce247f434b220c58f49b8bb"
            },
            "downloads": -1,
            "filename": "ANU_inversion_course-0.1.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e61c489a5725b94112d376ada260fc12",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 180169,
            "upload_time": "2024-02-16T04:10:42",
            "upload_time_iso_8601": "2024-02-16T04:10:42.028625Z",
            "url": "https://files.pythonhosted.org/packages/5a/e1/34924af6933a483ecbaaaf6380bb1cafed38fcef8689b2ef53d158ccbf62/ANU_inversion_course-0.1.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6bcba265d611c51b327b396049c1de824269698fb8405666d6d50457ec2d5b6e",
                "md5": "e16cab6436cae9990f6531f0d797ac06",
                "sha256": "2825f519696c29aa32fbe5a574cc85027077b0c733ed23b73899580d5791e928"
            },
            "downloads": -1,
            "filename": "ANU_inversion_course-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e16cab6436cae9990f6531f0d797ac06",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 1392378,
            "upload_time": "2024-02-16T04:10:43",
            "upload_time_iso_8601": "2024-02-16T04:10:43.791568Z",
            "url": "https://files.pythonhosted.org/packages/6b/cb/a265d611c51b327b396049c1de824269698fb8405666d6d50457ec2d5b6e/ANU_inversion_course-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55debb0a36b192332cd69f3f1874ba8b5a0c4fba56f7812b207fb66f53e2009c",
                "md5": "6094c0fe3306f5d871118611055f6d5e",
                "sha256": "7f36adff6e25fa6672d4fcd27ca033946e68c6d7ea0eef81e47a4644cb2ece6a"
            },
            "downloads": -1,
            "filename": "ANU_inversion_course-0.1.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6094c0fe3306f5d871118611055f6d5e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 180480,
            "upload_time": "2024-02-16T04:10:45",
            "upload_time_iso_8601": "2024-02-16T04:10:45.645707Z",
            "url": "https://files.pythonhosted.org/packages/55/de/bb0a36b192332cd69f3f1874ba8b5a0c4fba56f7812b207fb66f53e2009c/ANU_inversion_course-0.1.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a804909d3edc449b9388db671b71061604b4edb8cd01c8d5ad2b3a47ac4e79ab",
                "md5": "56d064eb2db9280329df3dcb99b5453c",
                "sha256": "716650456eb49923b5dd5af455d0809d956beadd3c7b5493a75bb9bcb8795829"
            },
            "downloads": -1,
            "filename": "ANU_inversion_course-0.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "56d064eb2db9280329df3dcb99b5453c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 1510183,
            "upload_time": "2024-02-16T04:10:46",
            "upload_time_iso_8601": "2024-02-16T04:10:46.966401Z",
            "url": "https://files.pythonhosted.org/packages/a8/04/909d3edc449b9388db671b71061604b4edb8cd01c8d5ad2b3a47ac4e79ab/ANU_inversion_course-0.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-16 04:10:46",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "anu-inversion-course"
}
        
Elapsed time: 0.20036s