Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/frasertweedale/recall
recall game client
https://github.com/frasertweedale/recall
Last synced: 6 days ago
JSON representation
recall game client
- Host: GitHub
- URL: https://github.com/frasertweedale/recall
- Owner: frasertweedale
- License: mit
- Created: 2013-08-08T11:36:27.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-08-12T13:47:02.000Z (over 11 years ago)
- Last Synced: 2023-04-08T21:58:47.437Z (over 1 year ago)
- Language: Python
- Size: 137 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
recall
======recall is a simple recall/concentration game client that plays the
game implemented by https://github.com/frasertweedale/recall-server
or by other services implementing the same API. It also provides a
local game mode.The client provides a curses interface for playing the game but if
you are lazy you can let a built-in automatic mode with a perfect
memory play the game for you.Instructions
------------recall requires Python 2.7. There is no install script (yet), but
you can run the client in-place. This guide assume you are using
virtualenv.First download recall and install the dependencies:
mkvirtualenv recall
pip install requests
git clone https://github.com/frasertweedale/recall.git
cd recallTo run the client (interactive mode):
python -m recall --url "http://base-url-for-the-game-server"
To run the automatic player, supply `--auto`. If you want to play a
local game instead of playing on a recall server, supply `--local`.