dinosay is a humble, simple, nice and paleolithic alternative to cowsay
Project description
dinosay
dinosay is a humble, simple, nice and paleolithic alternative to cowsay.
How did the idea come about?
The idea came from my two children.
To make them learn the syllables and then how to assemble them to form words,
I used cowsay on my terminal, so that they learned while having fun.
One day, they asked me: "Dad, isn't there a way to make a dinosaur talk too?" (both are dinosaur fans, like me).
So I used cowsay -f ~/dinosaur.cow
, but I made a very simple one.
The next day, I thought about how to reproduce it in python (my primary programming language) and opened this project.
Differences
dinosay is an alternative and not a replacement. The library is not meant to be cowsay's rewrite. If you are looking for this then you need to go to pycowsay.
Features
dinosay implements most of the functionality of cowsay, adding freedom in the individual elements. For example, you can add the tongue element or replace the eyes by specifying the eye parameter. If you have suggestions or new implementations, or you are an ASCII designer and would like your template to be added to the dinosaur library, open an issue using the dinosay-enhancement issue template, attaching your creation if possible. Below you will find instructions for building your template.
Installation
Unlike its cousin cowsay, dinosay is written in python.
dinosay can be used on the command line or as a python module, to give a dinosaur touch!
For install package, see below:
$ pip install dinosay # for python enviroment
$ dnf copr enable matteoguadrini/dinosay
$ dnf install python-dinosay -y # for Red Hat, CentOS, Mageia and fedora
$ wget https://github.com/MatteoGuadrini/dinosay/releases/download/<version>/dinosay-<version>-1.noarch.rpm -O dinosay.rpm
$ yast -i dinosay.rpm # for SLES and OpenSUSE
$ apt-get install alien # for debian based and ubuntu based, see here
$ alien -i dinosay.rpm
$ git clone https://github.com/MatteoGuadrini/dinosay.git && cd dinosay
$ python setup.py install # for other
Command line
From the command line, dinosay looks like this:
$ dinosay --help
usage: dinosay [-h] [--version] (-d DINOSAUR | -r | -f FILE | -l) [-c COLOR] [-b BEHAVIOR] [-i]
[-t] [-e EYE] [-w WRAP]
[message]
print messages via ASCII dinosaurs
positional arguments:
message message to print
optional arguments:
-h, --help show this help message and exit
--version, -v show program's version number and exit
-d DINOSAUR, --dinosaur DINOSAUR
dinosaur to print
-r, --random random dinosaur to print
-f FILE, --file FILE file containing ASCII to print
-l, --list list of all dinosaurs and parts
-c COLOR, --color COLOR
color dinosaur
-b BEHAVIOR, --behavior BEHAVIOR
behavior of dinosaur
-i, --idea idea's speech bubble
-t, --tongue shape of the tongue
-e EYE, --eye EYE shape of the eye
-w WRAP, --wrap WRAP length of the message
_____ __ __ __ ______ ______ ______ __ __
/\ __-. /\ \ /\ "-.\ \ /\ __ \ /\ ___\ /\ __ \ /\ \_\ \
\ \ \/\ \ \ \ \ \ \ \-. \ \ \ \/\ \ \ \___ \ \ \ __ \ \ \____ \
\ \____- \ \_\ \ \_\\"\_\ \ \_____\ \/\_____\ \ \_\ \_\ \/\_____\
\/____/ \/_/ \/_/ \/_/ \/_____/ \/_____/ \/_/\/_/ \/_____/
$ dinolist
DINOSAY list elements and dinosaurs
===================================
DINOSAURS - ALIAS: BEHAVIOR: EYE: COLORS:
- tyrannosaurus - trex - normal - classic: O O - purple
- dimetrodon - dim - happy - borg: = = - cyan
- ankylosaur - anky - joking - stoned: * * - darkcyan
- hypsilophodon - hypsi - lazy - glass: 0-0 - blue
- stegosaurus - stego - tired - hypno: @ @ - green
- deinonychus - deino - nerd - rage: ° ° - yellow
- pterodactyl - ptero - cyborg - ko: x x - red
- archaeopteryx - archa - dead - happy: ^ ^ - default
- maiasaur - maia - trance - closed: - -
- pleisiosaur - plei - stoned
- brachiosaur - brachio
- corythosaur - cory
- parasaurolophus - para
- triceratops - trice
Python module
Instead, using it as a python module, we'll do it like this:
from dinosay import dinoprint, DINO_TYPE
msg = "Hi, I'm dinosay!"
dinoprint(msg, DINO_TYPE['tyrannosaurus'])
Or like this:
from dinosay import dinostring, DINO_ALIAS
msg = "Hi, I'm dinosay!"
return dinostring(message, DINO_ALIAS['brachio'], 'happy')
Custom template
If you want to build a custom template to parse to cowsay's file parameter, then you should follow these guidelines.
The template will have to use ASCII characters, and can use some substitution variables. The variables are included in this table:
Name | Description |
---|---|
$comic | Variable indicating the positioning of the message to be printed. IMPORTANT! if it is missing, the message will NOT be printed. |
$eyes | Variable indicating the substitution characters of the eyes. The pattern must be the following: character-space-character . |
$eye | Same as $eyes but only prints the first character, so it represents a single eye. |
$tongue | Variable indicating language substitution characters. It can be single, or multiple, for example \_\ . |
Simple template example
This is a simple template:
$ cat <<EOF >> /tmp/trex.ascii
$comic
O_
/ >
- > ^\
/ > ^ /
($eye) > ^ / / / /
_____ | \\|//
/ __ \ _/ / / _/
/ / | | / / / /
_/ |___/ / _/ ------_/ /
==_| \____/ _/ / ______/
\ \ __/ |\
| \_ ____/ / \ _
\ \________/ |\ \----/_V
\_ / \_______ V
\__ / \ / V
\ \ \
\______ \_ \
\__________\_ \
/ / \_ |
| _/ \ |
/ _/ \ |
| / | |
\ \__ | \__
/\____=\ /\_____=\
EOF
$ dinosay -f /tmp/trex.ascii -e happy "I'm a crazy dinosaur"
Open source
dinosay is a open source project. Any contribute, It's welcome.
A great thanks.
For donations, press this
For me
For Telethon
The Telethon Foundation is a non-profit organization recognized by the Ministry of University and Scientific and Technological Research. They were born in 1990 to respond to the appeal of patients suffering from rare diseases. Come today, we are organized to dare to listen to them and answers, every day of the year.
Acknowledgments
Thanks to Mark Lutz for writing the Learning Python and Programming Python books that make up my python foundation.
Thanks to Kenneth Reitz and Tanya Schlusser for writing the The Hitchhiker’s Guide to Python books.
Thanks to Dane Hillard for writing the Practices of the Python Pro books.
Special thanks go to my wife, who understood the hours of absence for this development. Thanks to my children, for the daily inspiration they give me and to make me realize, that life must be simple.
Thanks Python!
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 Distributions
Built Distribution
File details
Details for the file dinosay-1.2.0-py3-none-any.whl
.
File metadata
- Download URL: dinosay-1.2.0-py3-none-any.whl
- Upload date:
- Size: 26.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.6.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7fb8653098d0c1a61c3c02b3bf2076704a02d7b6def5e5df88dc8de9d01ed1a8 |
|
MD5 | 1367455fd5fba42cdbf002a66d0fb389 |
|
BLAKE2b-256 | f3d0d0b6b30c26bbb1bcc5238af26b96f0640da89da244f04531057c01182dfb |