A package that gives you your daily dose of fun!
Project description
Python dailydose
Package
Boredom kills. Here's a package that gives you a daily dose of fun!
Team Members
Installation
Install the dailydose
module with pip
.
Usage
Once installed, dailydose
gives access to the package's 4 special features: today's news in different fields (per Vox Media), random fun facts, and the games of hangman and battleship. The variety of the collection is inspired by the traditional newspaper/magazine experience, in which both information and thought-provoking entertainment is regularly provided. This package is ideal for any program that operates on changing content or stimulating applications.
dailydose supports a command-line interface (CLI). To choose one of the above options, simply call:
$ python3 -m dailydose
Upon running the package, a main menu is displayed in which your options are listed. Access each feature by entering their corresponding menu number.
Fun Stuffs To Do
Fun Facts
-
To see a fun fact, press 1 when the main menu is prompted. A random fun fact from TheFactSite will be printed.
-
After that, you will be redirected to the main menu.
Newsfeed
-
To see today's news, press 2 when the main menu is prompted. Immediately after, you will be given a list of options to read about: Culture, Politics, Science, World, Technology, Environment, and Business. You also have the option to return to the main menu.
-
Select a field by entering the corresponding listed number. Today's top headlines in the chosen field, as published by Vox Media, as well as a link to read more are printed.
-
The content is sourced from their website and therefore changes accordingly.
-
Upon receiving the headlines, you will be redirected to the main menu.
Hangman Game
-
To play the hangman game, press 3 when the main menu is prompted.
-
You will then be asked to enter the length of the word you want to guess.
-
Upon guessing the correct word or losing the game, you will be redirected to the main menu.
Battleship Game
-
To play the battleship game, press 4 when the main menu is prompted.
-
You will then be asked to enter the board dimensions and ship size. You can also choose to use the default settings.
-
Upon winning or exiting the game, you will be redirected to the main menu.
Importing the Package
1. fact.get
-- generate a list of random fun fact objects
fact.get(count=1, include_details=True)
Parameters
-
count
: how many non-duplicate fun fact objects to return- default: 1
- possible values: [1, 100], inclusive
-
include_details
: whether to return the detailed contents of the facts or only the headings- default: True
2. news.get_headlines
-- generate a list of headlines
news.get_headlines(subject, titular)
Parameters
-
subject
: category name in url slug format on Vox.com- possible values:
"culture"
,"policy-and-politics"
,"science-and-health"
,"world"
,"technology"
,"energy-and-environment"
,"business-and-finance"
- possible values:
-
titular
: a user-friendly display name for the category name- possible values: any
str
- possible values: any
3. hang.hangman
-- start an interactive hangman game
hang.hangma(num_letter=number_of_letters)
Parameters
num_letter
: the length of word you want to guess- possible values: a string make up of numbers, the length of word acceptable is in between [
"4"
,"10"
], inclusive
- possible values: a string make up of numbers, the length of word acceptable is in between [
4. battleship.main
-- start an interactive battleship game
battleship.main(ship_size="4", dimension="10")
Parameters
-
dimension
: the size of the board (dimension * dimension)- default:
"10"
- possible values: a string make up of numbers, the board dimension acceptable is in between (
"1"
,"10"
), inclusive
- default:
-
ship_size
: the size of the hidden battleship- default:
"4"
- possible values: a string make up of numbers, the ship size acceptable is in between (
"0"
,dimension
), exclusive
- default:
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for dailydose-0.0.7-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7f148368088830eea5142530d476c14f5076e6f8ebebbd57899cec2451974eac |
|
MD5 | 502c0f22d0146dcf5fc76241225090b1 |
|
BLAKE2b-256 | d1e26bfcf4083bae8d40256cd23723b7446700153dd31051da3dbf8f2b324268 |