root/tags/0.8a6/codename.py

Revision 25, 0.6 kB (checked in by kevin, 3 years ago)

documentation updates and a top secret way to generate codenames for
the fabulous upcoming TurboGears releases.

  • Property svn:executable set to *
Line 
1 #!/usr/bin/env python
2 names = ["aces", "amazing", "astonishing", "astounding",
3     "bang-up", "best", "breathtaking", "cool", "crack",
4     "doozie", "extravagant", "fab", "fantastic",
5     "first class", "gone", "groovy",
6     "immense", "in spades", "inconceivable", "incredible",
7     "legendary", "marvelous", "mind-blowing", "out-of-this-world",
8     "outrageous", "phenomenal", "primo", "prodigious",
9     "rad", "remarkable", "spectacular", "striking", "stupendous",
10     "super", "superb", "terrific", "top drawer", "tops", "turn-on",
11     "unbelievable", "unreal", "wicked", "wondrous"]
12
13 import random
14 print random.choice(names)
Note: See TracBrowser for help on using the browser.