Metadata-Version: 2.1
Name: pythonsay
Version: 0.0.1
Summary: A small example package for the pythonsay project. The main purpose is to show how to create a package with automated tests.
Author-email: Matheus Cafalchio <mcafalchio@gmail.com>
Project-URL: Homepage, https://github.com/cafalchio/pythonsay
Project-URL: Bug Tracker, https://github.com/cafalchio/pythonsay/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Pythonsay

Simple Python Cowsay implementation.

## Installation

    pip install pythonsay

## Usage

### Arguments

- -h, --help show this help message and exit
- -c, --cow Print a cow
- -py, --python Print a python
- -pb, --big Print a big python

**Examples:**

    python pythonsay.py -c "Hello World"

    < Hello World! >
      ------------
           \   ^__^
            \  (oo)\_______
               (__)\       )\/\
                U  ||----w |
                   ||     ||

    python pythonsay.py -py "Hello World"


        < Hello World! >
        ____________
                \
                 \      /^\/^\
                  \   _|_O|  O|
              \/     /~     \_/ \
               \____|__________/  \
                    \_______      \
                            `\     \                 \
                             /     /                  \
                            /     /                    \
                          /     /                       \\
                        /     /                         \ \

    python pythonsay.py -pb "Hello World!"

    < Hello World! >
     ____________
          \
           \      /^\/^\
            \   _|_O|  O|
        \/     /~     \_/ \
         \____|__________/  \
               \_______      \
                       `\     \                 \
                        /     /                  \
                      /     /                    \
                    /     /                       \\
                   /     /                         \ \
                  /     /                            \  \
                 /     /             _----_            \   \
                /     /           _-~      ~-_         |   |
               (      (        _-~    _--_    ~-_     _/   |
                \      ~-____-~    _-~    ~-_    ~-_-~    /
                 ~-_           _-~          ~-_       _-~
                    ~--______-~                ~-___-~



                Art and idea by:  Tony Monroe

## About Cowsay

The original cowsay for GNU/Linux was written by Tony Monroe.

## About Pythonsay

The main idea is to use the cowsay program to complete the Python cicle from code to package, automated tests and documentation.
