├── .github └── workflows │ └── release.yml ├── .gitignore ├── AUTHORS.md ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── redfishtool.py ├── redfishtoollib ├── AccountService.py ├── Chassis.py ├── Managers.py ├── ServiceRoot.py ├── SessionService.py ├── Systems.py ├── __init__.py ├── raw.py ├── redfishtoolMain.py └── redfishtoolTransport.py ├── requirements.txt ├── scripts ├── redfishtool └── redfishtool.py ├── setup.cfg └── setup.py /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfishtool/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /*/__pycache__ 2 | -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfishtool/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfishtool/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfishtool/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfishtool/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfishtool/HEAD/README.md -------------------------------------------------------------------------------- /redfishtool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfishtool/HEAD/redfishtool.py -------------------------------------------------------------------------------- /redfishtoollib/AccountService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfishtool/HEAD/redfishtoollib/AccountService.py -------------------------------------------------------------------------------- /redfishtoollib/Chassis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfishtool/HEAD/redfishtoollib/Chassis.py -------------------------------------------------------------------------------- /redfishtoollib/Managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfishtool/HEAD/redfishtoollib/Managers.py -------------------------------------------------------------------------------- /redfishtoollib/ServiceRoot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfishtool/HEAD/redfishtoollib/ServiceRoot.py -------------------------------------------------------------------------------- /redfishtoollib/SessionService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfishtool/HEAD/redfishtoollib/SessionService.py -------------------------------------------------------------------------------- /redfishtoollib/Systems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfishtool/HEAD/redfishtoollib/Systems.py -------------------------------------------------------------------------------- /redfishtoollib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfishtool/HEAD/redfishtoollib/__init__.py -------------------------------------------------------------------------------- /redfishtoollib/raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfishtool/HEAD/redfishtoollib/raw.py -------------------------------------------------------------------------------- /redfishtoollib/redfishtoolMain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfishtool/HEAD/redfishtoollib/redfishtoolMain.py -------------------------------------------------------------------------------- /redfishtoollib/redfishtoolTransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfishtool/HEAD/redfishtoollib/redfishtoolTransport.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python-dateutil 2 | requests -------------------------------------------------------------------------------- /scripts/redfishtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfishtool/HEAD/scripts/redfishtool -------------------------------------------------------------------------------- /scripts/redfishtool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfishtool/HEAD/scripts/redfishtool.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfishtool/HEAD/setup.py --------------------------------------------------------------------------------