溫馨提示×

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

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

python 接口返回的json字符串實(shí)例

發(fā)布時(shí)間:2020-10-23 04:10:08 來(lái)源:腳本之家 閱讀:186 作者:zhaoyangjian724 欄目:開(kāi)發(fā)技術(shù)

如下所示:

JSON 函數(shù)
使用 JSON 函數(shù)需要導(dǎo)入 json 庫(kù):import json。

函數(shù)	描述
json.dumps	將 Python 對(duì)象編碼成 JSON 字符串
json.loads	將已編碼的 JSON 字符串解碼為 Python 對(duì)象


#!/usr/bin/env python 
# -*- coding: utf-8 -*- 
import urllib2 
import urllib 
import cookielib
import json
 
def login(): 
 
  data={'username': '015208@zjtlcb.com', 'password': '1234567'}
  post_data=urllib.urlencode(data) #將post消息化成可以讓服務(wù)器編碼的方式 
  cj=cookielib.CookieJar() #獲取cookiejar實(shí)例 
  opener=urllib2.build_opener(urllib2.HTTPCookieProcessor(cj)) 
  #自己設(shè)置User-Agent(可用于偽造獲取,防止某些網(wǎng)站防ip注入) 
  headers = {} 
  website = "http://127.0.0.1:8000/api2/auth-token/"
  req=urllib2.Request(website,post_data,headers) 
  content=opener.open(req) 
  s= content.read() #linux下沒(méi)有g(shù)bk編碼,只有utf-8編碼
  print s
  print type(s)
  text = json.loads(s)
  print type(text)
  print text['token']
 
if __name__ == '__main__': 
 login() 

C:\Python27\python.exe C:/Users/Administrator/PycharmProjects/untitled/a1.py
{"token": "2c73f3885ac90ee462daea49f1890730f567fbfe"}
<type 'str'>
<type 'dict'>
2c73f3885ac90ee462daea49f1890730f567fbfe

Process finished with exit code 0

以上這篇python 接口返回的json字符串實(shí)例就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持億速云。

向AI問(wèn)一下細(xì)節(jié)

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

AI