{"id":24522792,"url":"https://github.com/gbzarelli/hangman-python","last_synced_at":"2026-05-18T18:41:43.394Z","repository":{"id":180990169,"uuid":"237251418","full_name":"gbzarelli/hangman-python","owner":"gbzarelli","description":"[Python] Welcome to the Hangman Game, this is my first real project in Python.","archived":false,"fork":false,"pushed_at":"2020-05-07T11:40:22.000Z","size":32,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-15T13:24:57.011Z","etag":null,"topics":["circleci","coverage","coveralls","game","hangman","python","python3"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gbzarelli.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2020-01-30T16:11:13.000Z","updated_at":"2022-05-12T13:07:04.000Z","dependencies_parsed_at":null,"dependency_job_id":"bf922b4f-ace3-4fe2-9e05-b7bc839ad9b2","html_url":"https://github.com/gbzarelli/hangman-python","commit_stats":null,"previous_names":["gbzarelli/hangman-python"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/gbzarelli/hangman-python","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gbzarelli%2Fhangman-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gbzarelli%2Fhangman-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gbzarelli%2Fhangman-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gbzarelli%2Fhangman-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gbzarelli","download_url":"https://codeload.github.com/gbzarelli/hangman-python/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gbzarelli%2Fhangman-python/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33187753,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-18T09:27:30.708Z","status":"ssl_error","status_checked_at":"2026-05-18T09:27:28.300Z","response_time":71,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["circleci","coverage","coveralls","game","hangman","python","python3"],"created_at":"2025-01-22T03:35:40.497Z","updated_at":"2026-05-18T18:41:43.357Z","avatar_url":"https://github.com/gbzarelli.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Issues](https://img.shields.io/github/issues/gbzarelli/hangman-python.svg)\n![Forks](https://img.shields.io/github/forks/gbzarelli/hangman-python.svg)\n![Stars](https://img.shields.io/github/stars/gbzarelli/hangman-python.svg)\n![Release Version](https://img.shields.io/github/release/gbzarelli/hangman-python.svg)\n[![Codacy Badge](https://api.codacy.com/project/badge/Grade/8d9e9f45ae924fce875a6fb4d6ffe80d)](https://app.codacy.com/manual/gbzarelli/hangman-python?utm_source=github.com\u0026utm_medium=referral\u0026utm_content=gbzarelli/hangman-python\u0026utm_campaign=Badge_Grade_Dashboard)\n[![Coverage Status](https://coveralls.io/repos/github/gbzarelli/hangman-python/badge.svg?branch=master)](https://coveralls.io/github/gbzarelli/hangman-python?branch=master)\n\n# Hangman Game [![CircleCI](https://circleci.com/gh/gbzarelli/hangman-python.svg?style=svg)](https://circleci.com/gh/gbzarelli/hangman-python)\n\n\u003cp align=\"center\"\u003e\n    \u003cimg src=\"./images/hangman_logo.png\" height=\"150\"\u003e\n\u003c/p\u003e\n\nWelcome to the Hangman Game, this is my first real project in Python.\n\n# Terminal Display\n\nRepresentation of images of the game running in the terminal\n\n#### Start game\n\n    *********************************\n    ***Welcome to the Hangman Game***\n    ******Discover the last name*****\n    *********************************\n    \n    The secret word contains 6 chars\n    \n    ['_', '_', '_', '_', '_', '_']\n    \n                _______\n                |     |\n                |   \n                |   \n                |   \n                |\n                \n    You have 6 life \n    \n    Enter with a new char\n    _\n\n#### Win game\n\n    Enter with a new char\n    n\n    ['e', 'a', 't', 'o', 'n']\n    \n            _______\n            |     |\n            |     O\n            |    /|\\\n            |    / \n            |\n            \n    You have 1 life \n    \n    You WIN the game: Eaton\n\n#### Lost Game\n\n    Enter with a new char\n    i\n    ['b', 'e', '_', 'd', 'e', '_']\n    \n                _______\n                |     |\n                |     O\n                |    /|\\\n                |    / \\\n                |  ((dead))\n                \n    You have 0 life \n\n    You LOST, the word is: Bender\n    \n# How to run the Hangman Game\n\nThe following steps have been documented to be executed on a \nLinux platform, but the commands with the Windows system may \nbe similar, but the operation is not fully guaranteed.\n\n- Clone the repository\n\n        $ git clone https://github.com/gbzarelli/hangman-python\n    \n- Access the folder\n        \n        $ cd ./hangman-python\n        \n- Install game\n\n        $ make install\n\n- Run unit tests:\n\n        $ make test_unit\n\n- Run the game\n\n        $ make start\n        \n# Developer\n\n**Guilherme Biff Zarelli**\n- Blog/Site - https://helpdev.com.br\n- LinkedIn - https://linkedin.com/in/gbzarelli/\n- GitHub - https://github.com/gbzarelli\n- Email - gbzarelli@helpdev.com.br\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgbzarelli%2Fhangman-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgbzarelli%2Fhangman-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgbzarelli%2Fhangman-python/lists"}