├── .gitignore ├── README.md ├── casperjs ├── include │ └── jquery-1.10.2.min.js └── loveMachine.js ├── install.bat ├── install.ps1 └── webdriver └── loveMachine.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuv/loveMachine/HEAD/README.md -------------------------------------------------------------------------------- /casperjs/include/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuv/loveMachine/HEAD/casperjs/include/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /casperjs/loveMachine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuv/loveMachine/HEAD/casperjs/loveMachine.js -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuv/loveMachine/HEAD/install.bat -------------------------------------------------------------------------------- /install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuv/loveMachine/HEAD/install.ps1 -------------------------------------------------------------------------------- /webdriver/loveMachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuv/loveMachine/HEAD/webdriver/loveMachine.py --------------------------------------------------------------------------------