标签: python sockets networking mp3 send
我已经熟悉python和套接字的用法,并且可以在这些文本上发送文本字符串。但是我怎么去发送一个MP3文件?
答案 0 :(得分:2)
以下代码将执行您的字面意思(假设thesocket是连接的流套接字):
thesocket
with open('thefile.mp3', 'rb') as f: thesocket.sendall(f.read())