-
Notifications
You must be signed in to change notification settings - Fork 7
/
darwin_create_database.py
executable file
·232 lines (186 loc) · 7.1 KB
/
darwin_create_database.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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
TODO:
// - creer un script darwin_download.py qui charge le json et télécharge les mp3
Donc le flow normal est :
- darwin_create_database.py: mise à jour de la base
- darwin_create_webpage.py: à partir de la base, création de la page web public
- darwin_download.py: à partir de la base, téléchargement des mp3
'''
import sys
import codecs
import re
import os
import json
import argparse
import dateparser
from pyquery import PyQuery as pq
sys.stdout = codecs.getwriter('utf-8')(sys.stdout)
#####################################################################
# def url_to_mp3(url):
# page = requests.get(url)
# regexp = re.compile(r'sites(%2F|/)default.+\.mp3')
# for line in page.text.split('\n'):
# match = regexp.search(line)
# if match:
# mp3 = match.group(0)
# mp3_url = 'http://www.franceinter.fr/' + urllib.unquote(mp3)
# return mp3_url
# return False
def getMonths(mois_start, mois_end):
if mois_start > mois_end:
print u'Les mois ne sont pas cohérents...'
exit(1)
else:
a_start, m_start = int(mois_start[:4]), int(mois_start[-2:])
a_end, m_end = int(mois_end[:4]), int(mois_end[-2:])
mois_list = []
if a_start == a_end:
for mois in range(m_start, m_end + 1):
mois_str = str(mois)
if mois < 10:
mois_str = '0' + str(mois)
mois_list.append(str(a_start) + '-' + mois_str)
else:
for annee in range(a_start, a_end + 1):
for mois in range(1, 13):
if annee == a_start and mois >= m_start or\
annee == a_end and mois <= m_end or\
annee > a_start and annee < a_end:
# print mois
mois_str = str(mois)
if mois < 10:
mois_str = '0' + str(mois)
mois_list.append(str(annee) + '-' + mois_str)
return mois_list
def extractData(data, d):
for bb in d('.card.highlight, .card-elements.stack .tile'):
emission_data = {}
title = pq(bb).find('.card-text .card-text-sub').text()
# print title
emission_data['titre'] = title
date_text = pq(bb).find('.card-text .date').text()
# print date_text
date = dateparser.parse(date_text)
# print date
# match = regexp_date.search(date)
# jour, mois, annee = match.group(1), match.group(2), match.group(3)
jour, mois, annee = str(date.day).zfill(2), str(date.month).zfill(2), str(date.year).zfill(4)
print jour, mois, annee, '-', title
if annee + '-' + mois in mois_list:
# print title
# print jour, mois, annee
hash_list = [e['hash'] for e in data]
emission_data['date'] = {'annee': annee, 'mois': mois, 'jour': jour}
emission_hash = annee + '-' + mois + '-' + jour
if force or emission_hash not in hash_list:
emission_link = pq(bb).find('a.card-text-sub').attr('href')
if emission_link[0] == '/':
emission_link = 'https://www.franceinter.fr' + emission_link
print emission_link
emission_data['lien_emission'] = emission_link
player_link = emission_link
# print player_link
emission_data['lien_ecouter'] = player_link
mp3_link = pq(bb).find('button.replay-button').attr('data-url')
# print mp3_link
emission_data['lien_mp3'] = mp3_link
if re.match(r'.*rediffusion.*', title, re.IGNORECASE) or title in titles_list:
emission_data['rediffusion'] = 1
else:
emission_data['rediffusion'] = 0
if emission_hash in hash_list:
index = [data.index(e) for e in data if e['hash'] == emission_hash][0]
data[index] = {'hash': emission_hash, 'infos': emission_data}
print u'Emission mise à jour.'
else:
data.append({'hash': emission_hash, 'infos': emission_data})
print u'Emission ajoutée.'
titles_list.append(title)
else:
print u'Emission déjà dans la base !'
else:
print u'Pas dans l\'intervalle !'
pass
return data
#####################################################################
parser = argparse.ArgumentParser(
description='Création (ou mise à jour) d\'une base de données JSON pour une émission de France Inter.'
)
parser.add_argument(
'-id',
metavar = 'emission_id',
help = 'L\'identifiant de l\'émission',
default = 'sur-les-epaules-de-darwin'
)
parser.add_argument(
'-debut',
metavar = 'mois_debut',
help = 'Le mois de départ au format YYYY-MM. Exemple : "2010-09"',
default = '2010-09'
)
parser.add_argument(
'-fin',
metavar = 'mois_fin',
help = 'Le mois de fin au format YYYY-MM. Exemple : "2013-02"',
default = '2014-08'
)
parser.add_argument(
'-dest',
metavar = 'fichier JSON',
help = 'Le fichier JSON dans lequel enregistrer la base de données.',
default = './output/darwin_base.json'
)
parser.add_argument(
'--force',
help = 'Pour forcer la mise a jour des infos',
action = 'store_true'
)
parser.add_argument(
'--all',
help = 'Pour aller chercher dans toutes les pages',
action = 'store_true'
)
args = parser.parse_args()
radio_nom = 'franceinter'
emission_id = args.id
mois_start = args.debut
mois_end = args.fin
force = args.force
all_pages = args.all
emission_url = 'https://www.' + radio_nom + '.fr/emissions/' + emission_id
print emission_url
mois_list = getMonths(mois_start, mois_end)
# print mois_list
json_file = args.dest
#####################################################################
if os.path.isfile(json_file) :
input_json = open(json_file, 'r')
data = json.load(input_json)
input_json.close()
data = data['emissions']
else:
data = []
titles_list = [d['infos']['titre'] for d in data]
titles_list = []
d = pq(url=emission_url)
if all_pages:
url_last_page = d('.pager-item.last a').attr('href')
nb_pages = int(re.search(r'p=([0-9]+)', url_last_page).group(1))
print '{} pages trouves'.format(nb_pages)
for p in range(1, nb_pages + 1):
url = emission_url + '?p=' + str(p)
print 'Chargement de la page : ' + url
new_data = extractData(data, pq(url=url))
else:
new_data = extractData(data, d)
data.sort(key=lambda e: e['hash'])
data_v2 = {'emissions': data}
# data_v2 = {'emissions':[{'hash': emission_hash, 'infos': data[emission_hash]} for emission_hash in data]}
output_json = open(json_file, 'wb')
json_str = json.dumps(data_v2, indent=4, separators=(',', ': '), sort_keys=True)
output_json.write(json_str)
output_json.close()
print '\n' + str(len(data)) + u' émissions.'
print u'Base de données exportée : ' + json_file