Replies: 2 comments
-
is this syntax correct? To be able to get EMAILS:
|
Beta Was this translation helpful? Give feedback.
0 replies
-
Use the Detailed Address Field as follows: from src.gmaps import Gmaps
star_it = '''Love It? Star It! ⭐ https://github.com/omkarcloud/google-maps-scraper/'''
queries = ["spa in Miami, FL"]
fields = [
Gmaps.Fields.PLACE_ID,
Gmaps.Fields.NAME,
Gmaps.Fields.MAIN_CATEGORY,
Gmaps.Fields.RATING,
Gmaps.Fields.REVIEWS,
Gmaps.Fields.WEBSITE,
Gmaps.Fields.PHONE,
Gmaps.Fields.ADDRESS,
Gmaps.Fields.LINK,
Gmaps.Fields.EMAILS,
Gmaps.Fields.COORDINATES,
Gmaps.Fields.DETAILED_ADDRESS # Use this field for detailed addresses
]
Gmaps.places(queries, max=20, fields=fields) Additionally, to obtain emails, you will need a Rapid API key and must subscribe to the Website Contacts Scraper API. Please follow the FAQ provided at this link for guidance: https://github.com/omkarcloud/google-maps-scraper#-i-need-to-reach-out-to-leads-to-sell-my-productsservices-how-do-i-scrape-email-facebook-twitter-linkedin-etc |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
How can I make the "address" output into different columns like:
Street, City, State, Zip Code
Beta Was this translation helpful? Give feedback.
All reactions