17 lines
No EOL
399 B
Python
17 lines
No EOL
399 B
Python
import library.vts as vts
|
|
vts.download(vts.get_board())
|
|
|
|
from instagrapi import Client
|
|
import json, os
|
|
import time
|
|
|
|
cl = Client()
|
|
cl.login(os.getenv("INSTAGRAM_ID"), os.getenv("INSTAGRAM_PASSWORD"))
|
|
|
|
json.dump(
|
|
cl.get_settings(),
|
|
open(f'{os.getenv("ROOT")}temp/cookies.json', 'w')
|
|
)
|
|
|
|
print("🍪 | Account information was successfully retrieved.")
|
|
print(f"📅 | Job ended at {time.time()}") |