summaryrefslogtreecommitdiff
path: root/crocoite/devtools.py
AgeCommit message (Collapse)AuthorFilesLines
2018-12-24Use f-strings where possibleLars-Dominik Braun1-11/+12
Replaces str.format, which is less readable due to its separation of format and arguments.
2018-12-21Parse URLs by defaultLars-Dominik Braun1-1/+3
Use library yarl (already pulled in by aiohttp). No URL processed should be a string.
2018-11-19Coding styleLars-Dominik Braun1-8/+6
Fix a few random issues pointed out by pylint, mainly unused imports.
2018-11-17devtools: Update browser flagsLars-Dominik Braun1-0/+12
Add a few more that seem reasonable.
2018-11-14Async chrome process startupLars-Dominik Braun1-0/+74
Move it to .devtools. Seems more fitting.
2018-11-08devtools: Disable websocket pings to ChromeLars-Dominik Braun1-1/+2
Chrome does not like that.
2018-11-06Add simple asyncio-based DevTool communicationLars-Dominik Braun1-0/+253
Inspired by pychrome/aiochrome, but includes crash handling and async get() instead of callbacks.