blob: dd93b428215c8a8085e848806370e069020352e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env python3
import random
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))
|