heaserver-storage


Nameheaserver-storage JSON
Version 1.0.0 PyPI version JSON
download
home_pagehttps://risr.hci.utah.edu
Summarya service manages storage information details
upload_time2023-12-18 21:40:28
maintainer
docs_urlNone
authorResearch Informatics Shared Resource, Huntsman Cancer Institute, Salt Lake City, UT
requires_python>=3.10
license
keywords heaserver-storage microservice healthcare cancer research informatics
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # HEA Server AWS Storage Microservice
[Research Informatics Shared Resource](https://risr.hci.utah.edu), [Huntsman Cancer Institute](https://hci.utah.edu),
Salt Lake City, UT

The HEA Server AWS Storage Microservice is a service manages AWS storage information details.

## Version 1
Initial release.

## Runtime requirements
* Python 3.10 or 3.11.

## Development environment

### Build requirements
* Any development environment is fine.
* On Windows, you also will need:
    * Build Tools for Visual Studio 2019, found at https://visualstudio.microsoft.com/downloads/. Select the C++ tools.
    * git, found at https://git-scm.com/download/win.
* On Mac, Xcode or the command line developer tools is required, found in the Apple Store app.
* Python 3.10 or 3.11: Download and install Python 3.10 from https://www.python.org, and select the options to install
for all users and add Python to your environment variables. The install for all users option will help keep you from
accidentally installing packages into your Python installation's site-packages directory instead of to your virtualenv
environment, described below.
* Create a virtualenv environment using the `python -m venv <venv_directory>` command, substituting `<venv_directory>`
with the directory name of your virtual environment. Run `source <venv_directory>/bin/activate` (or `<venv_directory>/Scripts/activate` on Windows) to activate the virtual
environment. You will need to activate the virtualenv every time before starting work, or your IDE may be able to do
this for you automatically. **Note that PyCharm will do this for you, but you have to create a new Terminal panel
after you newly configure a project with your virtualenv.**
* From the project's root directory, and using the activated virtualenv, run `pip install wheel` followed by
  `pip install -r requirements_dev.txt`. **Do NOT run `python setup.py develop`. It will break your environment.**

### Running tests
Run tests with the `pytest` command from the project root directory. To improve performance, run tests in multiple
processes with `pytest -n auto`.

### Running integration tests
* Install Docker
* On Windows, install pywin32 version >= 223 from https://github.com/mhammond/pywin32/releases. In your venv, make sure that
`include-system-site-packages` is set to `true`.

### Trying out the APIs
This microservice has Swagger3/OpenAPI support so that you can quickly test the APIs in a web browser. Do the following:
* Install Docker, if it is not installed already.
* Run the `run-swaggerui.py` file in your terminal. This file contains some test objects that are loaded into a MongoDB
  Docker container.
* Go to `http://127.0.0.1:8080/docs` in your web browser.

Once `run-swaggerui.py` is running, you can also access the APIs via `curl` or other tool. For example, in Windows
PowerShell, execute:
```
Invoke-RestMethod -Uri http://localhost:8080/storage/ -Method GET -Headers @{'accept' = 'application/json'}`
```
In MacOS or Linux, the equivalent command is:
```
curl -X GET http://localhost:8080/storage/ -H 'accept: application/json'
```

### Packaging and releasing this project
See the [RELEASING.md](RELEASING.md) file for details.

            

Raw data

            {
    "_id": null,
    "home_page": "https://risr.hci.utah.edu",
    "name": "heaserver-storage",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": "",
    "keywords": "heaserver-storage,microservice,healthcare,cancer,research,informatics",
    "author": "Research Informatics Shared Resource, Huntsman Cancer Institute, Salt Lake City, UT",
    "author_email": "Andrew.Post@hci.utah.edu",
    "download_url": "https://files.pythonhosted.org/packages/c6/ef/1789f8237791f0d0a5dce9e62cc664b8bb1d43f1fe92bf9a29790606408a/heaserver-storage-1.0.0.tar.gz",
    "platform": null,
    "description": "# HEA Server AWS Storage Microservice\r\n[Research Informatics Shared Resource](https://risr.hci.utah.edu), [Huntsman Cancer Institute](https://hci.utah.edu),\r\nSalt Lake City, UT\r\n\r\nThe HEA Server AWS Storage Microservice is a service manages AWS storage information details.\r\n\r\n## Version 1\r\nInitial release.\r\n\r\n## Runtime requirements\r\n* Python 3.10 or 3.11.\r\n\r\n## Development environment\r\n\r\n### Build requirements\r\n* Any development environment is fine.\r\n* On Windows, you also will need:\r\n    * Build Tools for Visual Studio 2019, found at https://visualstudio.microsoft.com/downloads/. Select the C++ tools.\r\n    * git, found at https://git-scm.com/download/win.\r\n* On Mac, Xcode or the command line developer tools is required, found in the Apple Store app.\r\n* Python 3.10 or 3.11: Download and install Python 3.10 from https://www.python.org, and select the options to install\r\nfor all users and add Python to your environment variables. The install for all users option will help keep you from\r\naccidentally installing packages into your Python installation's site-packages directory instead of to your virtualenv\r\nenvironment, described below.\r\n* Create a virtualenv environment using the `python -m venv <venv_directory>` command, substituting `<venv_directory>`\r\nwith the directory name of your virtual environment. Run `source <venv_directory>/bin/activate` (or `<venv_directory>/Scripts/activate` on Windows) to activate the virtual\r\nenvironment. You will need to activate the virtualenv every time before starting work, or your IDE may be able to do\r\nthis for you automatically. **Note that PyCharm will do this for you, but you have to create a new Terminal panel\r\nafter you newly configure a project with your virtualenv.**\r\n* From the project's root directory, and using the activated virtualenv, run `pip install wheel` followed by\r\n  `pip install -r requirements_dev.txt`. **Do NOT run `python setup.py develop`. It will break your environment.**\r\n\r\n### Running tests\r\nRun tests with the `pytest` command from the project root directory. To improve performance, run tests in multiple\r\nprocesses with `pytest -n auto`.\r\n\r\n### Running integration tests\r\n* Install Docker\r\n* On Windows, install pywin32 version >= 223 from https://github.com/mhammond/pywin32/releases. In your venv, make sure that\r\n`include-system-site-packages` is set to `true`.\r\n\r\n### Trying out the APIs\r\nThis microservice has Swagger3/OpenAPI support so that you can quickly test the APIs in a web browser. Do the following:\r\n* Install Docker, if it is not installed already.\r\n* Run the `run-swaggerui.py` file in your terminal. This file contains some test objects that are loaded into a MongoDB\r\n  Docker container.\r\n* Go to `http://127.0.0.1:8080/docs` in your web browser.\r\n\r\nOnce `run-swaggerui.py` is running, you can also access the APIs via `curl` or other tool. For example, in Windows\r\nPowerShell, execute:\r\n```\r\nInvoke-RestMethod -Uri http://localhost:8080/storage/ -Method GET -Headers @{'accept' = 'application/json'}`\r\n```\r\nIn MacOS or Linux, the equivalent command is:\r\n```\r\ncurl -X GET http://localhost:8080/storage/ -H 'accept: application/json'\r\n```\r\n\r\n### Packaging and releasing this project\r\nSee the [RELEASING.md](RELEASING.md) file for details.\r\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "a service manages storage information details",
    "version": "1.0.0",
    "project_urls": {
        "Homepage": "https://risr.hci.utah.edu"
    },
    "split_keywords": [
        "heaserver-storage",
        "microservice",
        "healthcare",
        "cancer",
        "research",
        "informatics"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a8ef1fb884fb91b916a04c62bf0223da5aca56c7d1f0aa35953f29739eaf2e7b",
                "md5": "33285fe294a2727a2def0d1b8816ef25",
                "sha256": "241df9e562d017425de0ee8b2ad5af685ea09e6fe845d7bb460ca097b752d155"
            },
            "downloads": -1,
            "filename": "heaserver_storage-1.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "33285fe294a2727a2def0d1b8816ef25",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 11127,
            "upload_time": "2023-12-18T21:40:17",
            "upload_time_iso_8601": "2023-12-18T21:40:17.321067Z",
            "url": "https://files.pythonhosted.org/packages/a8/ef/1fb884fb91b916a04c62bf0223da5aca56c7d1f0aa35953f29739eaf2e7b/heaserver_storage-1.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c6ef1789f8237791f0d0a5dce9e62cc664b8bb1d43f1fe92bf9a29790606408a",
                "md5": "ad329582ac03c924980b7223a4dd01ac",
                "sha256": "87f3b28ce5246162e57ccb87c85437a2a950121c0ee9ea319e4aa7b10aea29fe"
            },
            "downloads": -1,
            "filename": "heaserver-storage-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "ad329582ac03c924980b7223a4dd01ac",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 18397304,
            "upload_time": "2023-12-18T21:40:28",
            "upload_time_iso_8601": "2023-12-18T21:40:28.606072Z",
            "url": "https://files.pythonhosted.org/packages/c6/ef/1789f8237791f0d0a5dce9e62cc664b8bb1d43f1fe92bf9a29790606408a/heaserver-storage-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-18 21:40:28",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "heaserver-storage"
}
        
Elapsed time: 0.17649s