# Setup ```bash pip install -r requirements.txt ``` # Formatting ```bash yapf --style .style.yapf --recursive . ``` For VSCode - install yapf extension. Enable formatting using yap and the style file in this repo (there may be an easier way; I put this in my user settings json): ``` { "[python]": { "editor.formatOnSaveMode": "file", "editor.formatOnSave": true, "editor.defaultFormatter": "eeyore.yapf", "editor.formatOnType": false }, "yapf.args": ["--style", "/home/wizard/code/realestate-crawler/crawler/.style.yapf"] } ``` ADB commands (from `/Applications/BlueStacks.app/Contents/MacOS`): Set proxy ``` ./hd-adb shell settings put global http_proxy 192.168.9.110:8080 ``` Disable proxy: ``` /hd-adb shell settings put global http_proxy :0 ``` Connect adb ``` ./hd-adb connect 127.0.0.1:5555 ``` Disconnect adb ``` /hd-adb disconnect ```