├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── contribution-request.md │ ├── feature-request.md │ └── question.md └── workflows │ └── ci.yml ├── .gitignore ├── .whitesource ├── CLA.md ├── LICENSE ├── README.md ├── ToDo.md ├── examples └── get_detailed_lib_info │ ├── __init__.py │ ├── get_detailed_libs_info.py │ ├── lib_list.json │ └── lib_list_out.json ├── renovate.json ├── requirements.txt ├── requirements_extra.txt ├── setup.py └── ws_sdk ├── TODO.md ├── __init__.py ├── _version.py ├── app.py ├── client.py ├── generator.py ├── tests ├── __init__.py ├── requirements.txt ├── test_app.py ├── test_client.py └── test_ws_utilities.py ├── web.py ├── ws_constants.py ├── ws_errors.py └── ws_utilities.py /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/contribution-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/.github/ISSUE_TEMPLATE/contribution-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/.whitesource -------------------------------------------------------------------------------- /CLA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/CLA.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/README.md -------------------------------------------------------------------------------- /ToDo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/ToDo.md -------------------------------------------------------------------------------- /examples/get_detailed_lib_info/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/get_detailed_lib_info/get_detailed_libs_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/examples/get_detailed_lib_info/get_detailed_libs_info.py -------------------------------------------------------------------------------- /examples/get_detailed_lib_info/lib_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/examples/get_detailed_lib_info/lib_list.json -------------------------------------------------------------------------------- /examples/get_detailed_lib_info/lib_list_out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/examples/get_detailed_lib_info/lib_list_out.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/renovate.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_extra.txt: -------------------------------------------------------------------------------- 1 | spdx-tools[SPDX]~=0.6.1 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/setup.py -------------------------------------------------------------------------------- /ws_sdk/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/ws_sdk/TODO.md -------------------------------------------------------------------------------- /ws_sdk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/ws_sdk/__init__.py -------------------------------------------------------------------------------- /ws_sdk/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/ws_sdk/_version.py -------------------------------------------------------------------------------- /ws_sdk/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/ws_sdk/app.py -------------------------------------------------------------------------------- /ws_sdk/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/ws_sdk/client.py -------------------------------------------------------------------------------- /ws_sdk/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/ws_sdk/generator.py -------------------------------------------------------------------------------- /ws_sdk/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws_sdk/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | mock~=4.0.3 2 | -------------------------------------------------------------------------------- /ws_sdk/tests/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/ws_sdk/tests/test_app.py -------------------------------------------------------------------------------- /ws_sdk/tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/ws_sdk/tests/test_client.py -------------------------------------------------------------------------------- /ws_sdk/tests/test_ws_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/ws_sdk/tests/test_ws_utilities.py -------------------------------------------------------------------------------- /ws_sdk/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/ws_sdk/web.py -------------------------------------------------------------------------------- /ws_sdk/ws_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/ws_sdk/ws_constants.py -------------------------------------------------------------------------------- /ws_sdk/ws_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/ws_sdk/ws_errors.py -------------------------------------------------------------------------------- /ws_sdk/ws_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sdk/HEAD/ws_sdk/ws_utilities.py --------------------------------------------------------------------------------