Go to file
Sergei Maertens 382707436f Refs. #151 -- detect binary payloads and send the correct opcode
On Python 2, strings are bytestrings either way. On Python 3, the
result of `chr(channel)` is `str`, while the data itself is
`bytes`. The channel prefix needs to be turned into a binary type,
and the websocket frame needs the correct opcode (binary vs. text).

See #151 for the bug report and related issues.
2019-08-14 11:29:03 +02:00
config parse microseconds 2019-08-01 21:49:32 +01:00
dynamic Add boilerplate 2019-08-09 21:38:40 -04:00
hack Update pycodestyle 2019-02-08 02:46:07 +05:30
stream Refs. #151 -- detect binary payloads and send the correct opcode 2019-08-14 11:29:03 +02:00
watch Don't use break inside finally. 2019-02-20 23:56:38 -08:00
.gitignore Ignore IDE files 2017-06-09 13:22:07 -07:00
.travis.yml Remove sudo for Travis CI 2019-07-30 17:11:45 -04:00
code-of-conduct.md Add code-of-conduct.md 2017-12-20 14:15:28 -05:00
CONTRIBUTING.md Add CONTRIBUTING.md 2018-07-19 11:31:27 +05:30
LICENSE Initial commit 2017-04-19 16:12:18 -07:00
OWNERS Updated OWNERS to include link to docs 2019-02-04 19:01:16 +01:00
README.md Remove link to kubernetes-client/community 2018-08-23 10:51:03 -07:00
run_tox.sh Verify Boilerplate fix 2018-12-05 22:22:59 +05:30
SECURITY_CONTACTS Add SECURITY_CONTACTS 2018-07-10 16:13:56 -07:00
tox.ini Drop Python3.4 2019-04-05 21:21:04 +02:00

python-base

Build Status

This is the utility part of the python client. It has been added to the main repo using git submodules. This structure allow other developers to create their own kubernetes client and still use standard kubernetes python utilities. For more information refer to clients-library-structure.

Contributing

Please see CONTRIBUTING.md for instructions on how to contribute.