You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
409 B

import csv
import requests
h={
"User-Agent":
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36"}
response=requests.get("https://www.douban.com/",headers=h)
# response=requests.get("https://tieba.baidu.com/f?kw=%E5%AD%A6%E4%B9%A0%E5%BC%BA%E5%9B%BD&ie=utf-8&pn=50")
print(response.text)
print(response.status_code)
print(response.encoding)