-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscrape.py
369 lines (291 loc) · 14.9 KB
/
scrape.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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
"""
Scrape data from Jumia and Konga.
Add data to file.
Add data to database.
"""
from flask import Flask
from requests_html import HTML, HTMLSession
from time import perf_counter
from multiprocessing import Process
from csv import writer
from models import *
import os
app = Flask(__name__)
#database configuration
app.config["SQLALCHEMY_DATABASE_URI"] = os.getenv("DATABASE_URL")
app.config["SQLALCHEMY_TRACK_MODIFICATIONS"] = False
db.init_app(app)
session = HTMLSession()
def jumia(categ, url, test=False):
""" Scrapes jumia products """
print(f"scrapping {categ} on {url}")
#list params
name = ""
sku = ""
price = ""
stars = 0
link = ""
image_url = ""
reviews = 0
seller = "jumia"
category = categ
description = ""
counter = 0
score = 0
#scrape
initial = session.get(url)
if (initial.status_code == 200):
rawcount = initial.html.find("body > main > section.osh-content > section.pagination > ul > li:nth-child(5) > a", first=True)
count = int(rawcount.text)
if (test == True):
return True
for i in range(count):
response = session.get(f"{url}?page={i+1}")
if (response.status_code == 200):
try:
section = response.html.find(".products", first=True)
products = section.find(".sku")
except Exception as e:
continue
for product in products:
counter += 1
try:
#get sku
sku = product.attrs['data-sku']
except Exception as e:
continue
linker = product.find(".link", first=True)
try:
#get link
link = linker.attrs['href']
except Exception as e:
continue
title = linker.find(".title", first=True)
brand = title.find(".brand", first=True).text
prename = title.find(".name", first=True).text
#get name
name = f"{brand} {prename}"
price_container = linker.find(".price-container", first=True)
price_box = price_container.find(".price-box", first=True)
pricer = price_box.find(".price", first=True)
#get price
price = pricer.text.strip("₦").strip(" ")
try:
rating_stars = linker.find(".rating-stars", first=True)
total_ratings = rating_stars.find(".total-ratings", first=True)
rawreview = int(total_ratings.text.strip("(").strip(")"))
if (rawreview < 1):
continue
else:
#get reviews
reviews = rawreview
except Exception as e:
continue
each = session.get(link)
if (each.status_code == 200):
main_imgs = each.html.find(".sldr", first=True)
try:
a_imgs = main_imgs.find("a", first=True)
imgs = a_imgs.find("img", first=True)
except Exception as e:
continue
#get image_url
image_url = imgs.attrs['data-src']
features = each.html.find("#jm > main > div:nth-child(3) > div.col12 > section.card.aim.-mtm.-fs16 > div.row.-pas > article:nth-child(1)", first=True)
new = each.html.find("#jm > main > div:nth-child(3) > div.col12 > section.card.aim.-mtm.-fs16 > div.row.-pas > article:nth-child(2) > div", first=True)
try:
#get description
describe = f"{features.text}\n{new.text}"
description = describe.strip(" ").lstrip("Key Features").replace("\n", "\t")
except Exception as e:
continue
rawstar = each.html.find("#jm > main > div:nth-child(3) > div.col12 > section:nth-child(5) > div.row.-fw-nw > div.col4.-phm > div > div.-fs29.-yl5.-pvxs > span", first=True)
try:
if (float(rawstar.text) < float(2.5)):
continue
else:
#get stars
stars = float(rawstar.text)
score += 1
each = [name, sku, price, stars, link, image_url, reviews, seller, category, description]
#write to file
try:
with open("products.csv", 'a', encoding="utf-8") as product_file:
product_filewrite = writer(product_file)
product_filewrite.writerow(each)
print(f"-> SUCS fileWRITE-> write successfully Jumia | {categ} | {name[0:10]} to file...")
except Exception as e:
print(f"-> ERR fileWRITE-> could not add Jumia|{categ}|{name[0:10]} to file: {e}")
#write to database
try:
with app.app_context():
item = Products(name=name, sku=sku, price=price, stars=stars, link=link, image_url=image_url, reviews=reviews, seller=seller, category=category, description=description)
db.session.add(item)
db.session.commit()
print(f"-> SUCS dbADD-> added successfully Jumia|{categ}|{name[0:10]} to database")
except Exception as e:
print(f"-> ERR dbADD-> could not add Jumia|{categ}|{name[0:10]} to database: {e}")
except Exception as e:
continue
print(f"-> END: Jumia | {categ} | counts: {score} of {counter}")
def konga(categ, url, test=False):
""" Scrapes konga products """
print(f"scrapping {categ} on {url}")
#list params
name = ""
sku = ""
price = ""
stars = 0
link = ""
image_url = ""
reviews = 0
seller = "konga"
category = categ
description = ""
counter = 0
score = 0
#scrape
initial = session.get(url)
if (initial.status_code == 200):
rawcount = initial.html.find("#mainContent > section._9cac3_2I9l4 > section > section > div > ul > li:nth-child(4) > a", first=True)
count = int(rawcount.text)
if (test == True):
return True
for i in range(count):
response = session.get(f"{url}?page={i+1}")
if (response.status_code == 200):
section = response.html.find("#mainContent > section._9cac3_2I9l4 > section > section > section > section > ul", first=True)
products = section.find("li")
for product in products:
each = product.find("div", first=True)
next_each = each.find("div", first=True)
diver = next_each.find("div", first=True)
linker = diver.find("a", first=True)
#get link
link = f"https://www.konga.com{linker.attrs['href']}"
next_down_each = next_each.find("._4941f_1HCZm", first=True)
former = next_down_each.find("form", first=True)
reviewer = former.find(".ccc19_2IYt0", first=True)
next_deep = reviewer.find('.a455c_3G0na', first=True)
deep_span = next_deep.find('.eea9b_1Ma8-', first=True)
counter += 1
if deep_span.text.strip("(").strip(")") == "No reviews yet":
continue
else:
#get reviews
reviews = int(deep_span.text.strip("Review").strip("Reviews").strip(" "))
if reviews < 1:
continue
each = session.get(link)
if (each.status_code == 200):
namer = each.html.find("#mainContent > div > div.d9549_IlL3h > div._8f9c3_230YI._47f1e_1dZrT > div._680e2_KPkEz > div > h4", first=True)
#get name
name = namer.text
skuer = each.html.find("#mainContent > div > div.d9549_IlL3h > div._8f9c3_230YI._47f1e_1dZrT > div._680e2_KPkEz > div > form > div._31c33_NSdat > div._97fc0_3W515.b50e0_1HOLM > span", first=True)
#get sku
sku = skuer.text
pricer = each.html.find("#mainContent > div > div.d9549_IlL3h > div._8f9c3_230YI._47f1e_1dZrT > div._680e2_KPkEz > div > form > div._3924b_1USC3._16f96_38E1t > div._3924b_1USC3 > div._678e4_e6nqh", first=True)
#get price
price = pricer.text.strip("₦")
imager = each.html.find("#mainContent > div > div.d9549_IlL3h > div._8f9c3_230YI._47f1e_1dZrT", first=True)
pictr = imager.find(".bf1a2_3kz7s", first=True).find("._3a8a4_3Bhwv", first=True).find(".fd8e9_1qWnZ", first=True)
pictr = pictr.find("._7f96a_3PgMp", first=True)
pictr = pictr.find("img", first=True)
#get image_url
image_url = pictr.attrs['src']
#get description
describe = each.html.find("#mainContent > div > div.d9549_IlL3h > div._227af_AT9tO > div._79826_3-pAs > div._3383f_1xAuk > div > div", first=True).text
description = describe.strip(" ").replace("\n", "\t")
starer = each.html.find("#mainContent > div > div.d9549_IlL3h > div._8f9c3_230YI._47f1e_1dZrT > div._680e2_KPkEz > div > form > div._31c33_NSdat > div.a455c_3G0na.af1a1_3wVPH", first=True)
try:
starcount = 0
svgs = starer.find("svg")
for svg in svgs:
if (svg.attrs['class'][0] == "ba6f2_18Jb4"):
starcount += 1
#get stars
stars = starcount
score += 1
each = [name, sku, price, stars, link, image_url, reviews, seller, category, description]
#write to file
try:
with open("products.csv", 'a', encoding="utf-8") as product_file:
product_filewrite = writer(product_file)
product_filewrite.writerow(each)
print(f"-> SUCS fileWRITE-> write successfully Konga | {categ} | {name[0:10]} to file...")
except Exception as e:
print(f"-> ERR fileWRITE-> could not add Konga|{categ}|{name[0:10]} to file: {e}")
#write to database
try:
with app.app_context():
item = Products(name=name, sku=sku, price=price, stars=stars, link=link, image_url=image_url, reviews=reviews, seller=seller, category=category, description=description)
db.session.add(item)
db.session.commit()
print(f"-> SUCS dbADD-> added successfully Konga|{categ}|{name[0:10]} to database")
except Exception as e:
print(f"-> ERR dbADD-> could not add Konga|{categ}|{name[0:10]} to database: {e}")
except Exception as e:
continue
print(f"-> END: konga | {categ} | counts: {score} of {counter}")
if __name__ == '__main__':
#start timer
start = perf_counter()
#drop all rows in Products table
with app.app_context():
try:
Products.query.delete()
db.session.commit()
print("Database Products Table cleared successfully")
except Exception as e:
print(f"Could not delete rows in Products table: {e}")
#asynchronous
#jumia #konga
jumia_fashion = Process(target=jumia, args=["fashion", "https://www.jumia.com.ng/category-fashion-by-jumia/"])
konga_computing = Process(target=konga, args=["computing", "https://www.konga.com/category/computers-accessories-5227"])
konga_electronics = Process(target=konga, args=["electronics", "https://www.konga.com/category/electronics-5261"])
konga_fashion = Process(target=konga, args=["fashion", "https://www.konga.com/category/konga-fashion-1259"])
jumia_health_beauty = Process(target=jumia, args=["health and beauty", "https://www.jumia.com.ng/health-beauty/"])
jumia_home_office = Process(target=jumia, args=["home and office", "https://www.jumia.com.ng/home-office/"])
konga_health_beauty = Process(target=konga, args=["health and beauty", "https://www.konga.com/category/beauty-health-personal-care-4"])
jumia_electronics = Process(target=jumia, args=["electronics", "https://www.jumia.com.ng/electronics/"])
konga_home_office = Process(target=konga, args=["home and office", "https://www.konga.com/category/home-kitchen-602"])
jumia_phones_tablets = Process(target=jumia, args=["phones and tablets", "https://www.jumia.com.ng/phones-tablets/"])
konga_phones_tablets = Process(target=konga, args=["phones and tablets", "https://www.konga.com/category/phones-tablets-5294"])
jumia_computing = Process(target=jumia, args=["computing", "https://www.jumia.com.ng/computing/"])
#start processes
jumia_fashion.start()
konga_fashion.start()
jumia_electronics.start()
konga_health_beauty.start()
jumia_health_beauty.start()
konga_computing.start()
jumia_computing.start()
konga_home_office.start()
konga_phones_tablets.start()
jumia_home_office.start()
konga_electronics.start()
jumia_phones_tablets.start()
#write to file
each = ["name", "sku", "price", "stars", "link", "image_url", "reviews", "seller", "category", "description"]
with open("products.csv", 'w', encoding="utf-8") as product_file:
product_filewrite = writer(product_file)
product_filewrite.writerow(each)
#join processes
jumia_computing.join()
konga_computing.join()
konga_electronics.join()
jumia_electronics.join()
jumia_fashion.join()
konga_fashion.join()
konga_health_beauty.join()
jumia_health_beauty.join()
konga_home_office.join()
konga_phones_tablets.join()
jumia_home_office.join()
jumia_phones_tablets.join()
#Total number of rows in product table
with app.app_context():
print("TOTAL PRODUCTS: ", Products.query.count())
#end timer
end = perf_counter()
print(f"time: {round((end - start) / 60, 2)}mins")