We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e1d148 commit 2ffcda0Copy full SHA for 2ffcda0
2 files changed
requirements.txt
@@ -31,3 +31,9 @@ robotframework~=7.4
31
robotframework-datadriver
32
robotframework-debuglibrary
33
robotframework-requests
34
+
35
+# Mobile automation (Appium Python client)
36
+Appium-Python-Client>=3.1.0
37
38
+# Web scraping / HTTP utilities
39
+fake-useragent>=1.5.1
web_scraping/banners_hostname_ip_lookup.py
@@ -14,8 +14,6 @@
14
gethostby_ = socket.gethostbyname(sys.argv[1])
15
print("\nThe IP address of " + sys.argv[1] + " is: " + gethostby_ + "\n")
16
17
-# ipinfo.io
18
-
19
req_two = requests.get("https://ipinfo.io/" + gethostby_ + "/json")
20
resp_ = json.loads(req_two.text)
21
0 commit comments