2026-05-13 04:31:12 +00:00
|
|
|
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()
|
|
|
|
|
|