A bot that plays the popular social game Trivia Crack. Running the bot will go through all games which are currently on your turn and play them to completion.
Using docker-compose:
$ docker-compose build
$ docker-compose run client
To build using docker:
$ docker build -t image-name .
To run the bot, execute:
$ bin/trivia-crack bot -e email -p password
- email is the e-mail you use to sign in to Trivia Crack (e.g. user@example.com).
- password is your Trivia Crack account password.
To deploy with docker:
$ docker run -d -e EMAIL=email -e PASSWORD=password image-name
Included is a CLI client that lets you manually input the answers to questions. To run this client, execute:
$ bin/trivia-crack play -e email -p password
Note: Currently, images are not display (for questions which include images).
- Fork it ( https://github.com/davidkus/triviacrack-client/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request