blob: 53e13a0fb1e0c14b7bb9691604bd2ae599b4dcb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env python3
import random
from ponysay import ponysay
for i in range(0, 1000):
pony = random.choice(ponysay.list_ponies_with_quotes())
print(ponysay.render_pony(pony, ponysay.random_quote(pony),
balloonstyle=ponysay.balloonstyles['cowsay'],
width=ponysay.termwidth,
center=True,
centertext=False))
|