Metadata-Version: 2.1
Name: country-viewport
Version: 0.1.9
Summary: Extract viewports from country codes, without the need of relying on Google APIs.
Home-page: https://ytec.nl/
Author: YTEC
Author-email: alvin@ytec.nl
License: MIT
Keywords: viewport,country
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown

# Country-viewport

If you are in need of fetching viewports from countries, but do not want to use Google APIs, this package is for you.

### Installation

```sh
$ pip3 install country-viewport
```

### Usage

```python
>>> import country_viewport
>>> country_viewport.get('CU')
{
    'min_latitude': 19.90553,
    'min_longitude': -84.28599,
    'max_latitude': 23.15917,
    'max_longitude': -74.15181,
}
```

## License

MIT


