Interactive Google Maps scraper with Tkinter confirmation
Project description
gmaps-scraper
Interactive Google Maps scraper with Tkinter confirmation
gmaps-scraper lets you visually pick locations in Google Maps and captures the place name, coordinates, address, city, state, country, plus any custom fields you specify. Each pick pops up a dialog so you can review or add extra info before recording.
Features
- Live map interaction via Selenium & Chrome
- Automatic extraction of:
- Place name
- Latitude & longitude
- Full address
- City, state, country (via Plus code)
- Rating, Reviews, Category
- Custom fields: define required
*or optional fields in your dialog - Repeatable picks: after each capture, you’re asked “Keep going?”
- Clean teardown of browser sessions
Installation
pip install gmaps-scraper
Usage
Basic pick
from gmaps_scraper import get_google_map_details
# Launch the map picker; no extra fields
data = get_google_map_details()
print(data)
# => { "Central Park": { "latitude": "...", "longitude": "...", ... } }
With search term
from gmaps_scraper import get_google_map_details
data = get_google_map_details(search_terms=["Empire State Building", "Central Park"])
print(data)
With custom fields
from gmaps_scraper import get_google_map_details
data = get_google_map_details(
additional_required=['Contact', 'Phone'],
additional_optional=['Notes']
)
print(data)
In the confirmation dialog box:
- Fields ending with
*are required—the dialog won’t proceed until you fill them. - Optional fields can be left blank.
API Reference
get_google_map_details(additional_required=None, additional_optional=None)
Starts a headful Chrome session, opens maps.google.com, and watches for your place selections. Returns a dict keyed by place name, with all fields you confirmed.
License
MIT © Kanad Rishiraj (RoamingSaint)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gmaps_scraper-0.4.0.tar.gz.
File metadata
- Download URL: gmaps_scraper-0.4.0.tar.gz
- Upload date:
- Size: 8.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b96f229205c4c3a45c9d9ade55a799e99648d74ca0e8e8af582ff7fae6c6ffc
|
|
| MD5 |
10e5380b8eca0db73ca7619fd11d818c
|
|
| BLAKE2b-256 |
ac69f460353c27d26abdbc8ff10d554f587972439bed3c829366b5069f000fc1
|
File details
Details for the file gmaps_scraper-0.4.0-py3-none-any.whl.
File metadata
- Download URL: gmaps_scraper-0.4.0-py3-none-any.whl
- Upload date:
- Size: 8.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
55aac4bc19dbe24736cee69ca6785ed90b11b3f19da3e246cd6fceb965b67da8
|
|
| MD5 |
79f9bae1ab2aa62253900805889c6875
|
|
| BLAKE2b-256 |
bc9ee3319c0d8f793fcfeaffca488655906c1ff4f3208031092f041dd4c25d4f
|