cowsay-python
cowsay-python copied to clipboard
The famous cowsay 🐮 for GNU/Linux is now available for python
``` DEPRECATION: Python 3.5 reached the end of its life on September 13th, 2020. Please upgrade your Python as Python 3.5 is no longer maintained. ``` https://github.com/VaasuDevanS/cowsay-python/blob/86dc86e713e0654c31e37556853140723527fbcc/setup.py#L5 https://github.com/VaasuDevanS/cowsay-python/blob/2c2c301b1a7ffa91b92273503fd673d6a9c8a50f/.github/workflows/cowsay.yaml#L11
A cool feature that allows users to create their own custom characters and send them to ` get_output_string()` and be able to see their messages being poped up by their...
This PR drops python 3.5 support. Closes #17
Since Chinese characters are full-width (twice larger than half-width characters, e.g., ASCII characters), the previous version break lines corresponding to the length of a string but not the true width...
It would be great if cowsay command-line tool supported piping into it, eg. ``` echo Hello, world! | cowsay ``` As a simple way to implement it, you could use...
Using python built-in library textwrap.
added character mashiro a pretty girl
This pull request adds the python logo in ASCII ART to also be called. Example: cowsay.python("Hello world!")
This pull request includes several changes to the `cowsay/__main__.py` file to enhance its functionality and improve user experience. The most important changes include adding support for reading input from stdin,...