Metadata-Version: 2.1
Name: easygeo
Version: 0.0.2
Summary: Simple library that allows to geocode using Nominatim or Google V3 API
Home-page: https://github.com/CubelliJ/easyGeo
Author: Joaquin Cubelli
Author-email: jcubellidl@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS
Description-Content-Type: text/markdown
License-File: LICENCE.txt

# Geocoding
 Geocoding library that makes geocodification easier (and possibly cheaper). 
 It's a wrapper for geopy geocoding tools. And at the moment it allows to use Google's V3 or Nominatim API.

## Instalation:

You can install this package using pip.

```python
pip install simplegeo
```

## Usage:

```python
from simplegeo import GeoCode

g = GeoCode(method="Nominatim", domain="nominatim.openstreetmap.org")

g.geocode("Beauchef 850, Santiago, RM, Chile")

# You can also bulk use this library
df["Address"].apply(g.geocode)

# This function allows to save the cached addresses into a file.
g.save_cache()
```

## Development:

In case you want to install simplegeo along with the tools you need to develop and run the tests, run the following in your virtualenv.

```bash
$ pip install -e .[dev]
```






