LivePopularTimes: A Google Maps scraper
Project description
Live Popular Times
A library that extends the populartimes module to include support for Live Google Maps popular times data, which is currently inaccessible via Google's API.
Getting Started
Requirements
Google Maps API key https://developers.google.com/places/web-service/get-api-key
Installation:
Options:
- For most current version:
python3 -m pip install --upgrade git+https://github.com/GrocerCheck/LivePopularTimes git clonethe repository,cdinto the populartimes directory and runpip install .- Possibly outdated:
python3 -m pip install LivePopularTimes
Usage
- Please note that certain functions of this module use the Google Places Web API, which is billable to Google.
- Functions that accept api keys in their arguments will make API calls, and vice versa (self-explanatory)
- If you're trying to reduce API usage a typical workflow may look like:
- Get PlaceIDs & addresses https://developers.google.com/places/web-service/search#PlaceSearchRequests
- Create formatted addresses. You may need to use
get_populartimes_by_Place_IDto get more address data if necessary. This performs a reverse lookup by placeID. - use
get_populartimes_by_addressto collect data without API use!
livepopulartimes.get_populartimes_by_address(formatted_address)
Retrieves information for a given address and adds populartimes, wait, time_spent and other data not accessible via Google Places by scraping given a formatted address. Does not make an API call!
-
livepopulartimes.get_populartimes_by_address(formatted_address)-
formatted_address
- str; address of location you are looking for, preferably in the following format:
- "(location name) , full address, city, province/state/etc, country"
- str; address of location you are looking for, preferably in the following format:
-
proxy
- default = False
- proxies ip in format
{ "http" : "http://10.10.1.10:2138", "https" : "http://10.10.1.10:1080",}
-
Example call
livepopulartimes.get_populartimes_by_address("(H-Mart Dunbar) 5557 Dunbar Street, Vancouver BC, Canada", proxy=proxy)
-
-
Response
- The information present for places can vary. Therefore popularity, current_popularity, rating, rating_n, time_wait, time_spent and phone are optional return parameters and only present if available.
- time_wait and time_spent are in minutes
- Note: The time_wait and time_spent parameters were only added recently to Google Maps and are only present as a language specific string. The extracted values may therefore be incorrect and you might have to parse the raw string yourself, depending on your language settings.
- Returns dictionary of the following parameters:
nameplace_idpopulartimespopulartimes is "cleaned up" data, please refer to example output for detailscurrent_popularitypopular_timespopular_times is "raw" data, please refer to example output for detailsaddresslocationlatlng
categoriesplace_types
- Refer to
example_output(get_populartimes_by_address).json)for example output
livepopulartimes.get_populartimes_by_PlaceID(api_key, place_id)
Retrieves information for a given address and adds populartimes, wait, time_spent and other data not accessible via Google Places via Places API call & scraping, given a place_id.
-
livepopulartimes.get_populartimes_by_PlaceID(api_key, place_id)-
api_key
- str; your Google Places API key
-
place_id
- str; Unique Google Places place identifier, can be obtained via
get_places_by_searchor Google Places javascript API - more details here: [https://developers.google.com/places/place-id]
- str; Unique Google Places place identifier, can be obtained via
-
Example call
livepopulartimes.get_populartimes_by_PlaceID(API_KEY, "ChIJtW0qSJp0hlQRj22fXuPh7s4")
-
-
Response
- The information present for places can vary. Therefore popularity, current_popularity, rating, rating_n, time_wait, time_spent and phone are optional return parameters and only present if available.
- time_wait and time_spent are in minutes
- Note: The time_wait and time_spent parameters were only added recently to Google Maps and are only present as a language specific string. The extracted values may therefore be incorrect and you might have to parse the raw string yourself, depending on your language settings.
- Returns dictionary of the following parameters:
nameplace_idpopulartimespopulartimes is "cleaned up" data, please refer to example output for detailscurrent_popularitypopular_timespopular_times is "raw" data, please refer to example output for detailsaddresslocationlatlng
hourscategoriesplace_types
- Refer to
example_output(get_populartimes_by_PlaceID).json)for example output
livepopulartimes.get_places_by_search(api_key, query)
Retrives Google Maps location data from search query
-
livepopulartimes.get_populartimes_by_search(api_key, query)- query
- str; Google search query
- Example call
livepopulartimes.get_places_by_query("restaurants open in London")
- query
-
Response
- The information present for places can vary
- Returns dictionary with the following fields:
nameplace_idaddresslocationlatlng
categoriesplace_types
- Refer to
example_output(get_places_by_search).txt)for example output
Special thanks to m-wrzr's populartimes module for the framework upon which this is built.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file LivePopularTimes-1.3.tar.gz.
File metadata
- Download URL: LivePopularTimes-1.3.tar.gz
- Upload date:
- Size: 9.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.1.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
377eff006b607a150254420ff6e138494463b545bd15da2aa3791d8a78d832c8
|
|
| MD5 |
678a91e2c85f31bf649dc74e9e287aff
|
|
| BLAKE2b-256 |
795d337da8e93d7afc125e25e4f60b1bdc703c9321d920f56a6b021de21fb720
|