restored ani-cli, added complment python file

This commit is contained in:
CoolnsX
2022-01-14 00:57:54 +05:30
parent 5b1d3d4af8
commit 5980c88bd4
2 changed files with 29 additions and 35 deletions

14
lol.py Normal file
View File

@@ -0,0 +1,14 @@
from selenium import webdriver
import sys
try:
chromeop = webdriver.FirefoxOptions()
chromeop.add_argument("--headless")
temp = webdriver.Firefox(options=chromeop)
temp.get(sys.argv[1])
print(temp.page_source)
finally:
try:
temp.close()
except:
pass