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 @@ -137,7 +137,7 @@ $ cowsay -t "Hello World" -c "tux"
# More Characters
```pycon
>>> cowsay.char_names
['beavis', 'cheese', 'cow', 'daemon', 'dragon', 'fox', 'ghostbusters', 'kitty',
['beavis', 'cheese', 'cow', 'daemon', 'dragon', 'fox', 'ghostbusters', 'kitty', 'kitten',
'meow', 'miki', 'milk', 'octopus', 'pig', 'stegosaurus', 'stimpy', 'trex',
'turkey', 'turtle', 'tux']

Expand Down
10 changes: 10 additions & 0 deletions cowsay/characters.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,16 @@
_.. `--'_..-_/ /--' _ .' ,4
( i l ),-'' ( l i),' ( ( ! .-'
''',
"kitten": r'''
\
\
\
\
/|、
(゚、 。 7
| ~ヽ
じしf_,)ノ
''',


"meow": r"""
Expand Down
19 changes: 19 additions & 0 deletions cowsay/tests/solutions.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,25 @@
_.. `--'_..-_/ /--' _ .' ,4
( i l ),-'' ( l i),' ( ( ! .-'
""",
'kitten': 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. |
\ /
=================================================
\
\
\
\
/|、
(゚、 。 7
| ~ヽ
じしf_,)ノ
"""


'meow': r"""
Expand Down
2 changes: 1 addition & 1 deletion cowsay/tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
def test_char_names():

characters = ['beavis', 'cheese', 'daemon', 'cow', 'dragon',
'ghostbusters', 'kitty', 'meow', 'milk', 'stegosaurus',
'ghostbusters', 'kitty', 'kitten', 'meow', 'milk', 'stegosaurus',
'stimpy', 'turkey', 'turtle', 'tux',
'pig', 'trex', 'miki', 'fox', 'octopus']

Expand Down