加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Python > 正文

python网络编程 一个例程(自娱自乐)

发布时间:2020-12-17 17:11:16 所属栏目:Python 来源:网络整理
导读:今天PHP站长网 52php.cn把收集自互联网的代码分享给大家,仅供参考。 import Tkinterimport socketclass window: def __init__(self,root): label1=Tkinter.Label(root,text='IP') label2=Tkinter.Label(root,text='PORT'

以下代码由PHP站长网 52php.cn收集自互联网

现在PHP站长网小编把它分享给大家,仅供参考

import Tkinter
import socket

class window:
    def __init__(self,root):
        label1=Tkinter.Label(root,text='IP')
        label2=Tkinter.Label(root,text='PORT')
        label3=Tkinter.Label(root,text='DATA')
        label1.place(x=5,y=5)
        label2.place(x=30,y=5)
        label3.place(x=35,y=5)
        self.entryIP=Tkinter.Entry(root)
        self.entryIP.insert(Tkinter.END,'127.0.0.1')
        self.entryport=Tkinter.Entry(root)
        self.entryport.insert(Tkinter.END,'1051')
        self.entrydata=Tkinter.Entry(root)
        self.entrydata.insert(Tkinter.END,'hello')
        self.Recv=Tkinter.Text(root)
        self.entryIP.place(x=40,y=5)
        self.entryport.place(x=40,y=30)
        self.entrydata.place(x=40,y=55)
        self.Recv.place(y=115)
        self.send=Tkinter.Button(root,text='send',command=self.send)
        self.send.place(x=40,y=80)
    def send(self):
        try:
            self.entryIP.get()
            port=int(self.entryport.get())
            data=self.entrydata.get()
            client=socket.socket(socket.AF_INET,socket.SOCK_STREAM)
            client.send(data)
            rdata=client.recv(1024)
            self.Recv.insert(Tkinter.END,rdata.decode())
            client.close()
        except:
            self.Recv.insert(Tkinter.END,'error')
root=Tkinter.Tk()
window=window(root)
root.mainloop()

以上内容由PHP站长网【52php.cn】收集整理供大家参考研究

如果以上内容对您有帮助,欢迎收藏、点赞、推荐、分享。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读