All Projects → abdullahselek → HerePy

abdullahselek / HerePy

Licence: MIT, MIT licenses found Licenses found MIT LICENSE MIT COPYING
A library that provides a Python interface to the HERE APIs.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to HerePy

Python Poloniex
Poloniex API wrapper for Python 2.7 & 3
Stars: ✭ 557 (+663.01%)
Mutual labels:  wrapper, api-wrapper
Tlaw
The Last API Wrapper: Pragmatic API wrapper framework
Stars: ✭ 112 (+53.42%)
Mutual labels:  wrapper, api-wrapper
Golang Tmdb
This is a Golang wrapper for working with TMDb API. It aims to support version 3.
Stars: ✭ 36 (-50.68%)
Mutual labels:  wrapper, api-wrapper
Scrython
A python wrapper for the Scryfall API
Stars: ✭ 87 (+19.18%)
Mutual labels:  wrapper, api-wrapper
nanoleaf-aurora
A java wrapper for the Nanoleaf Aurora API
Stars: ✭ 19 (-73.97%)
Mutual labels:  wrapper, api-wrapper
Pycoingecko
Python wrapper for the CoinGecko API
Stars: ✭ 270 (+269.86%)
Mutual labels:  wrapper, api-wrapper
Binancedotnet
Official C# Wrapper for the Binance exchange API, with REST and WebSocket endpoints
Stars: ✭ 102 (+39.73%)
Mutual labels:  wrapper, api-wrapper
popyt
A very easy to use Youtube Data v3 API wrapper.
Stars: ✭ 42 (-42.47%)
Mutual labels:  wrapper, api-wrapper
PowerSchool-API
A Node.js library for interacting with the PowerSchool SIS API.
Stars: ✭ 21 (-71.23%)
Mutual labels:  wrapper, api-wrapper
GoogleMapsHelper
An easy to integrate Model Based Google Maps Helper (SVHTTPClient, AFNetworking) That lets you Geo Code , Reverse Geocode, Get Directions , Places Autocomplete.
Stars: ✭ 21 (-71.23%)
Mutual labels:  places, geocoder
SoundCloud-API
SoundCloud API wrapped into a bunch of classes. Built with Retrofit2 and RxJava2.
Stars: ✭ 63 (-13.7%)
Mutual labels:  wrapper, api-wrapper
PostcodesioR
API wrapper around postcodes.io - free UK postcode lookup and geocoder
Stars: ✭ 36 (-50.68%)
Mutual labels:  api-wrapper, geocoder
Dis-Snek
A Python API wrapper for Discord
Stars: ✭ 71 (-2.74%)
Mutual labels:  wrapper, api-wrapper
Cuda Api Wrappers
Thin C++-flavored wrappers for the CUDA Runtime API
Stars: ✭ 362 (+395.89%)
Mutual labels:  wrapper, api-wrapper
oxford dictionary
📙 A Ruby wrapper for the Oxford Dictionary API
Stars: ✭ 23 (-68.49%)
Mutual labels:  wrapper, api-wrapper
Discord.jl
The Julia Discord API Wrapper
Stars: ✭ 93 (+27.4%)
Mutual labels:  wrapper, api-wrapper
Pyblox
An API wrapper for Roblox written in Python. (Receives Updates)
Stars: ✭ 30 (-58.9%)
Mutual labels:  wrapper, api-wrapper
cablecuttr
An R wrapper for CanIStream.It API
Stars: ✭ 17 (-76.71%)
Mutual labels:  wrapper, api-wrapper
geocoder
Geocoder is a Typescript library which helps you build geo-aware applications by providing a powerful abstraction layer for geocoding manipulations
Stars: ✭ 28 (-61.64%)
Mutual labels:  places, geocoder
Osmunda
An offline geocode library for android, powered by SQLite, using osm data. 离线地理编码Android库,基于SQLite,使用开放街道地图数据。
Stars: ✭ 37 (-49.32%)
Mutual labels:  geocoder, reverse-geocoder

HerePy

https://pepy.tech/badge/herepy https://img.shields.io/conda/vn/conda-forge/herepy?logo=conda-forge

Introduction

This library provides a pure Python interface for the HERE API. It works with Python versions 3.x.

HERE provides location based services. HERE exposes a rest APIs and this library is intended to make it even easier for Python programmers to use.

Installing

You can install herepy using Python Package Index:

$ pip install herepy

Install with conda from the Anaconda conda-forge channel:

$ conda install -c conda-forge herepy

Install from its source repository on GitHub:

$ pip install -e git+https://github.com/abdullahselek/HerePy#egg=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.RoutingResponseV8
* 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
* herepy.MapTileApi
* herepy.VectorTileApi
* herepy.MapImageApi

Documentation

View the latest herepy documentation at https://herepy.abdullahselek.com/. You can view HERE's API documentation at: 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/. All API clients need an API key which you can get from HERE Developer Portal.

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].