We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c94f553 commit 65105abCopy full SHA for 65105ab
pythonforandroid/recipes/websocket-client/__init__.py
@@ -5,6 +5,12 @@
5
# copy the 'websocket' directory into your app directory to force inclusion.
6
#
7
# see my example at https://github.com/debauchery1st/example_kivy_websocket-recipe
8
+#
9
+# If you see errors relating to 'SSL not available' ensure you have the package backports.ssl-match-hostname
10
+# in the buildozer requirements, since Kivy targets python 2.7.x
11
12
+# You may also need sslopt={"cert_reqs": ssl.CERT_NONE} as a parameter to ws.run_forever() if you get an error relating to
13
+# host verification
14
15
16
class WebSocketClient(Recipe):
0 commit comments