-
Notifications
You must be signed in to change notification settings - Fork 2
/
PullData1020.py
174 lines (152 loc) · 6.88 KB
/
PullData1020.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
# -*- coding: utf-8 -*-
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By
import os
import csv
import time
import datetime
output = "LetterInfo.csv"
try:
os.remove(output)
except OSError:
pass
line = ["FNAME", "LNAME", "ADDRESS", "ADDRESS2", "CITY", "STATE", "ZIP"]
with open(output, 'w', newline='') as file1:
writer = csv.writer(file1, delimiter=',')
writer.writerow(line)
def get_driver():
options = Options()
options.add_experimental_option("excludeSwitches",
["ignore-certificate-errors", "safebrowsing-disable-download-protection",
"safebrowsing-disable-auto-update", "disable-client-side-phishing-detection"])
options.add_argument('--disable-infobars')
options.add_argument('--disable-extensions')
options.add_argument('--profile-directory=Default')
options.add_argument("--incognito")
options.add_argument("--disable-plugins-discovery")
prefs = {'profile.default_content_setting_values.automatic_downloads': 1}
options.add_experimental_option("prefs", prefs)
#options.add_argument("--headless")
driver = webdriver.Chrome('chromedriver', options=options)
return driver
def main():
BOOK = "NO.txt"
if os.path.isfile(BOOK):
with open(BOOK, 'r') as filehandle:
BOOK_NO = filehandle.readline()
if not BOOK_NO:
BOOK_NO = input("Please Input BOOKING NO :")
else:
BOOK_NO = input("Please Input BOOKING NO :")
driver = get_driver()
try:
print("running start time : " + str(datetime.datetime.now()))
url = "https://apps.co.lubbock.tx.us/jailrosters/activejail.aspx"
driver.get(url)
table = WebDriverWait(driver, 15).until(EC.presence_of_element_located((By.ID, 'gridaj')))
BOOKING = table.find_element_by_tag_name("td")
BOOKING.click()
table = WebDriverWait(driver, 15).until(EC.presence_of_element_located((By.ID, 'gridaj')))
BOOKING = table.find_element_by_tag_name("td")
BOOKING.click()
Next_check = 0
BOOK_check = True
MAX_check = 0
while BOOK_check == True:
table = WebDriverWait(driver, 15).until(EC.presence_of_element_located((By.ID, 'gridaj')))
BOOK_ARR = []
trs = table.find_elements_by_tag_name("tr")
for i, tr in enumerate(trs):
if i != 0:
BOOkN = tr.find_element_by_tag_name("td")
BOOK_ARR.append(BOOkN.text)
if MAX_check == 0:
BOOK_MAX = BOOK_ARR[0]
MAX_check += 1
sheets = table.find_elements_by_tag_name("input")
sheet_len = len(sheets)
idx = 0
while idx < sheet_len:
person = []
table = WebDriverWait(driver, 15).until(EC.presence_of_element_located((By.ID, 'gridaj')))
if int(BOOK_ARR[idx]) > int(BOOK_NO):
sheets = table.find_elements_by_tag_name("input")
main_window_handle = None
while not main_window_handle:
main_window_handle = driver.current_window_handle
sheets[idx].click()
time.sleep(1)
signin_window_handle = None
while not signin_window_handle:
for handle in driver.window_handles:
if handle != main_window_handle:
signin_window_handle = handle
break
driver.switch_to.window(signin_window_handle)
time.sleep(1)
driver.switch_to.frame(driver.find_element_by_tag_name("frame"))
time.sleep(1)
addr = driver.find_element_by_id("addr")
address = addr.text
if ("HOMELESS" not in address) and (address != "") :
Name_Label = driver.find_element_by_id("Label1")
Name = Name_Label.text
LName = Name[:str(Name).index(",")]
Names = Name[str(Name).index(",") + 2 :]
Name_a = str(Names).split(" ")
person.append(Name_a[0])
person.append(LName)
if "#" in address:
person.append(address[:str(address).index("#")])
person.append(address[str(address).index("#") :])
elif "APT" in address:
person.append(address[:str(address).index("APT")])
person.append(address[str(address).index("APT"):])
elif "SUITE" in address:
person.append(address[:str(address).index("SUITE")])
person.append(address[str(address).index("SUITE"):])
else:
person.append(address)
person.append(" ")
Citys = driver.find_element_by_id("citystzip")
City_Zip = Citys.text
citys_arr = str(City_Zip).split(" ")
for idk , city in enumerate(citys_arr):
if idk == 0:
person.append(city[:-1])
else:
person.append(city)
with open(output, 'a', newline='') as file1:
writer = csv.writer(file1, delimiter=',')
writer.writerow(person)
time.sleep(1)
driver.switch_to.default_content()
time.sleep(1)
driver.switch_to.window(main_window_handle)
else:
BOOK_check = False
break
idx += 1
if Next_check == 0:
Next = driver.find_element_by_xpath("//*[@id='gridaj']/tbody/tr[12]/td/a")
Next_check += 1
else:
Next = driver.find_element_by_xpath("//*[@id='gridaj']/tbody/tr[12]/td/a[2]")
Next.click()
if int(BOOK_ARR[0]) >= int(BOOK_MAX):
with open(BOOK, 'w') as the_file:
BOOK_MAX = BOOK_ARR[0]
the_file.write(BOOK_MAX)
except:
print("loading page error")
pass
driver.quit()
print("---------processing end-----------")
print("running end time : " + str(datetime.datetime.now()))
time.sleep(60 * 30)
if __name__ == "__main__":
while True:
main()