【python】模塊整理

---文件、系統---html

import glob  # 給定路徑下查找符合規則文件。三個匹配符:」*」, 「?」, 「[]」。」*」匹配0個或多個字符;」?」匹配單個字符;」[]」匹配指定範圍內的字符,如:[0-9]匹配數字。python

print glob.glob("../*/*.jpg")  # 返回數組

import os數組

import sys網絡

import timeurl

 

 

---字符串---.net

import string  # 字符串相關,譬如大小寫改變,字符判斷線程

from string import Formatter  # 字符串替換。經過position和keyword來指定替換對象orm

"my name is {0.name}, I am living at {area[0].city}".format(person, area_list)

from string import Template  # 字符串替換。默認經過$來指定替換對象htm

header = '''<title>$title</title>'''

header.substitute(title=the_title)

參考文檔:對象

http://blog.csdn.net/xiaoxiaoniaoer1/article/details/8542834

http://www.cnblogs.com/rollenholt/archive/2011/11/25/2263722.html

http://www.cnblogs.com/youngershen/p/3972009.html

 

---Server---

BaseHTTPServer 

http://blog.csdn.net/linda1000/article/details/8087546

SimpleHTTPServer  # HTTP 服務

CGIHTTPServer  # CGI 服務

注意!有CGI腳本時,應該用CGIHTTPServer啓服務,若是SimpleHTTPServer的話,會直接展現腳本內容

 

---網絡請求---

import urllib

import urllib2

 

 

---進程、線程---

import threading

import multiprocessing 

 

 

---圖片---

相關文章
相關標籤/搜索