A Django template-tag for fortunes.
Project description
django-fortune
A Django template-tag that provides a fortune.
The Template Tag
{% load fortune_tags %}
{% fortune %}
The Management Commands
$ python manage.py fortune # Get a fortune.
Fortunes will improve after loading some. # Oops, no fortunes loaded.
$ python manage.py fortune_list_packs # List available fortune packs.
-- Installed: --
-- Available: --
art
ascii-art
computers
cookie
definitions
.
.
$ python manage.py fortune_load_pack art # Load art fortunes.
$ python manage.py fortune # Get an art fortune.
"My life is a soap opera, but who has the rights?"
-- Madame
$ python manage.py fortune_unload_pack art # Unload art fortunes.
$ python manage.py fortune # No fortunes available again. :-(
Fortunes will improve after loading some.
$
The Python Interface
$ python manage.py shell
.
.
>>> from fortune.models import Fortune, Pack
>>> Fortune.fortune()
'Fortunes will improve after loading some.'
>>> from fortune import utils
>>> fortunes_path = utils.get_fortunes_path()
>>> art_fortunes_path = fortunes.path.joinpath("art")
>>> Pack.load(str(art_fortunes_path))
>>> Fortune.fortune()
u"\nThey can't stop us... we're on a mission from God!\n\t\t-- The Blues Brother"
>>> art_fortunes = Pack.objects.get(name="art".title())
>>> art_fortunes.unload()
>>> Fortune.fortune()
'Fortunes will improve after loading some.'
>>>
Installation
Install using pip;
$ pip install django-fortune
then add “fortune” to INSTALLED_APPS in your app’s settings.py.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-fortune-1.1.1.tar.gz
(1.0 MB
view details)
File details
Details for the file django-fortune-1.1.1.tar.gz.
File metadata
- Download URL: django-fortune-1.1.1.tar.gz
- Upload date:
- Size: 1.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9cb8c8538a69fc87b13fd17b6787a57f24fd6fa89748ab5357f4a6a949697f5
|
|
| MD5 |
d4579450b71ab6533f5160e279033a22
|
|
| BLAKE2b-256 |
afc626aa8b536d0dfc7cfe9eb869984e5b90fbfe7ee79579b9ff3e15021e2c83
|