├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── drivers └── README.md ├── js ├── get_read.js └── get_unread.js ├── main.py ├── requirements.txt └── scripts └── read.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbshah97/What-omation/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbshah97/What-omation/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbshah97/What-omation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbshah97/What-omation/HEAD/README.md -------------------------------------------------------------------------------- /drivers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbshah97/What-omation/HEAD/drivers/README.md -------------------------------------------------------------------------------- /js/get_read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbshah97/What-omation/HEAD/js/get_read.js -------------------------------------------------------------------------------- /js/get_unread.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbshah97/What-omation/HEAD/js/get_unread.js -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbshah97/What-omation/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | selenium==3.10.0 -------------------------------------------------------------------------------- /scripts/read.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbshah97/What-omation/HEAD/scripts/read.sh --------------------------------------------------------------------------------