-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtests.py
24 lines (20 loc) · 1.42 KB
/
tests.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/python3
import requests
import time
import os
os.system('clear')
time.sleep(4)
print('''
+---+---+---+---+---+---+
| P | y | t | h | o | n |
+---+---+---+---+---+---+
''')
time.sleep(5)
os.system("help")
req = requests.get(url)
src = req.text
print(src)
def main():
url = input("Введите адрес сайта : ")
if __name__ == '__main__':
main()