summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Remove hack disconnect check, add mutex to recv_frameJaakko Kukkohovi2017-03-271-0/+4
| | |
* | | Merge pull request #307 from attzonko/patch-1liris2017-06-181-3/+6
|\ \ \ | | | | | | | | Support WEBSOCKET_CLIENT_CA_BUNDLE being directory
| * | | Support WEBSOCKET_CLIENT_CA_BUNDLE being directoryAlex Tzonkov2017-03-231-3/+6
| | |/ | |/| | | | This PR adds the capability to use a directory with multiple certs to do ssl cert verification. Similar to how the requests module uses REQUESTS_CA_BUNDLE.
* | | Merge pull request #304 from underyx/patch-1liris2017-06-181-1/+1
|\ \ \ | | | | | | | | Fix insecure_pythons list in setup.py
| * | | Fix insecure_pythons list in setup.pyBence Nagy2017-03-091-1/+1
| |/ / | | | | | | | | | | | | Before this it generated: '2.4, 2.5, 2.62.7.0, 2.7.1, …'
* | | Merge pull request #303 from jwilk-forks/spellingliris2017-06-181-1/+1
|\ \ \ | | | | | | | | Fix typo
| * | | Fix typoJakub Wilk2017-02-271-1/+1
| |/ /
* | | Merge pull request #298 from eendebakpt/masterliris2017-06-181-8/+8
|\ \ \ | | | | | | | | make examples in README.rst python3 compatible
| * | | make examples in README.rst python3 compatiblePieter2017-02-011-8/+8
| |/ /
* | | Merge pull request #301 from lujinda/masterliris2017-06-181-1/+0
|\ \ \ | | | | | | | | fix: when using pppoe redial will block.
| * | | fix: when using pppoe redial will block.疯狂的小企鹅2016-08-011-1/+0
| | | |
* | | | Merge pull request #292 from tifayuki/masterliris2017-06-184-2/+159
|\ \ \ \ | |_|/ / |/| | | Implement simple cookie jar
| * | | Implement simple cookie jartifayuki2016-12-214-2/+159
| | | |
* | | | change log for #294liris2017-01-191-0/+1
| | | |
* | | | Merge pull request #295 from bytesofmyself/masterliris2017-01-191-1/+1
|\ \ \ \ | | | | | | | | | | add warning() to _logging.__all__ to resolve _send_ping issue
| * | | | add warning() to _logging.__all__ to resolve _send_ping issueMatt2017-01-171-1/+1
| |/ / /
* | | | move repository to https://github.com/websocket-client/websocket-client.gitliris2017-01-193-3/+7
| | | |
* | | | Update README.rstliris2017-01-191-1/+1
| | | |
* | | | Update README.rstliris2017-01-191-0/+2
|/ / /
* | | update document and set version to 0.40!v0.40.0liris2016-12-093-2/+5
| | | | | | | | | | | | !
* | | Merge pull request #286 from chao787/masterliris2016-12-091-1/+1
|\ \ \ | | | | | | | | Fix opcode -> op_code
| * | | Fix opcode -> op_codeRichard Wong2016-12-071-1/+1
|/ / /
* | | fix classifierv0.39.0liris2016-12-021-1/+1
| | |
* | | fixed #264liris2016-12-023-2/+3
| | |
* | | update license file. fixed #282liris2016-12-021-90/+160
| | |
* | | Merge branch 'master' of https://github.com/liris/websocket-clientliris2016-12-024-2/+13
|\ \ \
| * \ \ Merge pull request #279 from ifarkas/ca_bundleliris2016-12-021-2/+5
| |\ \ \ | | | | | | | | | | Support CA bundle specified by environment variable
| | * | | Support CA bundle specified by environment variableImre Farkas2016-11-151-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There's currently no way to define a custom list of trusted CAs and certain uses-cases end up in SSLError. This commit adds a check for the WEBSOCKET_CLIENT_CA_BUNDLE env variable, similarly to requests library which accepts REQUETS_CA_BUNDLE.
| * | | | Merge pull request #277 from graingert/patch-2liris2016-12-021-0/+1
| |\ \ \ \ | | | | | | | | | | | | Enable travis on python 3.5
| | * | | | Enable travis on python 3.5Thomas Grainger2016-10-281-0/+1
| | |/ / /
| * | | | Merge pull request #275 from graingert/fix-readmeliris2016-12-022-0/+4
| |\ \ \ \ | | | | | | | | | | | | fix README for PyPI
| | * | | | fix README for PyPIThomas Grainger2016-10-282-0/+4
| | |/ / /
| * | | | Merge pull request #273 from jbwdevries/implement_close_code_1014liris2016-12-021-0/+3
| |\ \ \ \ | | | | | | | | | | | | Implemented close code 1014
| | * | | | Implemented close code 1014Johan de Vries2016-10-101-0/+3
| | |/ / /
* | | | | document updateliris2016-12-021-0/+3
|/ / / /
* | | | Merge pull request #272 from vrtsystems/bugfix/fix-setup-logging-nameerrorliris2016-12-021-0/+1
|\ \ \ \ | |/ / / |/| | | setup.py: Import `logging` before calling it.
| * | | setup.py: Import `logging` before calling it.Stuart Longland2016-10-071-0/+1
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Commit 4dcd960427716289fb3446600a13634215f8d3c6 introduces an exception handling branch that uses the `logging` module to report an exception to the user, but fails to import the `logging` module first. This generated the following error in our CI environment: 03-Oct-2016 17:20:51 + python setup.py --command-package stdeb.command sdist_dsc --package python-websocket --source websocket 03-Oct-2016 17:20:51 Traceback (most recent call last): 03-Oct-2016 17:20:51 File "setup.py", line 29, in <module> 03-Oct-2016 17:20:51 logging.getLogger(__name__).exception( 03-Oct-2016 17:20:51 NameError: name 'logging' is not defined This puts an `import` statement at the location where the `logging` module is called.
* | | cannot use long literal on python3liris2016-10-061-1/+1
| | |
* | | Pass headers for websocket handshake #271!liris2016-10-061-0/+1
| | |
* | | Merge pull request #271 from oleynikandrey/pass_headers_to_wsdebugliris2016-10-061-0/+4
|\ \ \ | | | | | | | | Pass headers for websocket handshake
| * | | Pass headers for websocket handshakeAndrey Oleynik2016-10-051-0/+4
|/ / /
* | | fixed #261 Incorrect encoding in continued messages python3liris2016-10-032-1/+2
| | |
* | | update document, versionliris2016-10-031-0/+7
| | |
* | | update document, versionliris2016-10-032-2/+2
| | |
* | | Merge pull request #270 from cmiacz/no_proxy_subnetliris2016-10-032-3/+39
|\ \ \ | | | | | | | | _url: Added subnet IP address matching in no_proxy host detection
| * | | _url: Added subnet IP address matching in no_proxy host detectionMiacz2016-09-202-3/+39
| |/ /
* | | Merge pull request #267 from graingert/patch-1liris2016-10-032-6/+29
|\ \ \ | | | | | | | | Support universal wheels
| * | | Add wheel configThomas Grainger2016-09-071-0/+2
| | | |
| * | | Support universal wheelsThomas Grainger2016-09-071-6/+27
| |/ /
* | | Merge pull request #265 from drew-gross/patch-1liris2016-10-031-2/+2
|\ \ \ | | | | | | | | Allow closing WebSocketApp with status/reason/timeout