Metadata-Version: 2.1
Name: herepy
Version: 3.2.0
Summary: A library that provides a Python interface to the HERE APIs
Home-page: https://github.com/abdullahselek/HerePy
Author: Abdullah Selek
Author-email: abdullahselek@gmail.com
Maintainer: Abdullah Selek
Maintainer-email: abdullahselek@gmail.com
License: MIT License
Download-URL: https://pypi.org/pypi/herepy
Description: HerePy
        ======
        
        .. image:: https://github.com/abdullahselek/HerePy/workflows/HerePy%20CI/badge.svg
            :target: https://github.com/abdullahselek/HerePy/actions
        
        .. image:: https://img.shields.io/pypi/v/herepy.svg
            :target: https://pypi.python.org/pypi/herepy/
        
        .. image:: https://img.shields.io/pypi/pyversions/herepy.svg
            :target: https://pypi.org/project/herepy
        
        .. image:: https://codecov.io/gh/abdullahselek/HerePy/branch/master/graph/badge.svg
            :target: https://codecov.io/gh/abdullahselek/HerePy
        
        .. image:: https://requires.io/github/abdullahselek/HerePy/requirements.svg?branch=master
            :target: https://requires.io/github/abdullahselek/HerePy/requirements/?branch=master
        
        +-------------------------------------------------------------------------+----------------------------------------------------------------------------------+
        |                                Linux                                    |                                       Windows                                    |
        +=========================================================================+==================================================================================+
        | .. image:: https://travis-ci.org/abdullahselek/HerePy.svg?branch=master | .. image:: https://ci.appveyor.com/api/projects/status/wlxrx5h8e8xyhvq2?svg=true |
        |    :target: https://travis-ci.org/abdullahselek/HerePy                  |    :target: https://ci.appveyor.com/project/abdullahselek/herepy                 |
        +-------------------------------------------------------------------------+----------------------------------------------------------------------------------+
        
        Introduction
        ============
        
        This library provides a pure Python interface for the `HERE API <https://developer.here.com/>`_. It works with Python versions 3.x.
        
        `HERE <https://www.here.com/>`_ provides location based services. HERE exposes a `rest APIs <https://developer.here.com/documentation>`_ and this library is intended to make it even easier for Python programmers to use.
        
        Installing
        ==========
        
        You can install herepy using::
        
            $ pip install herepy
        
        Getting the code
        ================
        
        The code is hosted at https://github.com/abdullahselek/HerePy
        
        Check out the latest development version anonymously with::
        
            $ git clone git://github.com/abdullahselek/HerePy.git
            $ cd HerePy
        
        To install dependencies, run either::
        
            $ pip install -r requirements.testing.txt
            $ pip install -r requirements.txt
        
        To install the minimal dependencies for production use (i.e., what is installed
        with ``pip install herepy``) run::
        
            $ pip install -r requirements.txt
        
        Running Tests
        =============
        
        The test suite can be run against a single Python version which requires ``pip install pytest`` and optionally ``pip install pytest-cov`` (these are included if you have installed dependencies from ``requirements.testing.txt``)
        
        To run the unit tests with a single Python version::
        
            $ py.test -v
        
        to also run code coverage::
        
            $ py.test --cov=herepy
        
        To run the unit tests against a set of Python versions::
        
            $ tox
        
        Models
        ======
        
        The library utilizes models to represent various data structures returned by **herepy**::
        
            * herepy.GeocoderResponse
            * herepy.GeocoderReverseResponse
            * herepy.RoutingResponse
            * herepy.RoutingMatrixResponse
            * herepy.GeocoderAutoCompleteResponse
            * herepy.PlacesResponse
            * herepy.PublicTransitResponse
            * herepy.RmeResponse
            * herepy.TrafficIncidentResponse
            * herepy.DestinationWeatherResponse
            * herepy.EVChargingStationsResponse
            * herepy.WaypointSequenceResponse
            * herepy.TrafficFlowResponse
            * herepy.TrafficFlowAvailabilityResponse
            * herepy.IsolineRoutingResponse
        
        API Clients
        ===========
        
        Available API clients in **herepy**::
        
            * herepy.DestinationWeatherApi
            * herepy.EVChargingStationsApi
            * herepy.FleetTelematicsApi
            * herepy.GeocoderApi
            * herepy.GeocoderAutoCompleteApi
            * herepy.GeocoderReverseApi
            * herepy.PlacesApi
            * herepy.PublicTransitApi
            * herepy.RmeApi
            * herepy.RoutingApi
            * herepy.TrafficApi
            * herepy.IsolineRoutingApi
        
        Documentation
        =============
        
        View the latest herepy documentation at `https://herepy.abdullahselek.com/ <https://herepy.abdullahselek.com/>`_. You can view HERE's API documentation at: `https://developer.here.com/documentation <https://developer.here.com/documentation>`_.
        
        Using
        =====
        
        The library provides a Python wrapper around the HERE APIs with different data models. To get started, check out the examples in the ``examples/`` folder or
        read the documentation at `https://herepy.abdullahselek.com/ <https://herepy.abdullahselek.com/>`_. All API clients need an API key which you can get from `HERE Developer Portal <https://developer.here.com/>`_.
        
        License
        -------
        
        MIT License
        
        Copyright (c) 2017 Abdullah Selek
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Keywords: here api,here technologies,here python api clients,rest api clients
Platform: Any
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.5
Description-Content-Type: text/x-rst
