The lightweight python-based fortune cookie generator
The latest version can be installed by running pip3 install fortune-lite
from the command line.
fortune <options>
Argument | Description |
---|---|
-h, --help |
Prints a help-dialogue and exits. |
-v, --version |
Prints out version information and exits. |
-a, -all |
Selects from all databases, including offensive fortunes. |
-e, --equal |
Makes it equally likely that the fortune will be selected from any given category, as opposed to making all fortunes equally likely regardless of category. |
-f, --categories |
Instead of printing a fortune, just print a list of all fortune categories (files). |
-o, --offensive |
Only print fortunes marked as offensive. |
-w, --wait |
Wait the specified number of seconds after printing the fortune before exiting. |
Unlike other fortune programs, Fortune Lite is designed to parse fortunes out of specialized SQLite databases. By default, the Fortune Lite program looks for a database at ~/.fortune.db, and falls back to the prepackaged database if no database is found in the user's home directory.
Additionally, the $FORTUNE_DB
environment variable can be used to override the default database locations, in which case the fortune program will only fall back to the default locations in the event that no database is found at the location stored in $FORTUNE_DB
.
- Acquire the source code:
git clone https://github.com/buck-ross/fortune_lite.git
. - Enter the source directory:
cd fortune_lite
- (optional) Checkout the version you want to build:
git checkout tags/v1.0.1
- Build and install the package:
python3 setup.py install
Credit to fortune-mod
While Fortune Lite is a completely distinct and independent project from fortune-mod, we do currently use the datfile sources provided by fortune-mod in order to generate the SQLite fortune database. As such, the fortune-mod project deserves all credit for creating and the default fortune database.
Copyright © 2019 Buckley Ross
This project is licensed under the Apache License, Version 2.0 (Apache-2.0).
For a complete copy of the license, please see the included "LICENSE" file.