https://github.com/mwja/catsay
Because why not
https://github.com/mwja/catsay
Last synced: 4 months ago
JSON representation
Because why not
- Host: GitHub
- URL: https://github.com/mwja/catsay
- Owner: mwja
- License: unlicense
- Created: 2021-06-17T08:52:01.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-06-17T08:52:05.000Z (almost 4 years ago)
- Last Synced: 2025-02-09T00:41:26.827Z (4 months ago)
- Language: Python
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Catsay
Because cowsay wasn't good enough.Here's a simple Python script to make cat say anything, also comes with faces and customisation!
## Installation
This has no external dependencies. You just need Python 3.6+.## Usage
```
usage: catsay.py [-h] [--face FACE] text [text ...]Cowsay, but better.
positional arguments:
text What will the cat say?optional arguments:
-h, --help show this help message and exit
--face FACE, -f FACE Pick face from: normal, sad, angry, hyper, smile, content or provide own
```### Examples
With provided faces:
```bash
$ py catsay.py han shot first -f angry
{\___/}
( > .<)
/ > han shot first$ py catsay.py well hello there -f content
{\___/}
( ^ -^)
/ > well hello there$ # With default face
$ py catsay.py resting face
{\____/}
( ● . ●)
/ > resting face
```With custom faces (if containing gaps, parentheses must be used):
```
$ py catsay.py that's rad -f "∪ ◡∪"
{\___/}
( ∪ ◡∪)
/ > that's rad
```