├── .gitignore ├── LICENSE ├── PyChromeDevTools └── __init__.py ├── README.md ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty90/PyChromeDevTools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty90/PyChromeDevTools/HEAD/LICENSE -------------------------------------------------------------------------------- /PyChromeDevTools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty90/PyChromeDevTools/HEAD/PyChromeDevTools/__init__.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty90/PyChromeDevTools/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | websocket-client 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty90/PyChromeDevTools/HEAD/setup.py --------------------------------------------------------------------------------