最贊回答 / qq_二十六度_0
mac中在安裝virtualenv的時候,會提醒你virtualenv安裝到了哪個目錄下,如下WARNING: The script virtualenv-clone is installed in '/Users/admin/Library/Python/2.7/bin' which is not on PATH.當你在終端調用virtualenv命令的時候,...
2018-08-14
感覺這一節使用requests模塊,帶參數的那個例子寫錯了.應該是
URL_GET = 'http://httpbin.org/get'
response = requests.get(URL_GET, params=params)
URL_GET = 'http://httpbin.org/get'
response = requests.get(URL_GET, params=params)
2018-07-18
User-Agent': 'python-requests/2.19.1', 'Connection': 'keep-alive', 'Content-Type': 'application/json', 'Authorization': 'Basic aW1vb2NkZW1vOmltb29jZGVtbzEyMw=='}
{"blog": "http://2333.org", "bio": "future is now", "name": "babyang12231le"}
200
https://api.github.com/user
不修改郵箱 其他都OK
{"blog": "http://2333.org", "bio": "future is now", "name": "babyang12231le"}
200
https://api.github.com/user
不修改郵箱 其他都OK
2018-07-01
已采納回答 / 小毛同學
profile_email?must?be?one?of?the?user's?verified?email?addresses 已經指出原因了,應該是本身就不支持這種修改吧,因為github是用郵箱來登錄,所以不能輕易修改,需要驗證
2018-07-01