Metadata-Version: 2.1
Name: here-oauth
Version: 0.0.2
Summary: oauth for HERE Technologies API
Home-page: https://github.com/spara/here_oauth
Author: Sophia Parafina
Author-email: sophia.parafina@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/spara/here_oauth/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# HERE OAuth

`here_oauth` returns an oauth token for [HERE Technologies](https://platform.here.com) APIs.

## Requirements

A HERE [credential file](https://developer.here.com/tutorials/how-to-authenticate-with-here-oauth/#generating-here-oauth-credentials).  

## Install

```bash
$ pip install here_oauth
```

## Usage

```python
from here_oauth import here_oauth

token = here_oauth.get_token("credential_file")
print(token)
```



