https://github.com/techno-sam/hungry-pythons
A snake game, where the objective is to grow as large as possible, while eating other snakes along the way, written in Python 3
https://github.com/techno-sam/hungry-pythons
game snakes
Last synced: 2 months ago
JSON representation
A snake game, where the objective is to grow as large as possible, while eating other snakes along the way, written in Python 3
- Host: GitHub
- URL: https://github.com/techno-sam/hungry-pythons
- Owner: techno-sam
- License: gpl-3.0
- Created: 2021-02-13T21:35:42.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-07-04T23:13:08.000Z (almost 3 years ago)
- Last Synced: 2025-02-07T04:13:35.455Z (4 months ago)
- Topics: game, snakes
- Language: Python
- Homepage:
- Size: 1.93 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hungry Pythons
A game similar to slither.io, written in Python 3.6## How you can help
See [projects](https://github.com/techno-sam/hungry-pythons/projects) tab.## Downloading Pre-built Binaries
1. Go to the [Releases](https://github.com/techno-sam/hungry-pythons/releases) tab
1. Open the development bulid for your operating system
1. Download the \\_binaries.zip file (for example, linux_binaries.zip) in the Assets section
1. Unzip the downloaded archive
1. See the [Recommended Parameters](#recommended-parameters) section of this readme for more information## Building
1. Clone or download this repository.
1. Install Python 3.6
1. Execute the following commands in the directory this README file is in.
1. python3 -m pip install --upgrade pip
1. python3 -m pip install pygame==1.9.6
1. pip install -r src/requirements.txt
1. python3 -m PyInstaller src/client2.spec
1. python3 -m PyInstaller src/server.spec
1. Find the binaries in ./dists/## Recommended Parameters
For client:
```shell
/path/to/client2 --host 127.0.0.1 --port 9999 --view_dist 475
```
For server:
```shell
/path/to/server --host 127.0.0.1 --port 9999 --border 2000 --timeout 15
```## Licensing
This project is licensed under the GNU General Public License v3.0.
For more information, see [license](LICENSE).