1. 程式人生 > >正則提取參數關聯

正則提取參數關聯

dal tid findall .post 需要 提取 json pri 當前

r2 = s.post(url2, data=body, verify=False)
# 獲取當前url地址
print r2.url

# 第三步:正則提取需要的參數值
import re
postid = re.findall(r"postid=(.+?)&", r2.url)
print postid # 這裏是list
# 提取為字符串
print postid[0]

# 第四步:刪除草稿箱
url3 = "https://i.cnblogs.com/post/delete"
json3 = {"postId": postid[0]}
r3 = s.post(url3, json=json3, verify=False)
print r3.json()

正則提取參數關聯