0
我只需要使用python標準庫重寫下面的函數。如何從請求到Urllib2
def request_release_info(self):
req = requests.get('https://api.github.com/repos/user/repo/releases/latest',
auth=('user', 'token'))
content = req.json()
return content
所以我需要以取代的urllib/urllib2的請求,但我無法找到一個方法來傳遞我的用戶名和我類似的方式標記。
謝謝你的幫助!
你是在Python 2還是3? – senshin
我在python 2.7.11 – mandok
你試過這個嗎? http://stackoverflow.com/q/2407126/ – senshin