-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregex.py
214 lines (192 loc) · 6.05 KB
/
regex.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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
import re
import urllib2
import sys
import scrape
def bcafeGetItems(regexdata):
regex = re.compile(";\">(.*?)<", re.S) #for items
regex2 = re.compile("<h1>(.*?)</h1>", re.S) #for titles
regex2data = []
for section in regexdata:
skip = False
titles = regex2.findall(section)
for title in titles:
if title == "The B-Caf\xe9 Combo" or title == "Combo Meal": #we don't want these combos
skip = True
break
if title == " ": #chips has no title so we need a seperate handler for this :(
regex2data.append({'title' : 'Chips'})
break
regex2data.append({'title' : title})
if not skip:
items = regex.findall(section)
for item in items:
regex2data.append(item)
return regex2data
def sortbcafe(data):
mealdata = {}
onBreakfast = True;
onLunch = False;
onDinner = False;
spaghetti = False #omigod this is terrible, but we need to know after Lunch on the Go stops
breakfast = []
lunch = []
dinner = []
for item in data:
try:
item['title']
except TypeError:
pass
else:
if(onLunch and spaghetti):
onBreakfast = False
onLunch = True
onDinner = True
if(item['title'] == "Lunch on the Go"):
onBreakfast = False
onLunch = True
onDinner = False
spaghetti = True
if(onBreakfast):
breakfast.append(item)
if(onLunch):
lunch.append(item)
if(onDinner and spaghetti):
dinner.append(item)
mealdata['breakfast'] = breakfast
mealdata['lunch'] = lunch
mealdata['dinner'] = dinner
mealdata['latenight'] = dinner
return mealdata
def bcafeGetData(url):
response = urllib2.urlopen(url)
page_source = response.read()
regex = re.compile("<td class=\"layouttablecell\">(.*?)</td>", re.S) #regex1 is used to isolate items from the source, including gibberish that surrounds it
regexdata = regex.findall(page_source) #first we do meal items, we need a different regex for drinks
regex = re.compile("<td class=\"layouttablecell_full\">(.*?)</table>", re.S) #for drinks here
regexdata = regexdata + regex.findall(page_source) #source
regex2data = bcafeGetItems(regexdata) #seperated into items
finaldata = sortbcafe(regex2data) #items put into meal periods
return finaldata
def nineteen(url):
import cafe1919
data = {}
listOfItems = cafe1919.scrape1919(url)
for item in listOfItems: #we're getting some encoding errors so lets do this
item
data['breakfast'] = listOfItems
data['lunch'] = listOfItems
data['dinner'] = listOfItems
data['latenight'] = listOfItems
return data
#print nineteen("http://menu.ha.ucla.edu/foodpro/cafe1919.asp")
#print bcafeGetItems(bcafeGetData("http://menu.ha.ucla.edu/foodpro/bruincafe.asp"))
def seperateMeals(url):
response = urllib2.urlopen(url)
page_source = response.read()
#Get a list of all grid cells, every third one belongs to each b/l/d
menuGridCellItemP = re.compile("<td class=\"menugridcell.*?</td>", re.S)
menuGridCellList = menuGridCellItemP.findall(page_source)
breakfastGrids = []
lunchGrids = []
dinnerGrids = []
brunchGrids = [] #for weekends
#for each cell
currentIndex = 0
currentType = 0
allmeals = {}
if len(menuGridCellList) % 2 == 0:
while len(menuGridCellList) > currentIndex:
if currentType == 0: #if brunch
brunchGrids.append(menuGridCellList[currentIndex])
currentType = 1
else: #if dinner
dinnerGrids.append(menuGridCellList[currentIndex])
currentType = 0
currentIndex = currentIndex + 1
allmeals['breakfast'] = brunchGrids
allmeals['lunch'] = brunchGrids
allmeals['dinner'] = dinnerGrids
else:
while len(menuGridCellList) > currentIndex:
if currentType == 0: #if breakfast
breakfastGrids.append(menuGridCellList[currentIndex])
currentType = 1
elif currentType == 1: #if lunch
lunchGrids.append(menuGridCellList[currentIndex])
currentType = 2
else: #if dinner
dinnerGrids.append(menuGridCellList[currentIndex])
currentType = 0
currentIndex = currentIndex + 1
allmeals['breakfast'] = breakfastGrids
allmeals['lunch'] = lunchGrids
allmeals['dinner'] = dinnerGrids
allmeals['latenight'] = []
return allmeals
#for index in range(0, len(breakfastGrids)):
# print breakfastGrids[index]
# print lunchGrids[index]
# print dinnerGrids[index]
# print("----------")
def parseMeal(mealData): #parse the meal grids into readable data
#itemMatchList contains meal data and HTML junk
#Returns the meal items AND the locations
rawItemP = re.compile("onmouseover=.*?>.*?</a>|<li class=\"category\d\">.*?</li>", re.S)
itemMatchList = rawItemP.findall("".join(mealData))
#for item in itemMatchList:
# print item
#print("-----------")
#Clean up the HTML shit for each menu item
refinedItemP = re.compile(">.*?</a>|\"category\d\">.*?</li>", re.S)
refinedItemMatchList = refinedItemP.findall("".join(itemMatchList))
#for item in refinedItemMatchList:
# print item
#print("-----------")
finalList = []
#Remove the final HTML crap, then print
for r in refinedItemMatchList:
#check if meal item or kitchen title
if "</a>" in r:
#if meal item
s = list(r)
s.remove(">")
s.pop()
s.pop()
s.pop()
s.pop()
r = "".join(s)
finalList.append(r)
else:
finalItemP = re.compile("\d\">.*?</li>", re.S)
finalItemMatchList = finalItemP.findall(r)
for i in finalItemMatchList:
s = list(i)
s.remove('"')
s.remove(">")
s.pop(0)
s.pop()
s.pop()
s.pop()
s.pop()
s.pop()
s.insert(0, "{\"title\":\"")
s.append("\"}")
r = "".join(s)
finalList.append(r)
for item in finalList: #get rid of unicode errors
item = re.sub('\xfbl', '1', item)
item = re.sub('\xe9', '\xc3\xa9', item)
item = re.sub('\xae', '\xc2\xae', item)
item = unicode(item, "utf-8")
return finalList
def returnMealData(url):
mealDataWTags = seperateMeals(url)
mealData = {}
mealData['breakfast'] = parseMeal(mealDataWTags['breakfast'])
mealData['lunch'] = parseMeal(mealDataWTags['lunch'])
mealData['dinner'] = parseMeal(mealDataWTags['dinner'])
if "http://menu.ha.ucla.edu/foodpro/default.asp?location=01" == url:
mealData['latenight'] = scrape.late("http://menu.ha.ucla.edu/foodpro/denevelatenight.asp")
else:
mealData['latenight'] = []
return mealData