-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhoublo.py
51 lines (38 loc) · 1.32 KB
/
houblo.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
## houblo.py
## Gather infos from Facebook API's and send them to main.
## Created by Maxime Princelle (https://contact.princelle.org)
## ------
import os
import requests
from datetime import datetime
import msgs
from facebook_scraper import get_posts
from googleStatus import getData
now = datetime.now()
## Consts :
title = "La Houblonnière"
link = "https://www.facebook.com/BIERSTUBLAHOUBLONNIERE"
page_id = "BIERSTUBLAHOUBLONNIERE"
google_id_place = "ChIJQftOLm_IlkcRM2Ksn9LGJDA"
def getLastMenu():
googleData = getData(google_id_place)
if googleData['boolean']:
return getMenu(googleData['status'], googleData['phone_number'])
else:
return msgs.buildClosed((title + " (" + googleData['status'] + ")"), link,
(googleData['hours'] + "\nDemain : " + googleData['tomorrow']))
def getMenu(status_open, phone_number):
articles = get_posts(page_id, pages=2)
for article in articles:
# print(article['text'].splitlines())
phone = "Téléphone : " + phone_number
menu_raw = article['text'].splitlines()[1::]
menu_formatted = ""
for line in menu_raw:
menu_formatted += line + "\n"
menu = ""
if not menu_raw:
menu = phone
else:
menu = str(menu_formatted) + phone
return msgs.buildMenu((title + " (dernier post) (" + status_open + ")"), link, article['text'].splitlines()[0], article['post_url'], menu)