https://github.com/patricktrainer/ducksay
Like cowsay, but with a duck :duck:
https://github.com/patricktrainer/ducksay
cowsay duckdb
Last synced: about 2 months ago
JSON representation
Like cowsay, but with a duck :duck:
- Host: GitHub
- URL: https://github.com/patricktrainer/ducksay
- Owner: patricktrainer
- License: mit
- Created: 2023-07-14T04:00:52.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-16T15:37:49.000Z (almost 3 years ago)
- Last Synced: 2025-03-18T09:13:46.492Z (about 1 year ago)
- Topics: cowsay, duckdb
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# :duck: ducksay
`ducksay` prints a duck and a message to the terminal.
Inspired by [cowsay](https://en.wikipedia.org/wiki/Cowsay)
### How to install
```
git clone git@github.com:patricktrainer/ducksay.git
cd ducksay
pip install -e .
```
### How to use
Simply pipe any string to `ducksay`.
```bash
$ echo "quack!" | ducksay
```
You can pipe [duckdb](duckdb.org) results to `ducksay`!
```bash
$ duckdb :memory: "select 'quack!' as msg" | ducksay
┌─────────┐
│ msg │
│ varchar │
├─────────┤
│ quack! │
└─────────┘
\
\
\ _.-.
__.-' , \
'--'-'._ \
'. \
)-- \ __.--._
/ .' '--.
. _/-._
: ____._/ _-'
'._ _.'-'
'-._ _.'
\_|/
__|||
>__/'
```