Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ntoll/numberwang
A module and utility to recreate the gameshow "Numberwang" in Python (for educational purposes).
https://github.com/ntoll/numberwang
Last synced: 8 days ago
JSON representation
A module and utility to recreate the gameshow "Numberwang" in Python (for educational purposes).
- Host: GitHub
- URL: https://github.com/ntoll/numberwang
- Owner: ntoll
- License: mit
- Created: 2018-02-11T17:01:34.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-12T17:19:06.000Z (almost 7 years ago)
- Last Synced: 2024-09-27T16:15:44.599Z (about 2 months ago)
- Language: Python
- Size: 12.7 KB
- Stars: 3
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES.rst
- License: LICENSE
Awesome Lists containing this project
README
Numberwang.py
=============A utility to recreate the classic gameshow, Numberwang!
What's Numberwang..? See `this YouTube video from the first episode `_.
Installation
------------To install simply type::
$ pip install numberwang
Usage
-----Simply pass a sentence to the ``numberwang`` command. The sentence must contain
a number::$ numberwang The square root of -1
That's Numberwang!If you don't a response, it's because the sentence isn't Numberwang. In that
case, please try again.Development
-----------The source code is hosted in GitHub. Please feel free to fork the repository.
Assuming you have Git installed you can download the code from the canonical
repository with the following command::$ git clone https://github.com/ntoll/numberwang.git
Ensure you have the correct dependencies for development installed by creating
a virtualenv and running::$ pip install -r requirements.txt
There is a Makefile that helps with most of the common workflows associated
with development. Typing ``make`` on its own will list the options.