This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"><head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> | |
<meta name="description" content="Crypto Currency Conference 2013 (Oct. 5th) Atlanta, GA" /> | |
<meta name="robots" content="noindex" /> | |
<meta name="keywords" content="PHP, MySQL, bulletin, board, free, open, source, smf, simple, machines, forum" /> | |
<script language="JavaScript" type="text/javascript" src="https://bitcointalk.org/Themes/default/script.js?fin11"></script> | |
<script language="JavaScript" type="text/javascript"><!-- // --><![CDATA[ | |
var smf_theme_url = "https://bitcointalk.org/Themes/custom1"; | |
var smf_images_url = "https://bitcointalk.org/Themes/custom1/images"; | |
var smf_scripturl = "https://bitcointalk.org/index.php"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import urllib | |
from time import sleep | |
from datetime import datetime | |
TIME_INTERVAL = 900 # 15 minutes | |
def pull_page(name, folder_name, file_ext, pull_url): | |
print("Pulling {0}...".format(name)) | |
outfile = folder_name + "/" + folder_name + "_" + str(datetime.utcnow()).replace(' ', '_') + file_ext | |
urllib.urlretrieve(pull_url, filename=outfile) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def generate_email(f_name, l_name): | |
"""Returns a random email.""" | |
common_email_providers = ["hotmail", "msn", "aol", "yahoo", "gmail"] | |
dictionary = file_to_list('data/dictionary.txt') | |
dictionary = small_dict(dictionary, 6) | |
user = "" | |
for i in range(3): | |
rand = random.randrange(1, 6) | |
if rand == 1: |
NewerOlder