dew-gwdata


Namedew-gwdata JSON
Version 0.98 PyPI version JSON
download
home_pagehttp://github.com/dew-waterscience/dew_gwdata
SummaryPython module for accessing groundwater data internally at DEW
upload_time2025-08-08 00:11:06
maintainerNone
docs_urlNone
authorKent Inverarity
requires_pythonNone
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # dew_gwdata

Python module for accessing groundwater data internally at DEW

## Install

The source code is on [Bitbucket](https://bitbucket.org/dewsurfacewater/dew_gwdata), while Python packages (source and binary) are published on
the [Python Package Index](https://pypi.org/project/dew-gwdata/) and 
on a dedicated channel on [Anaconda Cloud](https://anaconda.org/dew-waterscience/repo).

### From PyPI (most recent release)

Run this in Command Prompt to install from PyPI:

```
pip install dew_gwdata
```

To upgrade to the latest version:

```
pip install -U dew_gwdata
```

### From Anaconda 

You can also install using conda/mamba if you prefer:

```
mamba install -c dew-waterscience dew_gwdata
```

To upgrade:

```
mamba upgrade -c dew-waterscience dew_gwdata
```

The version may not be as up-to-date as the PyPI version.

### From Bitbucket

This is how you can install the latest version of the source code directly from Bitbucket (the version control repository):

```
python -m pip install git+https://kinveraritysagov@bitbucket.org/dewsurfacewater/dew_gwdata.git
```

You will need to replace ``kinveraritysagov`` with your Bitbucket username, and you will also need access to the source repository on the Bitbucket dewsurfacewater workspace.

## Usage

Check out complete documentation at:

[http://bunyip:8191/python-docs/dew_gwdata/latest_source/index.html](http://bunyip:8191/python-docs/dew_gwdata/latest_source/index.html)

## Webapp usage

"New" Waterkennect is implemented by the ``dew_gwdata.webapp`` module. To execute the webapp navigate to the folder
containing the source code, i.e. the ``dew_gwdata/webapp`` folder within this repository, and run:

```
uvicorn dew_gwdata.webapp.main:app --port 8191 --host 0.0.0.0 --reload --log-config .\log-config.yaml
```

There is an example logging config file in this folder.

```
(py310) C:\devapps\syski\code\dew_gwdata\dew_gwdata\webapp>uvicorn dew_gwdata.webapp.main:app --port 8191 --host 0.0.0.0 --reload --log-config .\log-config.yaml
INFO:     [29-11-2023 13:39:10] uvicorn.error.serve - Started server process [63528]
INFO:     [29-11-2023 13:39:10] uvicorn.error.startup - Waiting for application startup.
INFO:     [29-11-2023 13:39:10] uvicorn.error.startup - Application startup complete.
DEBUG:    [29-11-2023 13:39:41] dew_gwdata.webapp.models.queries.find_wells - id_types requested: ['unit_no', 'obs_no', 'dh_no']
INFO:     [29-11-2023 13:39:42] 10.55.65.0:58877 - "GET /app/wells_summary?idq=86711&idq_unit_no=1&idq_obs_no=1&idq_dh_no=1&env=prod HTTP/1.1" 200 OK
```


## License

All rights reserved DEW 2023

            

Raw data

            {
    "_id": null,
    "home_page": "http://github.com/dew-waterscience/dew_gwdata",
    "name": "dew-gwdata",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": null,
    "author": "Kent Inverarity",
    "author_email": "kent.inverarity@sa.gov.au",
    "download_url": "https://files.pythonhosted.org/packages/09/45/d99ab153bced80812a74a7ec54f76367dc3b8c01c66ad5b3444defbd3651/dew_gwdata-0.98.tar.gz",
    "platform": null,
    "description": "# dew_gwdata\n\nPython module for accessing groundwater data internally at DEW\n\n## Install\n\nThe source code is on [Bitbucket](https://bitbucket.org/dewsurfacewater/dew_gwdata), while Python packages (source and binary) are published on\nthe [Python Package Index](https://pypi.org/project/dew-gwdata/) and \non a dedicated channel on [Anaconda Cloud](https://anaconda.org/dew-waterscience/repo).\n\n### From PyPI (most recent release)\n\nRun this in Command Prompt to install from PyPI:\n\n```\npip install dew_gwdata\n```\n\nTo upgrade to the latest version:\n\n```\npip install -U dew_gwdata\n```\n\n### From Anaconda \n\nYou can also install using conda/mamba if you prefer:\n\n```\nmamba install -c dew-waterscience dew_gwdata\n```\n\nTo upgrade:\n\n```\nmamba upgrade -c dew-waterscience dew_gwdata\n```\n\nThe version may not be as up-to-date as the PyPI version.\n\n### From Bitbucket\n\nThis is how you can install the latest version of the source code directly from Bitbucket (the version control repository):\n\n```\npython -m pip install git+https://kinveraritysagov@bitbucket.org/dewsurfacewater/dew_gwdata.git\n```\n\nYou will need to replace ``kinveraritysagov`` with your Bitbucket username, and you will also need access to the source repository on the Bitbucket dewsurfacewater workspace.\n\n## Usage\n\nCheck out complete documentation at:\n\n[http://bunyip:8191/python-docs/dew_gwdata/latest_source/index.html](http://bunyip:8191/python-docs/dew_gwdata/latest_source/index.html)\n\n## Webapp usage\n\n\"New\" Waterkennect is implemented by the ``dew_gwdata.webapp`` module. To execute the webapp navigate to the folder\ncontaining the source code, i.e. the ``dew_gwdata/webapp`` folder within this repository, and run:\n\n```\nuvicorn dew_gwdata.webapp.main:app --port 8191 --host 0.0.0.0 --reload --log-config .\\log-config.yaml\n```\n\nThere is an example logging config file in this folder.\n\n```\n(py310) C:\\devapps\\syski\\code\\dew_gwdata\\dew_gwdata\\webapp>uvicorn dew_gwdata.webapp.main:app --port 8191 --host 0.0.0.0 --reload --log-config .\\log-config.yaml\nINFO:     [29-11-2023 13:39:10] uvicorn.error.serve - Started server process [63528]\nINFO:     [29-11-2023 13:39:10] uvicorn.error.startup - Waiting for application startup.\nINFO:     [29-11-2023 13:39:10] uvicorn.error.startup - Application startup complete.\nDEBUG:    [29-11-2023 13:39:41] dew_gwdata.webapp.models.queries.find_wells - id_types requested: ['unit_no', 'obs_no', 'dh_no']\nINFO:     [29-11-2023 13:39:42] 10.55.65.0:58877 - \"GET /app/wells_summary?idq=86711&idq_unit_no=1&idq_obs_no=1&idq_dh_no=1&env=prod HTTP/1.1\" 200 OK\n```\n\n\n## License\n\nAll rights reserved DEW 2023\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Python module for accessing groundwater data internally at DEW",
    "version": "0.98",
    "project_urls": {
        "Homepage": "http://github.com/dew-waterscience/dew_gwdata"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8a79f58700883ab116292df70ff51508caebc596dd8b4ca52bd3aa3516ab37ff",
                "md5": "b40a0b4247846d25a0b1f29d76dbb8cd",
                "sha256": "9241f9bde6397dc5b16e22010b4bf8caf626b1daf1435c84f33aaa9c997f39f7"
            },
            "downloads": -1,
            "filename": "dew_gwdata-0.98-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b40a0b4247846d25a0b1f29d76dbb8cd",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 1453595,
            "upload_time": "2025-08-08T00:11:05",
            "upload_time_iso_8601": "2025-08-08T00:11:05.423056Z",
            "url": "https://files.pythonhosted.org/packages/8a/79/f58700883ab116292df70ff51508caebc596dd8b4ca52bd3aa3516ab37ff/dew_gwdata-0.98-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0945d99ab153bced80812a74a7ec54f76367dc3b8c01c66ad5b3444defbd3651",
                "md5": "b660f6ec7dd8db9a26aae05ac8234864",
                "sha256": "4d02f3d832fc869acfc3a2292aca29d2a0e3715a48927b016b4a9d121101eccf"
            },
            "downloads": -1,
            "filename": "dew_gwdata-0.98.tar.gz",
            "has_sig": false,
            "md5_digest": "b660f6ec7dd8db9a26aae05ac8234864",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 1904863,
            "upload_time": "2025-08-08T00:11:06",
            "upload_time_iso_8601": "2025-08-08T00:11:06.907171Z",
            "url": "https://files.pythonhosted.org/packages/09/45/d99ab153bced80812a74a7ec54f76367dc3b8c01c66ad5b3444defbd3651/dew_gwdata-0.98.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-08 00:11:06",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "dew-waterscience",
    "github_project": "dew_gwdata",
    "github_not_found": true,
    "lcname": "dew-gwdata"
}
        
Elapsed time: 0.43138s