socket模塊

来源:http://www.cnblogs.com/linkenpark/archive/2016/03/08/5252673.html
-Advertisement-
Play Games

1 1.1 server: #!/use/local/env python# -*- coding:utf-8 -*-import socketip_port = ('127.0.0.1', 9999)#ip_port = ('0.0.0.0', 9999) #所有IPsk = socket.soc


1.1 server:

#!/use/local/env python
# -*- coding:utf-8 -*-

import socket

ip_port = ('127.0.0.1', 9999)
#ip_port = ('0.0.0.0', 9999) #所有IP
sk = socket.socket()
sk.bind(ip_port)
sk.listen(5)

while True:
print('server wainting ...')
conn, add = sk.accept()

client_data = conn.recv(1024)
print(str(client_data, encoding='utf-8'))
conn.sendall(bytes('不要回答,不要回答,不要回答', encoding='utf-8'))
# conn.sendall(bytes('不要回答,不要回答,不要回答', 'utf-8'))
# conn.sendall(bytes('不要回答,不要回答,不要回答', 'utf8'))

conn.close()


1.2 client:
#!/use/local/env python
# -*- coding:utf-8 -*-

import socket

ip_port = ('127.0.0.1', 9999)
sk = socket.socket()
sk.connect(ip_port)

sk.sendall(bytes('請求占領地球,請求占領地球,請求占領地球', encoding='utf-8'))
server_reply = sk.recv(1024)
print(str(server_reply, encoding='utf-8'))
sk.close()


2
2.1 server:
#!/use/local/env python
# -*- coding:utf-8 -*-

import socket

ip_port = ('127.0.0.1', 9999)
#ip_port = ('0.0.0.0', 9999) #所有IP
sk = socket.socket()
sk.bind(ip_port)
sk.listen(5)

while True:
print('server wainting ...')
conn, add = sk.accept()

client_data = conn.recv(1024) #字元數
print(str(client_data, encoding='utf-8'))
conn.sendall(bytes('不要回答,不要回答,不要回答', encoding='utf-8'))
# conn.sendall(bytes('不要回答,不要回答,不要回答', 'utf-8'))
# conn.sendall(bytes('不要回答,不要回答,不要回答', 'utf8'))

while True:
try:
client_data2 = conn.recv(1024)
except Exception:
break
conn.send(client_data2)

conn.close()


2.2 client:
#!/use/local/env python
# -*- coding:utf-8 -*-

import socket

ip_port = ('127.0.0.1', 9999)
sk = socket.socket()
sk.connect(ip_port)

sk.sendall(bytes('請求占領地球,請求占領地球,請求占領地球', encoding='utf-8'))
server_reply = sk.recv(1024)
print(str(server_reply, encoding='utf-8'))
while True:
user_input = input(">>").strip()
sk.sendall(bytes(user_input, encoding='utf-8'))
server_reply2 = sk.recv(1024)
print(str(server_reply2, encoding='utf-8'))

sk.close()


3 ssh_socket
3.1 server
#!/usr/local/env python
# -*- coding:utf-8 -*-


import socket, subprocess

num = 100

sk = socket.socket()
ip_port = ('0.0.0.0', 9999)
sk.bind(ip_port)
sk.listen(5)

count = 0
while True:
count += 1
print("server is waiting [%s]..." %count)
conn, add = sk.accept()
#client_data = conn.recv(1024)
#print(str(client_data, encoding='utf-8'))
#conn.sendall(bytes('不要回答{3}', encoding='utf-8'))

while True:
client_data = conn.recv(num)
if not client_data:
print('recv is empty')
break
cmd_str = str(client_data, encoding='utf-8')
cmd_call = subprocess.Popen(cmd_str, shell=True, stdout=subprocess.PIPE)
cmd_res = cmd_call.stdout.read()
if len(cmd_res) == 0:
#if not cmd_res:
cmd_res = b"has no output!\n"
conn.send(cmd_res)
conn.close()

3.2 client
#!/usr/local/env python
# -*- encoding:utf-8 -*-

import socket

num = 100
sk = socket.socket()
ip_port = ('10.100.11.211', 9999)
sk.connect(ip_port)

while True:
user_input = input('cmd>').strip()
if len(user_input) == 0:
continue
elif user_input == 'q':
break
sk.sendall(bytes(user_input, encoding='utf-8'))

server_data = sk.recv(num)
print(str(server_data, encoding='utf-8'), end='')
while not (len(server_data) < num):
server_data = sk.recv(num)
print(str(server_data, encoding='utf-8'), end='')
sk.close()

4 ssh傳大數據
4.1 server
#!/usr/local/env python
# -*- coding:utf-8 -*-


import socket, subprocess

num = 500

sk = socket.socket()
ip_port = ('0.0.0.0', 9999)
sk.bind(ip_port)
sk.listen(5)

count = 0
while True:
count += 1
print("server is waiting [%s]..." %count)
conn, add = sk.accept()
#client_data = conn.recv(1024)
#print(str(client_data, encoding='utf-8'))
#conn.sendall(bytes('不要回答{3}', encoding='utf-8'))

while True:
client_data = conn.recv(num)
if not client_data:
print('recv is empty')
break
cmd_str = str(client_data, encoding='utf-8')
cmd_call = subprocess.Popen(cmd_str, shell=True, stdout=subprocess.PIPE)
cmd_res = cmd_call.stdout.read()
if len(cmd_res) == 0:
#if not cmd_res:
cmd_res = b"has no output!\n"
CMD_RES_SIZE_MSG = bytes('SEND_DATA_SIZE:%s' %(len(cmd_res)), encoding='utf-8')

conn.send(CMD_RES_SIZE_MSG)
conn.recv(50)
conn.send(cmd_res)
conn.close()

4.2 client
#!/usr/local/env python
# -*- encoding:utf-8 -*-

import socket

num = 500
sk = socket.socket()
ip_port = ('10.100.11.211', 9999)
sk.connect(ip_port)

while True:
user_input = input('cmd>').strip()
if len(user_input) == 0:
continue
elif user_input == 'q':
break
sk.sendall(bytes(user_input, encoding='utf-8'))

CMD_SIZE_MSG = sk.recv(50)
CMD_SIZE_MSG = str(CMD_SIZE_MSG, encoding='utf-8')
#CMD_RES_SIZE_MSG = 'SEND_DATA_SIZE:%s' %(len(cmd_res))
CDM_SIZE_GET = CMD_SIZE_MSG.split(':')
CMD_SIZE = 0
if CDM_SIZE_GET[0] == 'SEND_DATA_SIZE':
CMD_SIZE = int(CDM_SIZE_GET[1])
CMD_ACK = b'ready'
sk.send(CMD_ACK)

recv_size = 0
while recv_size < CMD_SIZE:
server_data = sk.recv(num)
recv_size += len(server_data)
print(str(server_data, encoding='utf-8'), end='')

#print(str(server_data, encoding='utf-8'), end='')
#while not (len(server_data) < num):
# server_data = sk.recv(num)
# print(str(server_data, encoding='utf-8'), end='')
sk.close()

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 轉載地址http://www.cnblogs.com/yangmingming/archive/2010/02/03/1662307.html Ildasm.exe 概要:(路徑:C:\Program Files (x86)\Microsoft SDKs\Windows\v數字.0\bin) 一.前
  • 前言 關於混合C 和C++的編程方式,本人之前寫過一篇博客(參見 "混合語言編程:C 使用原生的Directx和OpenGL" ),在之前的博客中,介紹了在C 的Winform和WPF下使用原生的Direct和OpenGL進行繪圖,主要使用的方式是聲明一個函數為導出函數,然後就可以在C 中使用這個函
  • 在我前面很多關於Visio的開發過程中,介紹了各種Visio的C#開發應用場景,包括對Visio的文檔、模具文檔、形狀、屬性數據、各種事件等相關的基礎處理,以及Visio本身的整體項目應用,雖然時間過去很久,不過這些技術依舊還在使用中,最近應客戶培訓的需要,我對所有的內容進行了重新整理,把一些沒有介...
  • 委托是一種存儲函數引用的類型,在事件和事件的處理時有重要的用途 通俗的說,委托是一個可以引用方法的類型,當創建一個委托,也就創建一個引用方法的變數,進而就可以調用那個方法,即委托可以調用它所指的方法。 使用委托 委托的使用需要以下步驟: 定義委托 delegate double ParocessDe
  • 解決WPF Viewport3D透視模式時窗體模糊。
  • 最近做項目中往雲端伺服器上傳資源包文件的時候用到了Socket的通訊,便想把我是如何運用的和大家一起分享!這也是我的第一篇技術分享,哈哈,希望大家多多指點,我這裡只是客戶端的操作,所以只貼客戶端的代碼:
  • 當垂直應用越來越多,應用之間交互不可避免,將核心業務抽取出來,作為獨立的服務,逐漸形成穩定的服務中心,當前服務支持thrift服務框架。支持服務的註冊發現,服務調用的負載均衡,服務調用的監控。
  • <?/*抓取百度收錄代碼*/function baidu($s){ $baidu="http://www.baidu.com/s?wd=site%3A".$s; $site=file_get_contents($baidu); //$site=iconv("gb2312", "UTF-8", $si
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...