https://github.com/teschmitt/arcadepong
Implementation of the game classic Pong with the Python Arcade Library
https://github.com/teschmitt/arcadepong
arcade-framework game pong python
Last synced: 8 months ago
JSON representation
Implementation of the game classic Pong with the Python Arcade Library
- Host: GitHub
- URL: https://github.com/teschmitt/arcadepong
- Owner: teschmitt
- License: mit
- Created: 2018-03-30T09:25:52.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-05T19:11:38.000Z (about 8 years ago)
- Last Synced: 2025-10-10T21:38:49.436Z (8 months ago)
- Topics: arcade-framework, game, pong, python
- Language: Python
- Size: 17.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ArcadePong
Implementation of the game classic Pong using Paul V Craven's Arcade Library. It started out just as a short test of the library's scope and ended up as a very fun and educational side project that actually taught me a lot.
## Getting Started
Grab a copy of `virtualenv` or `virtualenvwrapper` and set up a virtual environment with the Python 3.6 interpreter (see [Prerequisites](#prerequisites)) to separate the dependencies for this project. Then it's the same old same old:
```
git clone https://github.com/mrgnth/ArcadePong.git
pip install -r requirements
```
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
### Prerequisites
ArcadePong uses the wonderful [Arcade Library](https://github.com/pvcraven/arcade) for Python, which in turn depends on Python 3.6. Running `pip freeze` should give you something like this:
* arcade==1.3.0
* future==0.16.0
* Pillow==5.0.0
* pyglet==1.3.1
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details
## Acknowledgments
* Paul V Craven for all the work on his fun Arcade Library
* The original creator of Pong, [Allan Alcorn](https://en.wikipedia.org/wiki/Allan_Alcorn)
* Four Tet for the soundtrack of my coding experience