本地txt文件有url、phone、pwd,如何用python读取,并且用requests发送请求?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了本地txt文件有url、phone、pwd,如何用python读取,并且用requests发送请求?相关的知识,希望对你有一定的参考价值。
txt存在的数据为:url:http://www.baidu.com/login,phone:13800138000,pwd:123456,在python中如何将这些数据读取出来,并且用requests发起一个get请求?
因为目前在自学python,忽然遇到这个问题,不知道怎么解决,求大神指点指点,不胜感激!谢谢
with open('a.txt') as f:
s = f.read().strip()
data = dict([i.split(':', 1) for i in s.split(',')])
r = requests.get(data.pop('url'), data)
r.raise_for_status()
print(r.text)本回答被提问者和网友采纳
以上是关于本地txt文件有url、phone、pwd,如何用python读取,并且用requests发送请求?的主要内容,如果未能解决你的问题,请参考以下文章