An open API service indexing awesome lists of open source software.

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:

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! │
└─────────┘
\
\
\ _.-.
__.-' , \
'--'-'._ \
'. \
)-- \ __.--._
/ .' '--.
. _/-._
: ____._/ _-'
'._ _.'-'
'-._ _.'
\_|/
__|||
>__/'
```