• Stars
    star
    4,501
  • Rank 9,482 (Top 0.2 %)
  • Language
    Python
  • License
    Apache License 2.0
  • Created over 10 years ago
  • Updated 4 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Python client library for Google Maps API Web Services

Python Client for Google Maps Services

Test Release codecov PyPI version PyPI - Downloads GitHub contributors

Description

Use Python? Want to geocode something? Looking for directions? Maybe matrices of directions? This library brings the Google Maps Platform Web Services to your Python application.

The Python Client for Google Maps Services is a Python Client library for the following Google Maps APIs:

  • Directions API
  • Distance Matrix API
  • Elevation API
  • Geocoding API
  • Geolocation API
  • Time Zone API
  • Roads API
  • Places API
  • Maps Static API
  • Address Validation API

Keep in mind that the same terms and conditions apply to usage of the APIs when they're accessed through this library.

Support

This library is community supported. We're comfortable enough with the stability and features of the library that we want you to build real production applications on it. We will try to support, through Stack Overflow, the public and protected surface of the library and maintain backwards compatibility in the future; however, while the library is in version 0.x, we reserve the right to make backwards-incompatible changes. If we do remove some functionality (typically because better functionality exists or if the feature proved infeasible), our intention is to deprecate and give developers a year to update their code.

If you find a bug, or have a feature suggestion, please log an issue. If you'd like to contribute, please read contribute.

Requirements

  • Python 3.5 or later.
  • A Google Maps API key.

API Keys

Each Google Maps Web Service request requires an API key or client ID. API keys are generated in the 'Credentials' page of the 'APIs & Services' tab of Google Cloud console.

For even more information on getting started with Google Maps Platform and generating/restricting an API key, see Get Started with Google Maps Platform in our docs.

Important: This key should be kept secret on your server.

Installation

$ pip install -U googlemaps

Note that you will need requests 2.4.0 or higher if you want to specify connect/read timeouts.

Usage

This example uses the Geocoding API and the Directions API with an API key:

import googlemaps
from datetime import datetime

gmaps = googlemaps.Client(key='Add Your Key here')

# Geocoding an address
geocode_result = gmaps.geocode('1600 Amphitheatre Parkway, Mountain View, CA')

# Look up an address with reverse geocoding
reverse_geocode_result = gmaps.reverse_geocode((40.714224, -73.961452))

# Request directions via public transit
now = datetime.now()
directions_result = gmaps.directions("Sydney Town Hall",
                                     "Parramatta, NSW",
                                     mode="transit",
                                     departure_time=now)

# Validate an address with address validation
addressvalidation_result =  gmaps.addressvalidation(['1600 Amphitheatre Pk'], 
                                                    regionCode='US',
                                                    locality='Mountain View', 
                                                    enableUspsCass=True)

For more usage examples, check out the tests.

Features

Retry on Failure

Automatically retry when intermittent failures occur. That is, when any of the retriable 5xx errors are returned from the API.

Building the Project

# Installing nox
$ pip install nox

# Running tests
$ nox

# Generating documentation
$ nox -e docs

# Copy docs to gh-pages
$ nox -e docs && mv docs/_build/html generated_docs && git clean -Xdi && git checkout gh-pages

Documentation & resources

Documentation for the google-maps-services-python library

Getting started

API docs

Support

More Repositories

1

android-maps-utils

Maps SDK for Android Utility Library
Java
3,545
star
2

google-maps-services-js

Node.js client library for Google Maps API Web Services
TypeScript
2,888
star
3

android-samples

Samples demonstrating how to use Maps SDK for Android
Java
2,351
star
4

google-maps-services-java

Java client library for Google Maps API Web Services
Java
1,708
star
5

android-maps-compose

Jetpack Compose composables for the Maps SDK for Android
Kotlin
1,143
star
6

v3-utility-library

Utility libraries for Google Maps JavaScript API v3
JavaScript
1,097
star
7

js-samples

Samples for the Google Maps JavaScript v3 API
TypeScript
741
star
8

google-maps-services-go

Go client library for Google Maps API Web Services
Go
739
star
9

google-maps-ios-utils

Google Maps SDK for iOS Utility Library
Objective-C
714
star
10

transport-tracker

Applications for tracking moving assets on a live map
JavaScript
570
star
11

react-wrapper

Wrap React components with this libary to load the Google Maps JavaScript API.
TypeScript
369
star
12

js-api-loader

Load the Google Maps JavaScript API script dynamically.
TypeScript
337
star
13

android-maps-ktx

Kotlin extensions (KTX) for the Maps SDK and Utility Library for Android
Kotlin
323
star
14

maps-sdk-for-ios-samples

Samples for the Google Maps and Places SDKs for iOS
Objective-C
259
star
15

js-markerclusterer

Create and manage clusters for large amounts of markers
TypeScript
214
star
16

android-places-demos

Google Places SDK Demos for Android
Java
167
star
17

js-three

Add ThreeJS objects to Google Maps.
TypeScript
152
star
18

extended-component-library

A set of Web Components from Google Maps Platform
TypeScript
125
star
19

roads-api-samples

Sample Android app demonstrating usage of the GMP Roads API
Java
116
star
20

openapi-specification

OpenAPI specification for Google Maps Platform API
TypeScript
100
star
21

js-markerclustererplus

TypeScript
98
star
22

android-places-ktx

Kotlin extensions (KTX) for the Places SDK for Android
Kotlin
95
star
23

js-route-optimization-app

Solve vehicle routing problems with Google Optimization AI Cloud Fleet Routing
TypeScript
90
star
24

property-finder

A turnkey solution for a fictitious real estate business
Python
79
star
25

js-markerwithlabel

Google Maps Marker with Label
TypeScript
75
star
26

deck.gl-demos

Examples showing how to use Google Maps Platform with deck.gl
JavaScript
69
star
27

js-polyline-codec

Polyline encoding and decoding.
TypeScript
57
star
28

last-mile-fleet-solution-samples

Java
56
star
29

ios-maps-sdk

Google Maps SDK for iOS
Swift
52
star
30

url-signing

Samples in various languages that demonstrate how to sign URLs for Google Maps Platform Web Services APIs
HTML
45
star
31

js-jest-mocks

Jest mocks for Google Maps Platform
TypeScript
33
star
32

nyc-subway-station-locator

NYC Subway Station Locator Solution
Go
31
star
33

python-high-volume-address-validation-library

Python
30
star
34

react-native-navigation-sdk

Java
25
star
35

android-on-demand-rides-deliveries-samples

Kotlin
24
star
36

android-maps-rx

RxJava bindings for the Maps and Places SDKs for Android
Kotlin
21
star
37

flutter-navigation-sdk

Dart
21
star
38

js-typescript-guards

TypeScript guards for the Google Maps JavaScript API.
TypeScript
20
star
39

fleet-debugger

JavaScript
20
star
40

gaming-services-samples

Example games that use Google Maps Platform gaming services.
C#
20
star
41

js-map-loader

A simple JavaScript/TypeScript utility for adding a Google Map to webpages programmatically.
TypeScript
19
star
42

ios-on-demand-rides-deliveries-samples

Objective-C
17
star
43

js-markermanager

Marker manager is an interface between the map and the user, designed to manage adding and removing many points when the viewport changes.
TypeScript
16
star
44

on-demand-rides-deliveries-samples

15
star
45

ios-combine

Combine extensions for Maps and Places SDKs for iOS
Swift
15
star
46

js-ogc

Add a WmsMapType to Google Maps
TypeScript
14
star
47

.github

Default configurations for googlemaps repositories
12
star
48

js-adv-markers-utils

TypeScript
11
star
49

java-on-demand-rides-deliveries-stub-provider

Java
11
star
50

android-v3-migration

Migration tool for V3 BETA Maps SDK to Google Play services Maps SDK
Kotlin
11
star
51

react-last-mile-fleet-solution-samples

TypeScript
11
star
52

java-fleetengine-auth

Java
10
star
53

ios-places-sdk

Swift
10
star
54

react-on-demand-rides-deliveries-samples

TypeScript
10
star
55

react-routing-playground

JavaScript
9
star
56

go-routespreferred

Go idiomatic client for Google Maps Platform Routes API.
9
star
57

js-url-signature

Sign a URL for Google Maps Platform requests.
TypeScript
9
star
58

js-types

Automatically generated types for the Google Maps Platform JavaScript API
Starlark
8
star
59

angular-on-demand-rides-deliveries-samples

TypeScript
7
star
60

gmp-firebase-extensions

TypeScript
6
star
61

ios-navigation-sdk

Swift
6
star
62

eslint-plugin-googlemaps

ESLint rules for Google Maps Platform.
TypeScript
6
star
63

fleet-events-reference-solution

Java
6
star
64

semantic-release-config

Shareable configuration for semantic release.
JavaScript
5
star
65

codelab-maps-platform-101-swift

Companion code for the Add a map to your iOS app (Swift) codelab
Swift
5
star
66

codelab-places-101-android-kotlin

Companion code for the Get started with the Places SDK for Android (Kotlin) codelab
Kotlin
4
star
67

playablelocations-proxy

A proxy implementation for the Playable Locations API.
Go
4
star
68

js-region-lookup

TypeScript
4
star
69

js-github-policy-bot

Enforce polices for repositories in the googlemaps organization.
TypeScript
3
star
70

ios-consumer-sdk

Swift
3
star
71

android-places-compose

Kotlin
3
star
72

ios-places-swift-sdk

Swift
3
star
73

go-routespreferred-samples

Routes Preferred Samples in Go
Go
2
star
74

googlemaps.github.io

A page listing Google maintained GMP libraries as well as external ones.
HTML
2
star
75

java-routespreferred-samples

Samples for Routes Preferred
Java
2
star
76

eslint-config-googlemaps

Shareable ESLint style configuration for Google Maps repositories.
TypeScript
1
star
77

ios-driver-sdk

Swift
1
star
78

java-routespreferred

Java idiomatic client for Google Maps Platform Routes Preferred API.
Java
1
star
79

.allstar

1
star