#!/usr/bin/env python
#randpass.py - <3
#Just a simple random password generator in Python
#"Random" isn't so random, actually..
#http://scaredkid.org/
#this makes robotic 16 character passwords
#I can't keep coding without BTC: 1JmS81r4n11WmfUUKJfKUfp7Weym6p7iqN
import random
print 'randpass.py - random fucking passwords\nhttp://scaredkid.org/\n'
charblock = "abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ!@#$%^&*"
character_data_length = 16
password = ""
for i in range(character_data_length):
next_index = random.randrange(len(charblock))
password = password + charblock[next_index]
print 'Your 16 character password is: ' + (password)
#EOF