Nicolas Silberzahn
Nicolas Silberzahn
Same pb.Hue magic finds the Hub (the IP address) but unable to connect to it later.  There is no network pb to access the Hue gateway 
some COMPLETE code one can copy paste and works like (found in https://realpython.com/python-requests/) ~~~~ import requests from requests.exceptions import HTTPError try: response = requests.get("https://api.github.com") response.raise_for_status() print(response.text) except HTTPError as http_err:...