This repository has been archived by the owner on Dec 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathkolkovna.py
executable file
·84 lines (61 loc) · 2.08 KB
/
kolkovna.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
#!/usr/bin/env python3
# coding=utf-8
import requests, sys, re
from datetime import datetime
from bs4 import BeautifulSoup
def get_url():
return "http://www.kolkovna.cz/cs/kolkovna-argentinska-23/denni-menu"
def get_name():
return "Kolkovna"
def get_file():
kantyna = requests.get(get_url())
return kantyna
def prepare_bs(kantyna):
if kantyna is not None and kantyna.status_code == 200:
html = kantyna.text
soup = BeautifulSoup(html, 'html.parser')
return soup
else:
return "Error"
def return_menu(soup):
#b = a.findNext("dm-day").text
#c = b.findNext("p").text
#d = re.split(" Kč", c)
meme = soup.find("div", { "class": "dailyMenuWeek" })
test = meme.find_all("section")
denvtydnu = datetime.today().weekday()
dnesni = test[denvtydnu%5].find_all("tr") # o vikendu nezerem
date = test[denvtydnu%5].find_all("h2")[0].text
arr = []
for i in dnesni:
arr.append(["{0} - {1}".format(i.findNext("td", { "class": "title"} ).text, i.findNext("td", { "class": "name"} ).text), i.findNext("td", { "class": "price"} ).text])
print(arr)
# jidlo_obsah = soup.find_all("span", { "class": "td-jidlo-obsah"} )
# jidlo_cena = soup.find_all("td", { "class": "td-cena"} )
# arr = []
# for i in range(0, len(jidlo_obsah)):
# arr.append([jidlo_obsah[i].text, jidlo_cena[i].text])
items = arr
print("ITEMS {0}".format(items))
print("DATE", date)
return(items, date)
#def return_date(soup):
# return("")
def result():
try:
file = get_file()
bs = prepare_bs(file)
#date = return_date(bs)
nazev = get_name()
url = get_url()
menu_list, date = return_menu(bs)
return (nazev, url, date, menu_list)
except Exception as e:
print(e)
return (get_name() + "- Chyba", "", str(e), [])
if __name__ == "__main__":
file = get_file()
bs = prepare_bs(file)
#date = return_date(bs)
menu_list = return_menu(bs)
#debug_print(date, menu_list)