A Python Package for the Google Chrome Dev Protocol, more document
To install aiochrome, simply:
$ pip install -U aiochrome
or from GitHub:
$ pip install -U git+https://github.com/fate0/aiochrome.git
or from source:
$ python setup.py install
simply:
$ google-chrome --remote-debugging-port=9222
or headless mode (chrome version >= 59):
$ google-chrome --headless --disable-gpu --remote-debugging-port=9222
or use docker:
$ docker pull fate0/headless-chrome
$ docker run -it --rm --cap-add=SYS_ADMIN -p9222:9222 fate0/headless-chrome
import asyncio
import aiochrome
async def main():
# create a browser instance
browser = aiochrome.Browser(url="http://127.0.0.1:9222")
# create a tab
tab = await browser.new_tab()
# register callback if you want
async def request_will_be_sent(**kwargs):
print("loading: %s" % kwargs.get('request').get('url'))
tab.Network.requestWillBeSent = request_will_be_sent
# start the tab
await tab.start()
# call method
await tab.Network.enable()
# call method with timeout
await tab.Page.navigate(url="https://github.com/fate0/aiochrome", _timeout=5)
# wait for loading
await tab.wait(5)
# stop the tab (stop handle events and stop recv message from chrome)
await tab.stop()
# close tab
await browser.close_tab(tab)
loop = asyncio.get_event_loop()
try:
loop.run_until_complete(main())
finally:
loop.close()
or (alternate syntax)
import asyncio
import aiochrome
async def main():
browser = aiochrome.Browser(url="http://127.0.0.1:9222")
tab = await browser.new_tab()
async def request_will_be_sent(**kwargs):
print("loading: %s" % kwargs.get('request').get('url'))
tab.set_listener("Network.requestWillBeSent", request_will_be_sent)
await tab.start()
await tab.call_method("Network.enable")
await tab.call_method("Page.navigate", url="https://github.com/fate0/aiochrome", _timeout=5)
await tab.wait(5)
await tab.stop()
await browser.close_tab(tab)
loop = asyncio.get_event_loop()
try:
loop.run_until_complete(main())
finally:
loop.close()
more methods or events could be found in Chrome DevTools Protocol
set DEBUG env variable:
run aiochrome -h
for more info
example:
please see the examples directory for more examples