Byu-ws-sdk

Latest version: v0.10.0

Safety actively analyzes 613600 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

0.10.0

This release fixes two long-standing bugs.
1. Nonce encoding bug (an unfortunate oversite that has been in a code a long time, but surprizingly easy to fix).
2. Python3 bytes versus strings base64 encoded hmac bug that made python3 not work at all. Harder to fix, but done.

There is one backwards incompatible change.

The 4th positional parameter to send_ws_request used to be the headers to pass, but we made it more flexible and now you can pass any named parameter straight through to requests using this method. The downside is if you used headers as a positional parameter instead of a named one that won't work anymore. The fix is to change this:

python
send_ws_request(url, httpMethod, requestBody, headers)


to this

python
send_ws_request(url, httpMethod, requestBody, headers=headers)
and optionally add any other request.[get|put|post|delete] named arguments you want

Links

Releases

Has known vulnerabilities

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.