When I was trying out a tutorial in the internet, I failed to connect to the mqtt broker - anyone can help me on that?
import paho.mqtt.client as mqtt
broker_url = "mqtt.eclipse.org"
broker_port = 1883
client = mqtt.Client()
client.connect(broker_url, broker_port)
print(client)
Traceback (most recent call last):  
  File "C:\Workspace\FI Systemintegration\Python\MitarbeiterVerwaltung\rpi\connect.py",   line 6, in <module>  
    client.connect(broker_url, broker_port)  
  File "C:\Users\TorbenIT\AppData\Local\Programs\Python\Python310\lib\site-packages  \paho\mqtt\client.py", line 914, in connect  
    return self.reconnect()  
  File "C:\Users\TorbenIT\AppData\Local\Programs\Python\Python310\lib\site-packages  \paho\mqtt\client.py", line 1044, in reconnect  
    sock = self._create_socket_connection()  
  File "C:\Users\TorbenIT\AppData\Local\Programs\Python\Python310\lib\site-packages  \paho\mqtt\client.py", line 3685, in _create_socket_connection  
    return socket.create_connection(addr, timeout=self._connect_timeout,   source_address=source)  
  File "C:\Users\TorbenIT\AppData\Local\Programs\Python\Python310\lib\socket.py", line   824, in create_connection  
    for res in getaddrinfo(host, port, 0, SOCK_STREAM):  
  File "C:\Users\TorbenIT\AppData\Local\Programs\Python\Python310\lib\socket.py", line   955, in getaddrinfo  
    for res in _socket.getaddrinfo(host, port, family, type, proto, flags):  
socket.gaierror: [Errno 11001] getaddrinfo failed  
 
     
    
 
    