Python Forum
How to send/receive data over TCP
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to send/receive data over TCP
#1
I have tow system one is system A and anothr is system B

System A - Server (pi)
System B - Client (printer)

I want to send a request to the printer
if request accepted, get the data from the printer

I found the two program but I don't understand which one used for my purpose

Client
Here's simple code to send and receive data by TCP in Python
#!/usr/bin/env python

import socket


TCP_IP = '127.0.0.1'
TCP_PORT = 5005
BUFFER_SIZE = 1024
MESSAGE = "Hello, World!"

s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((TCP_IP, TCP_PORT))
s.send(MESSAGE)
data = s.recv(BUFFER_SIZE)
s.close()

print "received data:", data
Server
Here's simple code to serve TCP in Python:
#!/usr/bin/env python

import socket


TCP_IP = '127.0.0.1'
TCP_PORT = 5005
BUFFER_SIZE = 20  # Normally 1024, but we want fast response

s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.bind((TCP_IP, TCP_PORT))
s.listen(1)

conn, addr = s.accept()
print 'Connection address:', addr
while 1:
    data = conn.recv(BUFFER_SIZE)
    if not data: break
    print "received data:", data
    conn.send(data)  # echo
conn.close()
Reply
#2
hello

write a socket programming with python to send and recive a file over tcp
Here is a part to send a part of data based on the size of the buffer.

msg[i] = file[i].read()
file[i].close()
while 1:
tdata[i], msg[i] = msg[i][:buf], msg[i][buf:]
c.send(tdata[i])

if len(msg[i]) < buf:
break
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Listen TCP and send data to websockets neoboby 3 2,898 Feb-13-2023, 09:47 PM
Last Post: Vadanane
  Send Pressure sensor data to IoT platform using WebSockets in Python barry76 3 4,571 Mar-12-2019, 09:48 AM
Last Post: barry76
  Send data BMP180 between client and server trought module socket smalhao 0 2,806 Jul-30-2018, 12:56 PM
Last Post: smalhao
  Python socket : Error receive data quanglnh1993 1 12,953 Mar-14-2018, 11:59 AM
Last Post: avorane
  Socket won't receive data suddenly with multiple clients SquareRoot 0 2,768 Sep-06-2017, 09:09 PM
Last Post: SquareRoot

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020