filmov
tv
client server socket programming example 1 in python

Показать описание
client server socket programming example 1(part 1) in python
Server
import socket
print("Socket created")
print("The client address is :",addr)
while True:
if(str(username)=='apple' and str(password)=='mango'):
else:
Client:
import socket
while True:
username=input("Enter the username")
password=input("Enter the password")
Server
import socket
print("Socket created")
print("The client address is :",addr)
while True:
if(str(username)=='apple' and str(password)=='mango'):
else:
Client:
import socket
while True:
username=input("Enter the username")
password=input("Enter the password")