We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Basically the title. I have a python web app and would like to limit my request times by limiting how long the client tries to connect to the tv.
Thank you for your work on this library!
The text was updated successfully, but these errors were encountered:
From looking at ws4py's source, it should be fairly straightforward:
[UNTESTED CODE]
client = WebOSClient.discover()[0] # Use discover(secure=True) for newer models. client.sock.settimeout(5) # 5 seconds timeout. client.connect()
Can you please verify if this works? If so, I'll add an option to the connect method to support timeout.
Sorry, something went wrong.
No branches or pull requests
Basically the title. I have a python web app and would like to limit my request times by limiting how long the client tries to connect to the tv.
Thank you for your work on this library!
The text was updated successfully, but these errors were encountered: