Skip to content

Commit

Permalink
update: locations demo
Browse files Browse the repository at this point in the history
  • Loading branch information
gitronald committed Feb 13, 2024
1 parent d0b1f22 commit a9397b3
Showing 1 changed file with 20 additions and 21 deletions.
41 changes: 20 additions & 21 deletions scripts/demo_locations.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,28 +92,27 @@

# Shape as dataframe
results = pd.DataFrame(se.results)
print(results.head())

print(results[results.type=='local_results']['details'].tolist())
with pd.option_context('display.max_colwidth', 80):
print(results[['type', 'title']])

# type title
# local_results FLORINA Pizzeria & Paninoteca
# local_results Regina Pizzeria
# local_results Halftime King of Pizza
# general Where to Eat Excellent Pizza Around Boston
# general Where to Find the Best Pizza in Boston Right Now
# general Pizza Hut | Delivery & Carryout - No One OutPizzas The Hut!
# general Domino's: Pizza Delivery & Carryout, Pasta, Chicken & More
# people_also_ask None
# general THE 10 BEST Pizza Places in Boston (Updated 2024)
# general 20 Best Pizza Spots in Boston For Delicious Slices And Pies
# general Supreme Pizza - Pizza Restaurant in Boston, MA
# general Best Pizza in Boston: 27 Famous Pizza Places
# general New Market Pizza - Boston, Boston, MA
# general Home | Regina Pizzeria, Boston's Brick Oven Pizza - Boston
# searches_related None
# knowledge

dir_html = os.path.join("data", 'html')
os.makedirs(dir_html, exist_ok=True)
se.save_serp(save_dir=dir_html)


# [{
# 'rating': 4.0,
# 'n_reviews': 152,
# 'sub_type': 'Pizza',
# 'contact': '226 N Market St'
# },
# {
# 'rating': 4.6,
# 'n_reviews': 752,
# 'sub_type': 'Pizza',
# 'contact': '69 Salem St'
# },
# {
# 'sub_type': 'Pizza',
# 'contact': 'McCormack Building, 1 Ashburton Pl'
# }]

0 comments on commit a9397b3

Please sign in to comment.