bl双性强迫侵犯h_国产在线观看人成激情视频_蜜芽188_被诱拐的少孩全彩啪啪漫画

socket模塊如何在Python項(xiàng)目中使用-創(chuàng)新互聯(lián)

socket模塊如何在Python項(xiàng)目中使用?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。

10年積累的做網(wǎng)站、成都網(wǎng)站建設(shè)經(jīng)驗(yàn),可以快速應(yīng)對客戶對網(wǎng)站的新想法和需求。提供各種問題對應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識你,你也不認(rèn)識我。但先做網(wǎng)站設(shè)計(jì)后付款的網(wǎng)站建設(shè)流程,更有雁山免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。

socket ssh

import socket
import os

server = socket.socket()
server.bind(('localhost', 6969)) #綁定被監(jiān)聽端口
server.listen(5)  #監(jiān)聽端口
while True:
  print("我要開始等電話了")
  conn, addr = server.accept() # 就是等待的意思
  #conn就是客戶端連過來的時(shí)候,在服務(wù)器端為其生成的一個連接實(shí)例
  print("電話來了%s"% [conn, addr])
  while True:
    data = conn.recv(1024)
    if not data:
      print('client is lost.')
      break
    # res = os.popen(data).read() #popen就是打開命令執(zhí)行,read就是獲取結(jié)果
    # with open('filename', 'r') as ret: #這兩行就 可以用過來傳輸文件了。
    #   data = ret.read()
    print('receive:',data)
    conn.send(data.upper())
server.close()

socket client 模塊

#! /usr/bin/env python
# -*- coding:utf-8 -*-
# Author Ian Ying
# mail: kongqing.ying@yitu-inc.com

import socket


client = socket.socket() #聲明socket類型,同時(shí)生成socket鏈接對象
client.connect(('localhost',6969))  #localhost就是本機(jī)地址

while True:
  msg = input('input msg >>:').strip()
  if len(msg) == 0: continue #檢查msg的信息,防止無輸入信息
  #client.send(b"Hello, world!") #發(fā)送信息
  client.send(msg.encode('utf-8'))

  data = client.recv(1024) #默認(rèn)接受1024字節(jié),就是1k
  # with open('filename', 'w') as ret: # 這兩行就 可以用過來傳輸文件了。
  #   ret = data.write()
  print(data.decode())
client.close() #關(guān)閉端口

防止粘包的socket_ssh.py

#! /usr/bin/env python
# -*- coding:utf-8 -*-
# Author Ian Ying
# mail: kongqing.ying@yitu-inc.com

import socket
import os

server = socket.socket()
server.bind(('localhost', 6969)) #綁定被監(jiān)聽端口
server.listen(5)  #監(jiān)聽端口
while True:
  print("我要開始等電話了")
  conn, addr = server.accept() # 就是等待的意思
  #conn就是客戶端連過來的時(shí)候,在服務(wù)器端為其生成的一個連接實(shí)例

  while True:
    data = conn.recv(1024).decode()
    print("電話來了%s" % type(data))
    # if type(data) is str:
    #   data = data.strip()
    if not data:
      print('client is lost.')
      break
    cmd_res = os.popen(data).read() #popen就是打開命令執(zhí)行,read就是獲取結(jié)果
    cmd_res_size = str(len(cmd_res.encode("utf-8")))
    print("before send",len(cmd_res),"size after encode", cmd_res_size)
    if len(cmd_res) == 0:
      print("there is no output.")
      res_warning = "there is no output."
      conn.send(res_warning.encode("utf-8"))
      continue
    else:
      conn.send(cmd_res_size.encode("utf8"))
      print(conn.recv(1024).decode()) #通過接收數(shù)據(jù)的形式來強(qiáng)制發(fā)送緩沖區(qū)的數(shù)據(jù),防止粘包。
    # with open('filename', 'r') as ret: #這兩行就 可以用過來傳輸文件了。
    #   data = ret.read()
    #print('receive:',data)
    print('receive:', data)
    conn.send(cmd_res.encode("utf-8"))
    # conn.send(bytes(cmd_res)) #不可行。傳輸?shù)臅r(shí)候是需要encoding
server.close()

socket_client.py

#! /usr/bin/env python
# -*- coding:utf-8 -*-
# Author Ian Ying
# mail: kongqing.ying@yitu-inc.com

import socket


client = socket.socket() #聲明socket類型,同時(shí)生成socket鏈接對象
client.connect(('localhost',6969))  #localhost就是本機(jī)地址

while True:
  msg = input('input msg >>:').strip()
  if len(msg) == 0: continue #檢查msg的信息,防止無輸入信息
  #client.send(b"Hello, world!") #發(fā)送信息
  client.send(msg.encode('utf-8'))
  received_size = client.recv(1024).decode() #用來記錄接受的數(shù)據(jù)大小
  print("接收的數(shù)據(jù)大小", received_size)
  received_cont = b''
  received_cont_size = 0 # 用來判斷接受數(shù)據(jù)的大小
  if received_size != "there is no output." :
    client.send("準(zhǔn)備好了,可以發(fā)送。".encode()) #發(fā)送確認(rèn)信息,以防止粘包
    received_size = int(received_size) #數(shù)據(jù)需要變成int才能進(jìn)行判斷
    while received_size != received_cont_size: #判斷encode后的長度是否一致。
      received_cont_for_test = client.recv(1024)
      received_cont_size += int(len(received_cont_for_test))
      received_cont = received_cont + received_cont_for_test
      print("當(dāng)前結(jié)束后的數(shù)據(jù)大小為:", received_cont_size)
      # print(received_cont_size)
    else:
      print("數(shù)據(jù)接收完成,接收的數(shù)據(jù)大小為:", received_cont_size)
      print("接收的內(nèi)容為:\n",received_cont.decode(),"\n")
  else:
    print("output:\n", received_size)
    # data = client.recv(1024) #默認(rèn)接受1024字節(jié),就是1k
    # with open('filename', 'w') as ret: # 這兩行就 可以用過來傳輸文件了。
    #   ret = data.write()
    # print(data.decode())
    # print(str(data))
client.close() #關(guān)閉端口

看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進(jìn)一步的了解或閱讀更多相關(guān)文章,請關(guān)注創(chuàng)新互聯(lián)成都網(wǎng)站設(shè)計(jì)公司行業(yè)資訊頻道,感謝您對創(chuàng)新互聯(lián)成都網(wǎng)站設(shè)計(jì)公司的支持。

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、網(wǎng)站設(shè)計(jì)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。

文章名稱:socket模塊如何在Python項(xiàng)目中使用-創(chuàng)新互聯(lián)
當(dāng)前網(wǎng)址:http://vcdvsql.cn/article11/dgdidd.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供響應(yīng)式網(wǎng)站品牌網(wǎng)站建設(shè)企業(yè)建站網(wǎng)站策劃標(biāo)簽優(yōu)化微信小程序

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

成都網(wǎng)站建設(shè)公司