-
Notifications
You must be signed in to change notification settings - Fork 0
/
logosmenu.py
181 lines (138 loc) · 5.4 KB
/
logosmenu.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
import datetime
import json
import requests
import re
from lxml import html
def newton(bot, update):
update.message.reply_text(juvenes())
def reaktori(bot, update):
update.message.reply_text(returnreaktori())
def hertsi(bot, update):
update.message.reply_text(returnhertsi())
def juvenes(KitchenId="6", MenuTypeId="60"):
try:
date = str(datetime.date.today())
day = date[8:]
month = date[5:7]
teksti = ""
url = "http://www.juvenes.fi/DesktopModules/Talents.LunchMenu/LunchMenuServices.asmx/GetMenuByDate?KitchenId=" \
+ KitchenId + "&MenuTypeId=" + MenuTypeId + "&Date='" + day + "/" + month + "'&lang='fi'&format=json"
x = requests.get(url)
x = x.content[7:-4]
x = x.decode("utf-8")
x = x.replace("\\", "")
menu = json.loads(x, encoding='utf-8')
a = menu["MealOptions"]
for i in range(len(a)):
b = a[i]
c = b["MenuItems"]
d = c[0]
e = d["Name"]
e2 = d["Diets"]
teksti += "• " + e + " " + e2 + "\n"
if not teksti:
teksti = "Ei mitään syötävää!\n\n"
except ValueError:
teksti = "Ei mitään syötävää!\n\n"
return teksti
def returnreaktori(compact=False):
date = str(datetime.date.today())
url = "http://www.amica.fi/modules/json/json/Index?costNumber=0812&language=fi"
x = requests.get(url)
x = x.content.decode("utf-8")
x = x.replace(" ", "")
teksti = ""
menu = json.loads(x, encoding='utf-8')
a = menu["MenusForDays"]
for i in range(len(a)):
if date in a[i]["Date"]:
b = a[i]
c = b["SetMenus"]
for ö in range(len(c)):
d = c[ö]
if compact is True:
if d["Name"] == "Linjasto":
if d["Name"] not in teksti:
teksti += d["Name"] + ": " + "\n"
e = d["Components"]
for w in range(len(e)):
ruokalaji = e[w]
teksti += " • " + ruokalaji + "\n"
else:
if d["Name"] not in teksti:
teksti += d["Name"] + ": " + "\n"
e = d["Components"]
for w in range(len(e)):
ruokalaji = e[w]
teksti += " • " + ruokalaji + "\n"
teksti = teksti.replace("xc2xb4", "'")
aukioloaika = str(a[i]["LunchTime"])
if not teksti:
teksti = "Ei mitään syötävää!\n\n"
teksti += "Reaktori on avoinna " + aukioloaika + "\n"
return teksti
def returnhertsi(compact=False):
date = str(datetime.date.today())
day = date[8:]
month = date[5:7]
year = date[:4]
url = "http://www.sodexo.fi/ruokalistat/output/daily_json/12812/" + year + "/" + month + "/" + day + "/fi"
x = requests.get(url)
x = x.content.decode("utf-8")
menu = json.loads(x, encoding='utf-8')
menu = menu["courses"]
vanhouten = {}
keylist = []
teksti = ""
for i in range(len(menu)):
ööö = menu[i]
try:
temp_variable = " • " + ööö["title_fi"] + " " + ööö["properties"] + "\n"
except KeyError:
temp_variable = " • " + ööö["title_fi"] + "\n"
if compact is True:
if ööö["category"] == "Popular":
vanhouten[temp_variable] = ööö["category"] + ": "
else:
vanhouten[temp_variable] = ööö["category"] + ": "
for key in sorted(vanhouten.keys()):
if vanhouten[key] not in keylist:
teksti += vanhouten[key] + "\n" + key
keylist.append(vanhouten[key])
else:
teksti += key
if not teksti:
teksti = "Ei mitään syötävää!\n\n"
return teksti
def returnmenu():
päämuuttuja = "Newtonissa tarjolla:\n\n"
päämuuttuja += juvenes("6", "60")
päämuuttuja += "Ravintola Newton palvelee yleensä ma-to 10.30-16.00 ja pe 10.30-15.00" + "\n\n" + "Sååsibaarissa:\n\n"
päämuuttuja += juvenes("60038", "77")
päämuuttuja += "SÅÅSBAR on avoinna ma-pe 10.30-19.00" + "\n\n" + "Fusarissa:\n\n"
päämuuttuja += juvenes("60038", "3")
päämuuttuja += "Fusion Kitchen on avoinna ma-pe 10.30-18.45, Café Konehuone palvelee ma-pe klo 8-19" + "\n"
päämuuttuja += "\n" + "Reaktori tarjoaa:" + "\n\n"
päämuuttuja += returnreaktori(True) # reaktorin tiedot
päämuuttuja += "\n" + "Hertsissä tänään:" + "\n\n"
päämuuttuja += returnhertsi(True) # hertsin tiedot
päämuuttuja = päämuuttuja.replace(" ", " ")
päämuuttuja += "Hertsi on avoinna Ma-Pe 10.30 - 15.00, kahvila Bitti palvelee klo 08.00 - 17.00 Ma-Pe"
return päämuuttuja
def menu(bot, update):
update.message.reply_text(returnmenu())
def liiga(bot, update):
l = []
page = requests.get("http://liiga.fi/tilastot/2016-2017/runkosarja/joukkueet/")
tree = html.fromstring(page.content)
check = tree.xpath('//td[@class="ta-l"]/text()')
p = tree.xpath('//strong/text()')
check = re.sub("\n", "", ("".join(check)))
check = re.sub(" ", "", check)
check = check.split(" ")
del check[0]
del check[0]
for i in range(15):
l.append(": ".join([check[i], p[i]]))
l = ", ".join(l)
update.message.reply_text(l)