An open API service indexing awesome lists of open source software.

https://github.com/the-argus/pyweek31

Cyber Cop Stealing Powers And Stuff! Wow!
https://github.com/the-argus/pyweek31

Last synced: about 1 month ago
JSON representation

Cyber Cop Stealing Powers And Stuff! Wow!

Awesome Lists containing this project

README

        

# pyweek31
Cyber Cop Stealing Powers And Stuff! Wow!

## Setup

```
python -m venv venv
```

Activate the virtual env.

```
pip install -r requirements.txt
```

Start the game
```
python run_game.py
```

## How To Play

Spacebar to use jetpack. WASD to move. Use the flames from your jetpack to damage enemies.

## Style

For style we use `black` a tool to auto format the code, use it with:
```
black .
```

We also sort import with `isort`:
```
isort .
```

You can run black after isort in some case the output differ.