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
<html> | |
<head> | |
<title></title> | |
</head> | |
<body> | |
<button class="intro" data-attr="intro">INTRO</button> | |
<button class="second-story" data-attr="second-story">SECOND STORY</button> | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> | |
<script type="text/javascript"> | |
$("button").on("click", function(){ |
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
var names = ["Emil", "Bunny", "Brande", "Jacquetta", "Arminda", "Holley", "Jacalyn", "Dawna", "Shirl", "Heidy", "Dedra", "Candyce", "Deanna", "Evelina", "Shawanna", "Nichelle", "Magali", "Shani", "Kerry", "Karyl", "Irving", "Shyla", "Jannet", "Bronwyn", "Eliz", "Harley", "Bethel", "Adelina", "Meagan", "Laquita", "Rafaela", "Jeannie", "Nicolle", "Lacresha", "Linnie", "Taina", "Ingeborg", "Pearlie", "Helga", "Laveta", "Carlos", "Azalee", "Amado", "Denisse", "Kelly", "Natisha", "Tanesha", "Refugio", "Jesusita", "Pheobe"] |
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> | |
<html> | |
<!-- head --> | |
<head> | |
</head> | |
<!-- body --> | |
<body> | |
</bdoy> | |
</html> |
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
from mechanize import Browser | |
import csv | |
import re | |
sitenumber = [] | |
with open('data.csv', 'rb') as csvfile: | |
test = csv.reader(csvfile) | |
for row in test: | |
sitenumber.append(row[0]) |
NewerOlder