{"id":16776742,"url":"https://github.com/n0tan3rd/simplechrome","last_synced_at":"2026-02-27T13:31:20.847Z","repository":{"id":54295466,"uuid":"137527622","full_name":"N0taN3rd/simplechrome","owner":"N0taN3rd","description":"Webrecorders DevTools Protocol Automation Library","archived":false,"fork":false,"pushed_at":"2022-10-18T18:35:01.000Z","size":394,"stargazers_count":17,"open_issues_count":4,"forks_count":0,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-04-10T20:31:07.054Z","etag":null,"topics":["browser-automation","chrome-debugging-protocol","chromium","puppeteer"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/N0taN3rd.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-06-15T20:08:50.000Z","updated_at":"2024-10-10T10:01:59.000Z","dependencies_parsed_at":"2023-01-20T04:03:42.448Z","dependency_job_id":null,"html_url":"https://github.com/N0taN3rd/simplechrome","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/N0taN3rd/simplechrome","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/N0taN3rd%2Fsimplechrome","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/N0taN3rd%2Fsimplechrome/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/N0taN3rd%2Fsimplechrome/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/N0taN3rd%2Fsimplechrome/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/N0taN3rd","download_url":"https://codeload.github.com/N0taN3rd/simplechrome/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/N0taN3rd%2Fsimplechrome/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29896878,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-27T12:09:13.686Z","status":"ssl_error","status_checked_at":"2026-02-27T12:09:13.282Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["browser-automation","chrome-debugging-protocol","chromium","puppeteer"],"created_at":"2024-10-13T07:10:50.841Z","updated_at":"2026-02-27T13:31:20.826Z","avatar_url":"https://github.com/N0taN3rd.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Simplechrome\nAn fork of [pypuppeteer](https://github.com/miyakogi/pyppeteer) used by Webrecorder for automation that has been modified to meet our needs.\n\nNotable Additions to the API / code base per our own use-case:\n- Changes to allow control of latests revisions of both Chrome and Chromium\n- Changes to facilitate using the [uvloop](https://github.com/MagicStack/uvloop) event loop \n- Changes to input handling for `evaluateOnNewDocument`\n- Tracking child frame life cyles individually \n- Less strict application defaults\n- Keeps to date with puppeteer\n\n## Installation\n\nSimplechrome requires python 3.6+.\n\nInstall latest version from [github](https://github.com/webrecorder/simplechrome):\n\n```\npip install -U git+https://github.com/webrecorder/simplechrome.git@master\n```\n\n## Usage\n\n\u003e **Note**: When you run simplechrome first time (if you do not supply an `executablePath`), it will download a recent version of Chromium (~100MB).\n\n**Example**: Go to a web page and take a screenshot.\n\n```py\nimport asyncio\nimport uvloop\nfrom simplechrome import launch\n\nasyncio.set_event_loop_policy(uvloop.EventLoopPolicy())\n\n\nasync def main():\n    browser = await launch()\n    page = await browser.newPage()\n    await page.goto('http://example.com')\n    await page.screenshot({'path': 'example.png'})\n    await browser.close()\n    \nif __name__ == '__main__':\n    asyncio.get_event_loop().run_until_complete(main())\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fn0tan3rd%2Fsimplechrome","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fn0tan3rd%2Fsimplechrome","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fn0tan3rd%2Fsimplechrome/lists"}