http://dl.dropbox.com/u/2326797/names/names.py
http://dl.dropbox.com/u/2326797/names/names.pickle
aren't I nice to you guys
http://dl.dropbox.com/u/2326797/names/names.pickle
aren't I nice to you guys

Thanks dude. I made a python script the other day to generate domain names that look like real words but aren't. It then dumps them into text files, 500 per file, for easy pasting into GoDaddy or other sites that check 500 at a time. Will post if there's interest.
Why not do DNS lookups to check availability?![]()
import string
alnum = string.letters + string.digits
"""
>>> alnum
'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'
"""
import random
import string
alnum = [x for x in string.letters + string.digits]
random.shuffle(alnum)
password = ''.join(alnum[0:8])
well done!
Here is a little short cut for doing `chars='ABC....789'`
That will let you do pythonic stuff like for creating random passwordsCode:import string alnum = string.letters + string.digits """ >>> alnum 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789' """
Code:import random import string alnum = [x for x in string.letters + string.digits] random.shuffle(alnum) password = ''.join(alnum[0:8])
alnum = [x for x in (string.letters + string.digits)*32]