19 条回复  ·  251 次点击
hostname 初学 2024-10-22 16:23:03

请问大佬,像这种纯文本的内容,如何采集,要填写什么元素?

https://ipdb.api.030101.xyz/?type=bestcf

是一样填写tr吗?

notebook 初学 2024-10-22 16:23:03

学习研究下,感谢大佬分享

Defry 初学 2024-10-22 16:23:03

import requests


def get_ip():

url = ‘https://ipdb.api.030101.xyz/?type=bestcf

response = requests.get(url)

ip = response.text

return ip

if name == ‘main’:

print(get_ip())

12
返回顶部