├── .gitignore ├── LICENSE ├── README.md ├── credentials.py ├── layer.py └── run.py /.gitignore: -------------------------------------------------------------------------------- 1 | credentials.py 2 | _* 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgitkene/yowbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgitkene/yowbot/HEAD/README.md -------------------------------------------------------------------------------- /credentials.py: -------------------------------------------------------------------------------- 1 | CREDENTIALS = ("phone", "password") 2 | -------------------------------------------------------------------------------- /layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgitkene/yowbot/HEAD/layer.py -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgitkene/yowbot/HEAD/run.py --------------------------------------------------------------------------------