溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

python處理http請求中特殊字符($、#、?)的問題

發(fā)布時間:2020-07-26 00:17:53 來源:網(wǎng)絡(luò) 閱讀:2852 作者:TsingCall 欄目:開發(fā)技術(shù)

直接看代碼吧

# encoding:utf-8


from urllib.parse import quote

import urllib.request

import string

import json


url = quote('http://test.com:8080/api/v1/grafana/metrics/find?query=office-test-003#cpu#idle', safe=string.printable);      #falcon的grafana接口

result = urllib.request.urlopen(url).read()    #url請求

json_result = json.loads(result.decode())   #轉(zhuǎn)換成list


print (json.dumps(json_result,indent=2))   #json格式輸出



--------------------結(jié)果輸出------------------------

[

  {

    "expandable": false,

    "text": "steal"

  },

  {

    "expandable": false,

    "text": "idle"

  },

]

 




向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI