Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gbzarelli/hangman-python
[Python] Welcome to the Hangman Game, this is my first real project in Python.
https://github.com/gbzarelli/hangman-python
circleci coverage coveralls game hangman python python3
Last synced: 11 days ago
JSON representation
[Python] Welcome to the Hangman Game, this is my first real project in Python.
- Host: GitHub
- URL: https://github.com/gbzarelli/hangman-python
- Owner: gbzarelli
- Created: 2020-01-30T16:11:13.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-07T11:40:22.000Z (over 4 years ago)
- Last Synced: 2023-07-13T15:51:12.529Z (over 1 year ago)
- Topics: circleci, coverage, coveralls, game, hangman, python, python3
- Language: Python
- Homepage:
- Size: 31.3 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![Issues](https://img.shields.io/github/issues/gbzarelli/hangman-python.svg)
![Forks](https://img.shields.io/github/forks/gbzarelli/hangman-python.svg)
![Stars](https://img.shields.io/github/stars/gbzarelli/hangman-python.svg)
![Release Version](https://img.shields.io/github/release/gbzarelli/hangman-python.svg)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/8d9e9f45ae924fce875a6fb4d6ffe80d)](https://app.codacy.com/manual/gbzarelli/hangman-python?utm_source=github.com&utm_medium=referral&utm_content=gbzarelli/hangman-python&utm_campaign=Badge_Grade_Dashboard)
[![Coverage Status](https://coveralls.io/repos/github/gbzarelli/hangman-python/badge.svg?branch=master)](https://coveralls.io/github/gbzarelli/hangman-python?branch=master)# Hangman Game [![CircleCI](https://circleci.com/gh/gbzarelli/hangman-python.svg?style=svg)](https://circleci.com/gh/gbzarelli/hangman-python)
Welcome to the Hangman Game, this is my first real project in Python.
# Terminal Display
Representation of images of the game running in the terminal
#### Start game
*********************************
***Welcome to the Hangman Game***
******Discover the last name*****
*********************************
The secret word contains 6 chars
['_', '_', '_', '_', '_', '_']
_______
| |
|
|
|
|
You have 6 life
Enter with a new char
_#### Win game
Enter with a new char
n
['e', 'a', 't', 'o', 'n']
_______
| |
| O
| /|\
| /
|
You have 1 life
You WIN the game: Eaton#### Lost Game
Enter with a new char
i
['b', 'e', '_', 'd', 'e', '_']
_______
| |
| O
| /|\
| / \
| ((dead))
You have 0 lifeYou LOST, the word is: Bender
# How to run the Hangman GameThe following steps have been documented to be executed on a
Linux platform, but the commands with the Windows system may
be similar, but the operation is not fully guaranteed.- Clone the repository
$ git clone https://github.com/gbzarelli/hangman-python
- Access the folder
$ cd ./hangman-python
- Install game$ make install
- Run unit tests:
$ make test_unit
- Run the game
$ make start
# Developer**Guilherme Biff Zarelli**
- Blog/Site - https://helpdev.com.br
- LinkedIn - https://linkedin.com/in/gbzarelli/
- GitHub - https://github.com/gbzarelli
- Email - [email protected]