Metadata-Version: 2.1
Name: primer-coin-game
Version: 1.0.2
Summary: Python implementation of the Primer coin flip game
Home-page: https://github.com/ErikKarlen/primer-coin-game-python
Author: Erik Karlen
Author-email: erik.karlen@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/ErikKarlen/primer-coin-game-python/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Python Implementation of Primer Coin Game

Python implementation of Primer's Coin Game which can be used for testing and simulations.
To find out more about the game see [Primer's video](https://www.youtube.com/watch?v=QC91Bf8hQVo/) and try the [original game](https://primerlearning.org/).

## Getting Started

### Dependencies

To run the simulator you just need Python 3.6+ installed. 

### Installing

Go to https://www.python.org/ for instruction how to install Python on your machine.
Use pip to install the package, e.g.:
```
# python3 -m pip install --upgrade primer-coin-game
```

Another way to install it is by manually cloning the repo and you should be able to run it. To clone you can use:
```
# git clone https://github.com/ErikKarlen/primer-coin-game-python.git
```

### Executing program

Try running the example simulator in a terminal, e.g using:
```
# cd primer-coin-game-python
# python simulate.py
```
Feel free to try and implement your own generate_action function to see if you can make it more efficient and get a higher score.

## Authors

Erik Karlén

## Version History

* 1.0
  *  Initial working game and sim

## License

This project is licensed under the MIT License - see the LICENSE file for details

## Acknowledegments

* [Primer](https://www.youtube.com/watch?v=QC91Bf8hQVo) - Thanks for creating the original game and making awesome videos


