File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Basic Geocoding
14
14
15
15
.. code-block :: python
16
16
17
- >> > import geocoder # pip install geocoder
17
+ >> > import geocoder
18
18
>> > g = geocoder.google(' Mountain View, CA' )
19
19
>> > g.json
20
20
...
@@ -73,13 +73,18 @@ Parameters
73
73
~~~~~~~~~~
74
74
75
75
- `location `: Your search location you want geocoded.
76
+ - `key `: Your Google developers free key.
77
+ - `language `: 2-letter code of preferred language of returned address elements.
78
+ - `client `: Google for Work client ID. Use with client_secret. Cannot use with key parameter
79
+ - `client_secret `: Google for Work client secret. Use with client.
76
80
- `method `: (default=geocode) Use the following:
77
81
78
82
- geocode
79
83
- reverse
80
84
- timezone
81
85
- elevation
82
86
87
+
83
88
References
84
89
~~~~~~~~~~
85
90
Original file line number Diff line number Diff line change 28
28
__title__ = 'geocoder'
29
29
__author__ = 'Denis Carriere'
30
30
__author_email__ = 'carriere.denis@gmail.com'
31
- __version__ = '1.5.1 '
31
+ __version__ = '1.5.2 '
32
32
__license__ = 'MIT'
33
33
__copyright__ = 'Copyright (c) 2013-2015 Denis Carriere'
34
34
You can’t perform that action at this time.
0 commit comments