WS Python SDK
Project description
WhiteSource Python SDK
SDK written in Python to simplify access to WhiteSource resources
The SDK contains the following modules:
- web - Module for accessing WhiteSource Application (reports, administration, etc...).
- client - UA wrapper layer (download UA, execute scan, read UA output files...).
Supported Operating Systems
- Linux (Bash): CentOS, Debian, Ubuntu, RedHat
- Windows (PowerShell): 10, 2012, 2016
How to build and install package from source
- Download the code:
git clone https://github.com/whitesource-ps/ws-sdk.git
. - Build wheel package
python setup.py bdist_wheel
. - Download wheel from GitHub and install :
pip install ws-sdk*.whl
.
How to install package
- Obtain connection details from WS Application (Home > Admin > Integration).
- Install package from Pypi:
pip install ws-sdk
.
Execution
# Web (WhiteSource Application)
from ws_sdk.web import WS
ws = WS(api_url="WS_URL", user_key="USER_KEY", token="ORG_TOKEN")
# Get alerts
all_alerts = ws.get_alerts()
# Get vulnerabilities report in XLSX format
vul_report = ws.get_vulnerability(report=True)
# Get all projects ()
project_list = ws.get_projects()
# Create user in the organization
ws.create_user(name='USER_TEST1', email="USER_TEST1@EMAIL.COM", inviter_email="INVITER@EMAIL.COM")
# Client (WhiteSource Unified Agent)
from ws_sdk.client import WSClient
ws_client = WSClient(api_url="WS_URL", user_key="USER_KEY", token="ORG_TOKEN", ua_path="/UA/WORKING/DIR")
# Download latest UA jar and conf file
ws_client.download_ua()
# Execute scan into defined project token
out = ws_client.scan(scan_dir="/PATH/TO/DIR", project_token="PROJ_TOKEN")
# Read scan artifcat's policy rejection summary
pol_rej = ws_client.get_policy_rejection_summary()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file ws_sdk-0.8.1.2a1-py3-none-any.whl
.
File metadata
- Download URL: ws_sdk-0.8.1.2a1-py3-none-any.whl
- Upload date:
- Size: 40.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8286ea28dc441d70dbe57f358bf8d76123b69145f77a595bf2e23427a1f28d49 |
|
MD5 | 409626bf8c0babd4465abcef2ec1a79a |
|
BLAKE2b-256 | 1f8c4244344810a3416ee8b12d17d5f0c03c8bc277fb71450771ba78f8ca6ab1 |