summaryrefslogtreecommitdiff
path: root/componentClient.py
blob: 3ea86c6d33d5890d61c5ec9fef2c8723cd8c2090 (plain)
1
2
3
4
5
6
7
8
9
10
11

import requests

domainlist = ["csdn.net", "youku.com", "wappalyzer.com"]
for domain in domainlist:
    # 这边填你的内网服务器地址,端口8000
    req = requests.get("http://192.168.231.129:8000", params={"domain": domain})
    print(req.text, type(req.text))