# 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.0.3
* Fixed coroutine not awaited error.
## Version 1.0.2
* Avoid timeouts loading storage stats, which sporadically caused them not to be returned.
* Return storage objects with read-only permissions.
## Version 1.0.1
* Resume retrieving usage summary if the user's previous attempt is still in progress.
* Return permissions information for storage items.
## 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": null,
"docs_url": null,
"requires_python": ">=3.10",
"maintainer_email": null,
"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/1b/15/adf367a4eb27c435aa4feeb3797913a109a74e6b7f354d0655d0d399e930/heaserver_storage-1.0.3.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.0.3\r\n* Fixed coroutine not awaited error.\r\n\r\n## Version 1.0.2\r\n* Avoid timeouts loading storage stats, which sporadically caused them not to be returned.\r\n* Return storage objects with read-only permissions.\r\n\r\n## Version 1.0.1\r\n* Resume retrieving usage summary if the user's previous attempt is still in progress.\r\n* Return permissions information for storage items.\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": null,
"summary": "a service manages storage information details",
"version": "1.0.3",
"project_urls": {
"Homepage": "https://risr.hci.utah.edu"
},
"split_keywords": [
"heaserver-storage",
" microservice",
" healthcare",
" cancer",
" research",
" informatics"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "4d7ddb4ce17a4c77f39833c82c5dccf2671c6bb72f1841866853fe746532b0f4",
"md5": "348a38ee6761b6c06522a706da5a12ad",
"sha256": "5c32927965e374e091ff4b77aac788a990a97d4553661d87784c211241f93260"
},
"downloads": -1,
"filename": "heaserver_storage-1.0.3-py3-none-any.whl",
"has_sig": false,
"md5_digest": "348a38ee6761b6c06522a706da5a12ad",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.10",
"size": 11530,
"upload_time": "2024-08-01T19:44:24",
"upload_time_iso_8601": "2024-08-01T19:44:24.561562Z",
"url": "https://files.pythonhosted.org/packages/4d/7d/db4ce17a4c77f39833c82c5dccf2671c6bb72f1841866853fe746532b0f4/heaserver_storage-1.0.3-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1b15adf367a4eb27c435aa4feeb3797913a109a74e6b7f354d0655d0d399e930",
"md5": "9d846e6ac4f1017e91476395bf88a346",
"sha256": "bc71149f88fbe9e744d81f7208d227beacba2577c5c2da51887a32be7f62879e"
},
"downloads": -1,
"filename": "heaserver_storage-1.0.3.tar.gz",
"has_sig": false,
"md5_digest": "9d846e6ac4f1017e91476395bf88a346",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.10",
"size": 18398481,
"upload_time": "2024-08-01T19:44:33",
"upload_time_iso_8601": "2024-08-01T19:44:33.957611Z",
"url": "https://files.pythonhosted.org/packages/1b/15/adf367a4eb27c435aa4feeb3797913a109a74e6b7f354d0655d0d399e930/heaserver_storage-1.0.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-08-01 19:44:33",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "heaserver-storage"
}