requests请求代码部分
刚了解到爬虫的一些相关知识,之前弄了一个框架,现在把代码发出来
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273import requestsimport jsonurl='http://httpbin.org/get'url1='http://httpbin.org/post'url2='http://httpbin.org/cookies'r=requests.get(url)print("the first:")print(r.url)print("\n")payload={ 'the':'second'}d=requests.get(
...