Client for talking to the Google Chrome remote shell port
Project description
This library makes it easy to communicate with the Google Chrome remote debugging shell from Python. To make the shell available, start Chrome with this option:
google-chrome --remote-shell-port=9222
Then you can connect from Python through code like this:
>>> import chrome_remote_shell >>> shell = chrome_remote_shell.open(port=9222) >>> shell.request('DevToolsService', command='ping') {u'data': u'ok', u'command': u'ping', u'result': 0}
The protocol is described in detail at:
http://code.google.com/p/chromedevtools/wiki/ChromeDevToolsProtocol
As a convenience, the shell connection object offers a method that, by injecting JavaScript into the first tab, commands Chrome to open a URL in a new tab:
shell.open_url('http://www.aldaily.com/')
CHANGELOG
2009 Feb 26. Added a conditional import of simplejson so that the module runs under Python 2.5.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file chrome_remote_shell-1.2.tar.gz
.
File metadata
- Download URL: chrome_remote_shell-1.2.tar.gz
- Upload date:
- Size: 2.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 694d672937341fa0318c710d5712f38357aac1e49d78f053595f7e3a1a7adb72 |
|
MD5 | c838e1692989cb1dd77b8603ecb7a81e |
|
BLAKE2b-256 | 913893602a05746810c4947544cb193dcd3d5017663df08b74687394c9d6677f |