5 lines
68 B
Python
5 lines
68 B
Python
|
import requests as r
|
||
|
from sys import argv[1]
|
||
|
|
||
|
print(r.get(argv[1]))
|