I found this awesome data faker on github that might come in handy for you guys.
https://github.com/joke2k/faker
I'm going to use it to generate fake names, addresses, etc... for when I need to fill up a little sqlite3 database. If you're wanting to get into optimizing your SQL commands, you might want to generate a ton of data if you don't already have a bunch of info already. It could also come in handy when generating fake names, businesses, etc for phishing and scamming emails (if you're into that sort of thing). You can also generate fake user agents.
I also saw that you can run it with certain locales and the info will be generated specifically for that locale (ru_RU generates Cyrillic names and addresses with proper phone numbers, etc.. and de_DE generates German info. It defaults to en_EN)
I know the idea of a faker isn't new (even if it is new to me), in fact in the readme it states that it was heavily inspired by the ruby's Faker Perl's Data::Faker, and PHP's Faker (links to all of those in the readme); however, this one's in python, a language that I actually know.
P.S. Should this go in the security tools board? Or the found it on the webs board? I'm not sure.