python淺學筆記13 常用第三方模組

2021-09-23 22:17:04 字數 599 閱讀 2574

pip install

影象處理

縮放 切片 旋轉 濾鏡 輸出文字 調色盤

imagedraw.draw(image) 繪圖

更好的訪問網路資源的方案,處理url資源特別方便

requests.get(url,params,headers)

requests.post(url,data)

post 上傳檔案

requests.put

requests.delete

檢測編碼型別codetype,以 bytes to str by decode(codetype)

chardet.detect(b』hello,world』)返回結果中不僅有編碼方式,還有猜測的概率,還有語言型別

獲取系統資訊

1.獲取cpu資訊 統計cpu的使用者/系統/空閒時間

2.獲取記憶體資訊 物理記憶體virtual_memory 交換記憶體swap_memory

3.獲取磁碟資訊 磁碟分割槽 磁碟使用率 磁碟io

4.獲取網路資訊 網路介面和網路連線資訊 網路讀寫位元組/包的個數

5.獲取程序資訊 pids() process(id)

test 模擬 ps

python淺學筆記12 常用內建模組

xmlhtmlparser 自稱足夠多,不需額外安裝其他模組。batteries included 獲取本地當前日期和時間 構造時間 timestamp 浮點數 0 1970.01.01 00 00 00 epoch time utc 時區時刻 timestamp 當前時刻 epoch time 的...

python淺學筆記2 函式

漢諾塔 時間戳 2019年3月6日23 38 55 常用函式呼叫 abs max float str bool hex isinstance x,int,str 定義乙個函式 使用關鍵字 def 例如 def my abs x if x return x else return x如果沒有retur...

python淺學筆記20 非同步IO

cpu速度遠遠快於 網路 磁碟 io 在乙個執行緒裡,io會阻塞其它 的執行。為了不阻塞,就要用多執行緒或多程序,雖然併發可以解決這個問題,但是系統不能無上限的增加執行緒,系統切換執行緒的開銷也很大 另一種解決問題的方法非同步io,cpu負責 的執行,io操作由io裝置執行,負責開啟乙個io操作,並...