web-dev-qa-db-ja.com

python)でクライアントからサーバーにメッセージを送信する方法

Python 2.7.10でクライアントとサーバーを使用して2つのプログラムを読んでいます。クライアントからサーバーにメッセージを送信するために、これらのプログラムを変更するにはどうすればよいですか?

server.py:

#!/usr/bin/python           # This is server.py file

import socket               # Import socket module

s = socket.socket()         # Create a socket object
Host = socket.gethostname() # Get local machine name
port = 12345                # Reserve a port for your service.
s.bind((Host, port))        # Bind to the port

s.listen(5)                 # Now wait for client connection.
while True:
   c, addr = s.accept()     # Establish connection with client.
   print 'Got connection from', addr
   c.send('Thank you for connecting')
   c.close()                # Close the connection

client.py:

#!/usr/bin/python           # This is client.py file

import socket               # Import socket module

s = socket.socket()         # Create a socket object
Host = socket.gethostname() # Get local machine name
port = 80              # Reserve a port for your service.

s.connect((Host, port))
print s.recv(1024)
s.close                     # Close the socket when done

TCPソケットは双方向です。したがって、接続後、サーバーとクライアントの間に違いはなく、ストリームの両端のみがあります。

import socket               # Import socket module

s = socket.socket()         # Create a socket object
s.bind(('0.0.0.0', 12345))        # Bind to the port

s.listen(5)                 # Now wait for client connection.
while True:
   c, addr = s.accept()     # Establish connection with client.
   print 'Got connection from', addr
   print c.recv(1024)
   c.close()                # Close the connection

とクライアント:

import socket               # Import socket module

s = socket.socket()         # Create a socket object
s.connect(('localhost', 12345))
s.sendall('Here I am!')
s.close()                     # Close the socket when done
11
Daniel

上記の答えはエラーをスローします:TypeError: a bytes-like object is required, not 'str'しかし、次のコードは私のために働いた:

server.py

import socket
import sys

s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
port = 3125
s.bind(('0.0.0.0', port))
print ('Socket binded to port 3125')
s.listen(3)
print ('socket is listening')

while True:
    c, addr = s.accept()
    print ('Got connection from ', addr)
    print (c.recv(1024))
    c.close()

client.py:

import socket

s = socket.socket()
port = 3125
s.connect(('localhost', port))
z = 'Your string'
s.sendall(z.encode())    
s.close()
4
Hari