How to use the cowpy.cow.Sodomized function in cowpy

To help you get started, we’ve selected a few cowpy examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github jeffbuttars / cowpy / cowpy / cow.py View on Github external
def __init__(self, **kwargs):
        kwargs['body'] = (
            "      {thoughts}                _\n"
            "       {thoughts}              (_)\n"
            "        {thoughts}   ^__^       / \\\n"
            "         {thoughts}  ({eyes})\\_____/_\\ \\\n"
            "            (__)\\       ) /\n"
            "             {tongue} ||----w ((\n"
            "                ||     ||>> ")
        super(Sodomized, self).__init__(**kwargs)
github jeffbuttars / cowpy / cowpy / cow.py View on Github external
class Sodomized(Cowacter):
    def __init__(self, **kwargs):
        kwargs['body'] = (
            "      {thoughts}                _\n"
            "       {thoughts}              (_)\n"
            "        {thoughts}   ^__^       / \\\n"
            "         {thoughts}  ({eyes})\\_____/_\\ \\\n"
            "            (__)\\       ) /\n"
            "             {tongue} ||----w ((\n"
            "                ||     ||>> ")
        super(Sodomized, self).__init__(**kwargs)


COWACTERS['sodomized'] = Sodomized


class Squirrel(Cowacter):
    def __init__(self, **kwargs):
        kwargs['body'] = (
            "  {thoughts}\n"
            "     {thoughts}\n"
            "                  _ _\n"
            "       | \__/|  .~    ~.\n"
            "       /{eyes} `./      .'\n"
            "      {{o__,   \    {{\n"
            "        / .  . )    \\\n"
            "        `-` '-' \    }}\n"
            "       .(   _(   )_.'\n"
            "      '---.~_ _ _|")
        super(Squirrel, self).__init__(**kwargs)
github ZeroEpoch1969 / RubyRoseBot / utils / tools.py View on Github external
"cow":cow.Cowacter(),
    "hellokitty":cow.HelloKitty(),
    "bunny":cow.Bunny(),
    "cheese":cow.Cheese(),
    "milk":cow.Milk(),
    "bong":cow.BongCow(),
    "eyes":cow.Eyes(),
    "legitvore":cow.HeadInCow(),
    "666":cow.Satanic(),
    "frogs":cow.BudFrogs(),
    "daemon":cow.Daemon(),
    "moofasa":cow.Moofasa(),
    "mutilated":cow.Mutilated(),
    "skeleton":cow.Skeleton(),
    "small":cow.Small(),
    "excusemewhatthefuck":cow.Sodomized(),
    "garfield":cow.Stimpy(),
    "tux":cow.Tux(),
    "vader":cow.Vader()
}

def write_file(filename, contents):
    with open(filename, "w", encoding="utf8") as file:
        for item in contents:
            file.write(str(item))
            file.write("\n")

def download_file(url, destination):
    req = requests.get(url)
    file = open(destination, "wb")
    for chunk in req.iter_content(100000):
        file.write(chunk)