最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

python網(wǎng)絡(luò)編程之讀取網(wǎng)站根目錄實例

 更新時間:2014年09月30日 09:59:57   投稿:shichen2014  
這篇文章主要介紹了python網(wǎng)絡(luò)編程之讀取網(wǎng)站根目錄實例,以quux.org站根目錄為例進行了實例分析,代碼簡單易懂,需要的朋友可以參考下

本文實例講述了python網(wǎng)絡(luò)編程之讀取網(wǎng)站根目錄的方法,分享給大家供大家參考。

具體實現(xiàn)方法如下:

import socket, sys 
 
port = 70 
host = "quux.org" 
filename = "http://" 
 
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) 
s.connect((host, port)) 
s.sendall(filename+"\r\n") 
 
while(1): 
  buf = s.recv(2048) 
  if not buf: 
    break 
  sys.stdout.write(buf) 

本文實例運行環(huán)境為Python2.7.6

該實例會返回quux.org的根目錄的列表

返回結(jié)果如下:

iWelcome to gopher at quux.org! fake (NULL) 0
i fake (NULL) 0
iThis server has a lot of information of historic interest, fake (NULL) 0
ifunny, or just plain entertaining -- all presented in Gopher. fake (NULL) 0
iThere are many mirrors here of rare or valuable files with the fake (NULL) 0
iaim to preserve them in case their host disappears. PLEASE READ fake (NULL) 0
i"About This Server" FOR IMPORTANT NOTES AND LEGAL INFORMATION. fake (NULL) 0
i fake (NULL) 0
0About This Server /About This Server.txt gopher.quux.org 70 +
1Archives /Archives gopher.quux.org 70 +
1Books /Books gopher.quux.org 70 +
1Communication /Communication gopher.quux.org 70 +
iThis directory contains the entire text of the book fake (NULL) 0
i"We the Media: Grassroots Journalism by the People, for the People" fake (NULL) 0
iby Dan Gillmor in various formats. fake (NULL) 0
i fake (NULL) 0
iFeel free to download and enjoy. fake (NULL) 0
1Computers /Computers gopher.quux.org 70 +
1Current Issues and Events (Updated Apr. 23, 2002) /Current gopher.quux.org 70 +
1Development Projects /devel gopher.quux.org 70 +
0Gopher's 10th Anniversary /3.0.0.txt gopher.quux.org 70
1Government, Politics, Law, and Conflict /Government gopher.quux.org 70 +
0How To Help /How To Help.txt gopher.quux.org 70 +
1Humor and Fun /Humor and Fun gopher.quux.org 70 +
1Index to Quux.Org /Archives/index gopher.quux.org 70
1Internet /Internet gopher.quux.org 70 +
1Other Gopher Servers /Software/Gopher/servers gopher.quux.org 70
1People /People gopher.quux.org 70 +
1Reference /Reference gopher.quux.org 70 +
1Software and Downloads /Software gopher.quux.org 70 +
1The Gopher Project /Software/Gopher gopher.quux.org 70
0What's New /whatsnew.txt gopher.quux.org 70 +

希望本文所述對大家的Python程序設(shè)計有所幫助

相關(guān)文章

  • Python Collatz序列實現(xiàn)過程解析

    Python Collatz序列實現(xiàn)過程解析

    這篇文章主要介紹了Python Collatz序列實現(xiàn)過程解析,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友可以參考下
    2019-10-10
  • python爬蟲遇到403錯誤的問題及解決

    python爬蟲遇到403錯誤的問題及解決

    這篇文章主要介紹了python爬蟲遇到403錯誤的問題及解決,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教
    2024-02-02
  • Opencv識別圖片顏色并繪制輪廓實現(xiàn)代碼示例

    Opencv識別圖片顏色并繪制輪廓實現(xiàn)代碼示例

    這篇文章主要給大家介紹了關(guān)于Opencv識別圖片顏色并繪制輪廓實現(xiàn)的相關(guān)資料,實驗代碼和現(xiàn)象展示了如何從原始圖像中識別和突出顯示特定顏色區(qū)域,并通過圖像處理技術(shù)增強識別效果,需要的朋友可以參考下
    2024-12-12
  • Python + Flask 實現(xiàn)簡單的驗證碼系統(tǒng)

    Python + Flask 實現(xiàn)簡單的驗證碼系統(tǒng)

    這篇文章主要介紹了Python + Flask 制作一個簡單的驗證碼系統(tǒng),本文圖文并茂給大家介紹的非常詳細,具有一定的參考借鑒價值,需要的朋友可以參考下
    2019-10-10
  • pytorch創(chuàng)建tensor函數(shù)詳情

    pytorch創(chuàng)建tensor函數(shù)詳情

    這篇文章主要介紹了pytorch創(chuàng)建tensor函數(shù)詳情,文章圍繞tensor函數(shù)的相關(guān)自來哦展開詳細內(nèi)容的介紹,需要的小伙伴可以參考一下,希望對你有所幫助
    2022-03-03
  • Django自定義過濾器定義與用法示例

    Django自定義過濾器定義與用法示例

    這篇文章主要介紹了Django自定義過濾器定義與用法,結(jié)合實例形式分析了Django自定義過濾器的概念、功能、定義及使用方法,需要的朋友可以參考下
    2018-03-03
  • Tornado Web Server框架編寫簡易Python服務(wù)器

    Tornado Web Server框架編寫簡易Python服務(wù)器

    這篇文章主要為大家詳細介紹了Tornado Web Server框架編寫簡易Python服務(wù)器,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2018-07-07
  • 新手學(xué)python應(yīng)該下哪個版本

    新手學(xué)python應(yīng)該下哪個版本

    在本篇內(nèi)容中小編給大家整理的是關(guān)于新手學(xué)python應(yīng)該下版本的相關(guān)知識點,需要的朋友們可以參考學(xué)習(xí)下。
    2020-06-06
  • Python利用Turtle庫繪制一個小老虎

    Python利用Turtle庫繪制一個小老虎

    虎年就是要畫老虎!本文將通過Python中的Turtle庫繪制一個可愛的小老虎,文中的示例代碼講解詳細,感興趣的小伙伴可以了解一下
    2022-02-02
  • 如何表示python中的相對路徑

    如何表示python中的相對路徑

    在本篇文章里小編給大家分享的是關(guān)于python相對路徑寫法以及相關(guān)知識點內(nèi)容,需要的朋友們可以學(xué)習(xí)下。
    2020-07-07

最新評論

筠连县| 顺义区| 棋牌| 章丘市| 凤庆县| 武川县| 九龙坡区| 东乡族自治县| 米易县| 四会市| 临潭县| 浑源县| 中山市| 紫金县| 水城县| 浮梁县| 同心县| 三河市| 本溪市| 三亚市| 竹溪县| 五莲县| 罗山县| 望谟县| 盐源县| 霍林郭勒市| 乐至县| 开平市| 白玉县| 济源市| 南乐县| 清徐县| 河北省| 台东县| 江安县| 凌海市| 泊头市| 固始县| 嘉定区| 从化市| 鸡泽县|