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)
|
2026-05-18 22:47:46 +00:00
|
|
|
snapshot = scraper.get_snapshot()
|
|
|
|
|
transactions = scraper.get_transactions_parsed()
|
|
|
|
|
print(snapshot)
|
|
|
|
|
print(transactions)
|
2026-05-13 04:31:12 +00:00
|
|
|
scraper.close()
|
|
|
|
|
|