Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ $ cowsay -t "Hello World" -c "tux"
>>> cowsay.char_names
['beavis', 'cheese', 'cow', 'daemon', 'dragon', 'fox', 'ghostbusters', 'kitty',
'meow', 'miki', 'milk', 'octopus', 'pig', 'stegosaurus', 'stimpy', 'trex',
'turkey', 'turtle', 'tux']
'turkey', 'turtle', 'tux', 'cat', 'owl']


>>> cowsay.char_funcs
Expand Down
49 changes: 49 additions & 0 deletions cowsay/characters.py
Original file line number Diff line number Diff line change
Expand Up @@ -401,4 +401,53 @@
| / | \ |
''',

"cat": r'''
\ .-.
\ \ \
\ | |
\ | |
\ | |
\ ./\---/\ _,---._ | |
\ /^ ^ \,' `. ;
( O O ) ;
`.=o=__,' \
/ _,--.__ \
/ _ ) ,' `-. `-. \
/ ,' / ,' \ \ \ \
/ / / ,' (,_)(,_)
(,; (,,)
''',
"owl": r'''
\
\
\
\
\
\
\
\
\
\ ____
\ ,'' ''.
/ `-. .-' \
/( (O))((O) )
/'-..-'/\`-..|
,'\ `-.\/.--'|
,' ( \ |
,'( ( `._ |
/( ( ( ( | `-._ _,-;
/( ( ( ( (| ' ;
/ (( ( / /
// / /
// / / ,' /
// / ,' /
// / ,' ;
//_,-' ;
// /,,,,..-))-))\ /|
/; ; ;\ `. \ \ / |
/; ; ; ;\ \. . \/./
(; ; ;_,_,\ .: \ /
`-'-' | : . |:|
|. | : .|
''',
}
68 changes: 67 additions & 1 deletion cowsay/tests/solutions.py
Original file line number Diff line number Diff line change
Expand Up @@ -585,5 +585,71 @@
| /__/ /_/ |_| \_\ \__\ |
| / | \ |
""",

"cat": r"""
_________________________________________________
/ \
| Lorem ipsum dolor sit amet, consetetur sadipscing |
| elitr, sed diamnonumy eirmod tempor invidunt ut |
| labore et dolore magna aliquyam erat,sed diam vol |
| uptua. At vero eos et accusam et justo duo dolore |
| s et ea rebum. |
\ /
=================================================
\ .-.
\ \ \
\ | |
\ | |
\ | |
\ ./\---/\ _,---._ | |
\ /^ ^ \,' `. ;
( O O ) ;
`.=o=__,' \
/ _,--.__ \
/ _ ) ,' `-. `-. \
/ ,' / ,' \ \ \ \
/ / / ,' (,_)(,_)
(,; (,,)
""",
"owl": r"""
_________________________________________________
/ \
| Lorem ipsum dolor sit amet, consetetur sadipscing |
| elitr, sed diamnonumy eirmod tempor invidunt ut |
| labore et dolore magna aliquyam erat,sed diam vol |
| uptua. At vero eos et accusam et justo duo dolore |
| s et ea rebum. |
\ /
=================================================
\
\
\
\
\
\
\
\
\
\ ____
\ ,'' ''.
/ `-. .-' \
/( (O))((O) )
/'-..-'/\`-..|
,'\ `-.\/.--'|
,' ( \ |
,'( ( `._ |
/( ( ( ( | `-._ _,-;
/( ( ( ( (| ' ;
/ (( ( / /
// / /
// / / ,' /
// / ,' /
// / ,' ;
//_,-' ;
// /,,,,..-))-))\ /|
/; ; ;\ `. \ \ / |
/; ; ; ;\ \. . \/./
(; ; ;_,_,\ .: \ /
`-'-' | : . |:|
|. | : .|
""",
}
2 changes: 1 addition & 1 deletion cowsay/tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def test_char_names():
characters = ['beavis', 'cheese', 'daemon', 'cow', 'dragon',
'ghostbusters', 'kitty', 'meow', 'milk', 'stegosaurus',
'stimpy', 'turkey', 'turtle', 'tux',
'pig', 'trex', 'miki', 'fox', 'octopus']
'pig', 'trex', 'miki', 'fox', 'octopus', 'cat', 'owl']

assert len(cowsay.char_names) == len(characters)
assert cowsay.char_names == sorted(characters)
Expand Down