Skip to content

Instantly share code, notes, and snippets.

@korayal
Last active November 13, 2022 16:04

Revisions

  1. korayal revised this gist Nov 13, 2022. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion netblocks.py
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,5 @@
    #
    # First install via: `pip3 install playwright && playwright install`
    # First install python-playwright via: `pip3 install playwright && playwright install`
    #
    from playwright.sync_api import sync_playwright
    from datetime import datetime, timedelta
  2. korayal created this gist Nov 13, 2022.
    27 changes: 27 additions & 0 deletions netblocks.py
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,27 @@
    #
    # First install 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()
    page.goto('https://api.webprobe.org/scan/')

    done = False
    starttime = datetime.utcnow()

    while not done:
    content = page.content()

    report_complete = page.is_visible('div#probe_report')
    timeout = (datetime.utcnow() - starttime) > timedelta(seconds=60)

    if report_complete or timeout:
    done = True
    else:
    time.sleep(1)

    browser.close()