Skip to content

Instantly share code, notes, and snippets.

@korayal
korayal / netblocks.py
Last active November 13, 2022 16:04
Netblocks
#
# First install python-playwright via: `pip3 install playwright && playwright install`
#
from playwright.sync_api import sync_playwright
from datetime import datetime, timedelta
import time
with sync_playwright() as p:
browser = p.chromium.launch(headless=True)
page = browser.new_page()