Nicolas Silberzahn

Results 2 comments of Nicolas Silberzahn

Same pb.Hue magic finds the Hub (the IP address) but unable to connect to it later. ![Image](https://user-images.githubusercontent.com/64604304/191978705-71c16d4c-d140-43fd-ad94-119c495cf181.png) There is no network pb to access the Hue gateway ![Image](https://user-images.githubusercontent.com/64604304/191978875-e6d4126f-c13d-40a5-91f3-2e9c5c26b45c.png)

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:...