summaryrefslogtreecommitdiff
path: root/componentClient.py
diff options
context:
space:
mode:
authorsolongs <[email protected]>2022-06-17 17:33:55 +0800
committersolongs <[email protected]>2022-06-17 17:33:55 +0800
commit7215183403fe147fdc4865a9148f56abdab15cdf (patch)
treeeeadbdea9679f37b0b62aebe696404ab302be943 /componentClient.py
webcomponent
Diffstat (limited to 'componentClient.py')
-rw-r--r--componentClient.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/componentClient.py b/componentClient.py
new file mode 100644
index 0000000..3ea86c6
--- /dev/null
+++ b/componentClient.py
@@ -0,0 +1,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))
+
+
+