https://github.com/thecodeah/space-typer
A typing game written in Python using the Arcade library
https://github.com/thecodeah/space-typer
arcade-api arcade-framework python3 typing-game
Last synced: 5 months ago
JSON representation
A typing game written in Python using the Arcade library
- Host: GitHub
- URL: https://github.com/thecodeah/space-typer
- Owner: thecodeah
- License: apache-2.0
- Created: 2019-02-01T18:11:45.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2021-09-08T01:05:00.000Z (over 4 years ago)
- Last Synced: 2025-09-07T23:45:25.857Z (5 months ago)
- Topics: arcade-api, arcade-framework, python3, typing-game
- Language: Python
- Size: 80.1 KB
- Stars: 21
- Watchers: 2
- Forks: 8
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Space Typer
Space Typer is a typing game written in Python using the [Arcade](http://arcade.academy/) library.
## How to play
You can play the game by downloading the stand-alone binary version, which can be found in the releases.
Alternatively, you can install all of the dependencies, then run the python script yourself:
```
pip install --user -r requirements.txt && python main.py
```
Using pipenv :
```
pipenv sync && pipenv run python main.py
```

## Play with other words
Run the program with the option `--word-list .yaml` to use the
custom words in the indicated file, for example
python main.py --word-list words-en.yaml
This file is a [yaml](https://yaml.org/) file that you can easily edit with a
text editor.
Note for foreign languages: Currently only the basic set of
[Ascii characters](https://en.wikipedia.org/wiki/ASCII)
are supported, i.e. no umlauts, accents etc.