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

https://github.com/stanislavkozlovski/python_wow

A console RPG game inspired by the Warcraft universe.
https://github.com/stanislavkozlovski/python_wow

console-game game python-3-6 python-adventure-game rpg-game sqlalchemy warcraft-universe

Last synced: 17 days ago
JSON representation

A console RPG game inspired by the Warcraft universe.

Awesome Lists containing this project

README

        

# A console turn-based RPG game inspired by the Warcraft universe, written in Python 3.6 using SQLAlchemy.
[![Code Climate](https://codeclimate.com/github/Enether/python_wow/badges/gpa.svg)](https://codeclimate.com/github/Enether/python_wow)
[![Build](https://travis-ci.org/Enether/python_wow.svg?branch=master)](https://travis-ci.org/Enether/python_wow)

The game itself is turn-based and works through user text commands.
The goal with this pet project is to create a somewhat complex game with good code structure, tests and documentation but most important of all: to learn how to handle a project bigger than 500 lines of code.
It's still very basic and I suggest that you download it and play around to see what it's about.
I have never had another project open to contributors before, so if anything is unclear or needs improvement please contact me - [email protected]

# Documentation
Still a work in progress
https://python-wow.readthedocs.io

# Dependancies
You will need the termcolor module to get this project running.
Downloadable here: https://pypi.python.org/pypi/termcolor
You will also need SQLAlchemy.
Downloadable from here: https://www.sqlalchemy.org/download.html or using `pip3 install sqlalchemy`

How to contribute: https://guides.github.com/activities/contributing-to-open-source/