13 lines
356 B
Python
13 lines
356 B
Python
from clase_cliente import Cliente
|
|
|
|
# Configuración del cliente y el servidor
|
|
SERVER_HOST = '127.0.0.1' # Asumimos localhost
|
|
SERVER_PORT = 65432 # Puerto de comunicación
|
|
|
|
# Ejecución del cliente
|
|
if __name__ == "__main__":
|
|
berry = Cliente(SERVER_HOST, SERVER_PORT)
|
|
berry.conectar()
|
|
|
|
while True:
|
|
berry.escuchar_y_responder() |