Simple Python wrapper for making api calls to ServiceNow.
Clone the repo and install dependencies into a local virtual environment.
python3 -m venv .venv
source .venv/bin/activate
pip install --editable .
Export variables for your environment, otherwise the test will prompt you for input.
export SNOW_ENDPOINT="https://example.service-now.com"
export SNOW_API_USERNAME=example
export SNOW_API_PASSWORD=hunter2
pytest