AkahuSync/emoneyscraper/main.py

10 lines
244 B
Python
Raw Normal View History

from scraper import Scraper
from playwright.sync_api import sync_playwright, Playwright
playwright = sync_playwright().start()
scraper = Scraper(playwright, True)
print(scraper.get_balance())
print(scraper.get_transactions())
scraper.close()