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
diff --git a/example/monitoring.py b/example/monitoring.py old mode 100644 new mode 100755 index cea95be..e95799b --- a/example/monitoring.py +++ b/example/monitoring.py @@ -1,7 +1,9 @@ -from Tasmota import Tasmota +#!/usr/bin/env python3 + +from Tasmota.Tasmota import Tasmota from time import sleep ipv4 = "192.168.2.107" dev = Tasmota(ipv4) print(dev.get_name())
and a simple chmod +x example/*.py helped.
chmod +x example/*.py
The text was updated successfully, but these errors were encountered:
also, the import is different from the other example, it should be like in this diff, from Tasmota.Tasmota not from Tasmota
from Tasmota.Tasmota
from Tasmota
Sorry, something went wrong.
No branches or pull requests
and a simple
chmod +x example/*.py
helped.The text was updated successfully, but these errors were encountered: