forked from chinese-soup/zradlo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathport58.py
executable file
·87 lines (72 loc) · 2.26 KB
/
port58.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
#!/usr/bin/env python3
# coding=utf-8
import requests, sys, re
from bs4 import BeautifulSoup
def get_url():
return "http://www.restaurantport58.cz/denni-nabidka/"
def get_name():
return "Port 58"
def get_file():
user_agent = {'User-agent': 'Mozilla/5.0'}
kantyna = requests.get(get_url())
# kantyna.encoding = 'UTF-8'
return kantyna
def prepare_bs(kantyna):
if kantyna is not None and kantyna.status_code == 200:
html = kantyna.text
# print(html)
soup = BeautifulSoup(html, 'html.parser')
return soup
else:
return "Error"
def return_menu(soup):
items = []
a = soup.find("div", { "class": "column central" }).find_all("li")
# print(a)
for item in a:
if item.text.strip():
nazev = item.find("p", { "class": "item-text" }).text.strip()
b = item.find_all("div", { "class": "value-col" })
# cena = ""
for price in b:
if price.text.strip():
cena = price.text.strip()
arr = [nazev, cena]
items.append(arr)
# print(nazev, cena)
# print(nazev, b)
return items
def return_date(soup):
#b = soup.find("h3", { "class": "jsrm-menu-header" }).text.strip()
#match = re.match(".*\s([0-9]{1,2}\.[0-9]{1,2}\.[0-9]{4})", b)
#date = match.group(1).strip()
#print(b)
#return(date)
return("???")
def debug_print(date, menu):
print(date)
def result():
try:
file = get_file()
bs = prepare_bs(file)
nazev = get_name()
url = get_url()
lokalita = "holesovice"
date = return_date(bs)
menu_list = return_menu(bs)
print(date, menu_list)
return(nazev, url, date, menu_list, lokalita)
except Exception as exp:
print(exp)
#return(get_name() + "- Chyba", "", "", [str(exp)])
nazev = get_name()
url = get_url()
lokalita = "holesovice"
return (nazev, url, "Menu nenalezeno", [], lokalita)
if __name__ == "__main__":
file = get_file()
bs = prepare_bs(file)
# date = return_date(bs)
# menu_list = return_menu(bs)
# lol()
# print(date, menu_list)