├── .gitignore ├── BackEnd ├── automate │ └── Find my phone.flo ├── config.py ├── requirements.txt ├── run.py └── src │ ├── Controller.py │ ├── Models.py │ ├── Views.py │ └── __init__.py ├── IdentifyWebpage ├── IdentifyWebpage.py ├── greenpage.html ├── readme.md ├── requirements.txt └── snapshot.png ├── LICENSE ├── burndown_chart ├── Burn+Down+Chart.ipynb ├── readme.md └── test.xlsx └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | alarmclock.txt 3 | __pycache__/ 4 | *.pyc 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /BackEnd/automate/Find my phone.flo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingname/Automatic/HEAD/BackEnd/automate/Find my phone.flo -------------------------------------------------------------------------------- /BackEnd/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingname/Automatic/HEAD/BackEnd/config.py -------------------------------------------------------------------------------- /BackEnd/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingname/Automatic/HEAD/BackEnd/requirements.txt -------------------------------------------------------------------------------- /BackEnd/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingname/Automatic/HEAD/BackEnd/run.py -------------------------------------------------------------------------------- /BackEnd/src/Controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingname/Automatic/HEAD/BackEnd/src/Controller.py -------------------------------------------------------------------------------- /BackEnd/src/Models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingname/Automatic/HEAD/BackEnd/src/Models.py -------------------------------------------------------------------------------- /BackEnd/src/Views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingname/Automatic/HEAD/BackEnd/src/Views.py -------------------------------------------------------------------------------- /BackEnd/src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingname/Automatic/HEAD/BackEnd/src/__init__.py -------------------------------------------------------------------------------- /IdentifyWebpage/IdentifyWebpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingname/Automatic/HEAD/IdentifyWebpage/IdentifyWebpage.py -------------------------------------------------------------------------------- /IdentifyWebpage/greenpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingname/Automatic/HEAD/IdentifyWebpage/greenpage.html -------------------------------------------------------------------------------- /IdentifyWebpage/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingname/Automatic/HEAD/IdentifyWebpage/readme.md -------------------------------------------------------------------------------- /IdentifyWebpage/requirements.txt: -------------------------------------------------------------------------------- 1 | Pillow==3.4.2 2 | -------------------------------------------------------------------------------- /IdentifyWebpage/snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingname/Automatic/HEAD/IdentifyWebpage/snapshot.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingname/Automatic/HEAD/LICENSE -------------------------------------------------------------------------------- /burndown_chart/Burn+Down+Chart.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingname/Automatic/HEAD/burndown_chart/Burn+Down+Chart.ipynb -------------------------------------------------------------------------------- /burndown_chart/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingname/Automatic/HEAD/burndown_chart/readme.md -------------------------------------------------------------------------------- /burndown_chart/test.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingname/Automatic/HEAD/burndown_chart/test.xlsx -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingname/Automatic/HEAD/readme.md --------------------------------------------------------------------------------