-
Notifications
You must be signed in to change notification settings - Fork 118
/
Copy pathrun.py
50 lines (39 loc) · 1.67 KB
/
run.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
"""
This example run script shows how to run the yelp.com scraper defined in ./yelp.py
It scrapes product data and saves it to ./results/
To run this script set the env variable $SCRAPFLY_KEY with your scrapfly API key:
$ export $SCRAPFLY_KEY="your key from https://scrapfly.io/dashboard"
"""
import asyncio
import json
from pathlib import Path
import yelp
output = Path(__file__).parent / "results"
output.mkdir(exist_ok=True)
async def run():
# enable scrapfly cache for basic use
yelp.BASE_CONFIG["cache"] = False
print("running Yelp scrape and saving results to ./results directory")
business_data = await yelp.scrape_pages(
urls=[
"https://www.yelp.com/biz/vons-1000-spirits-seattle-4",
"https://www.yelp.com/biz/ihop-seattle-4",
"https://www.yelp.com/biz/toulouse-petit-kitchen-and-lounge-seattle",
]
)
with open(output.joinpath("business_pages.json"), "w", encoding="utf-8") as file:
json.dump(business_data, file, indent=2, ensure_ascii=False)
reviews_data = await yelp.scrape_reviews(
url="https://www.yelp.com/biz/vons-1000-spirits-seattle-4",
# each 10 reviews represent a review page (one request)
max_reviews=28,
)
with open(output.joinpath("reviews.json"), "w", encoding="utf-8") as file:
json.dump(reviews_data, file, indent=2, ensure_ascii=False)
search_data = await yelp.scrape_search(
keyword="plumbers", location="Seattle, WA", max_pages=2
)
with open(output.joinpath("search.json"), "w", encoding="utf-8") as file:
json.dump(search_data, file, indent=2, ensure_ascii=False)
if __name__ == "__main__":
asyncio.run(run())