├── .codecov.yml ├── .darglint ├── .github └── workflows │ ├── binder.yml │ ├── main.yml │ └── release.yml ├── .gitignore ├── .isort.cfg ├── .readthedocs.yml ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── binder ├── environment.yml └── postBuild ├── ci └── environment.yml ├── docs ├── notebooks │ ├── README.md │ ├── authentication.ipynb │ ├── autosuggest.ipynb │ ├── destination_weather.ipynb │ ├── isoline_routing_restaurant_search.ipynb │ ├── location_services.ipynb │ ├── matrix_routing.ipynb │ ├── routing.ipynb │ └── tour_planning.ipynb └── source │ ├── Makefile │ ├── autosuggest.rst │ ├── bicycle_route.rst │ ├── browse.rst │ ├── car_route.rst │ ├── changelog.rst │ ├── conf.py │ ├── contributing.rst │ ├── dest_weather.rst │ ├── discover.rst │ ├── flexible_mode.rst │ ├── geocode.rst │ ├── here_location_services.__version__.rst │ ├── here_location_services.apis.rst │ ├── here_location_services.autosuggest_api.rst │ ├── here_location_services.config.autosuggest_config.rst │ ├── here_location_services.config.base_config.rst │ ├── here_location_services.config.dest_weather_config.rst │ ├── here_location_services.config.isoline_routing_config.rst │ ├── here_location_services.config.matrix_routing_config.rst │ ├── here_location_services.config.routing_config.rst │ ├── here_location_services.config.rst │ ├── here_location_services.config.search_config.rst │ ├── here_location_services.config.tour_planning_config.rst │ ├── here_location_services.config.url_config.rst │ ├── here_location_services.destination_weather_api.rst │ ├── here_location_services.exceptions.rst │ ├── here_location_services.geocoding_search_api.rst │ ├── here_location_services.isoline_routing_api.rst │ ├── here_location_services.ls.rst │ ├── here_location_services.matrix_routing_api.rst │ ├── here_location_services.platform.apis.aaa_oauth2_api.rst │ ├── here_location_services.platform.apis.api.rst │ ├── here_location_services.platform.apis.rst │ ├── here_location_services.platform.auth.rst │ ├── here_location_services.platform.credentials.rst │ ├── here_location_services.platform.rst │ ├── here_location_services.responses.rst │ ├── here_location_services.routing_api.rst │ ├── here_location_services.rst │ ├── here_location_services.tour_planning_api.rst │ ├── here_location_services.utils.rst │ ├── index.rst │ ├── install.rst │ ├── isoline_routing.rst │ ├── lookup.rst │ ├── make.bat │ ├── matrix_routing.rst │ ├── pedestrian_route.rst │ ├── prerequisites.rst │ ├── profile_mode.rst │ ├── region_mode.rst │ ├── reverse_geocode.rst │ ├── routing.rst │ ├── scooter_route.rst │ ├── tour_planning.rst │ └── truck_route.rst ├── here_location_services ├── __init__.py ├── __version__.py ├── apis.py ├── autosuggest_api.py ├── config │ ├── __init__.py │ ├── autosuggest_config.py │ ├── base_config.py │ ├── dest_weather_config.py │ ├── isoline_routing_config.py │ ├── matrix_routing_config.py │ ├── routing_config.py │ ├── search_config.py │ ├── tour_planning_config.py │ └── url_config.py ├── destination_weather_api.py ├── exceptions.py ├── geocoding_search_api.py ├── isoline_routing_api.py ├── ls.py ├── matrix_routing_api.py ├── platform │ ├── __init__.py │ ├── apis │ │ ├── __init__.py │ │ ├── aaa_oauth2_api.py │ │ └── api.py │ ├── auth.py │ └── credentials.py ├── responses.py ├── routing_api.py ├── tour_planning_api.py └── utils.py ├── images ├── geocoding.gif └── isolines.gif ├── requirements.txt ├── requirements_dev.txt ├── scripts └── build_docs.sh ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── conftest.py ├── data ├── dummy_credentials.properties └── erroneous_credential.properties ├── test_exceptions.py ├── test_ls.py ├── test_ls_apis.py ├── test_ls_auth_token.py ├── test_platform_api.py ├── test_platform_credentials.py └── test_utils.py /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.darglint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/.darglint -------------------------------------------------------------------------------- /.github/workflows/binder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/.github/workflows/binder.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/README.md -------------------------------------------------------------------------------- /binder/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/binder/environment.yml -------------------------------------------------------------------------------- /binder/postBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/binder/postBuild -------------------------------------------------------------------------------- /ci/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/ci/environment.yml -------------------------------------------------------------------------------- /docs/notebooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/notebooks/README.md -------------------------------------------------------------------------------- /docs/notebooks/authentication.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/notebooks/authentication.ipynb -------------------------------------------------------------------------------- /docs/notebooks/autosuggest.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/notebooks/autosuggest.ipynb -------------------------------------------------------------------------------- /docs/notebooks/destination_weather.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/notebooks/destination_weather.ipynb -------------------------------------------------------------------------------- /docs/notebooks/isoline_routing_restaurant_search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/notebooks/isoline_routing_restaurant_search.ipynb -------------------------------------------------------------------------------- /docs/notebooks/location_services.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/notebooks/location_services.ipynb -------------------------------------------------------------------------------- /docs/notebooks/matrix_routing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/notebooks/matrix_routing.ipynb -------------------------------------------------------------------------------- /docs/notebooks/routing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/notebooks/routing.ipynb -------------------------------------------------------------------------------- /docs/notebooks/tour_planning.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/notebooks/tour_planning.ipynb -------------------------------------------------------------------------------- /docs/source/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/Makefile -------------------------------------------------------------------------------- /docs/source/autosuggest.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/autosuggest.rst -------------------------------------------------------------------------------- /docs/source/bicycle_route.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/bicycle_route.rst -------------------------------------------------------------------------------- /docs/source/browse.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/browse.rst -------------------------------------------------------------------------------- /docs/source/car_route.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/car_route.rst -------------------------------------------------------------------------------- /docs/source/changelog.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../../CHANGELOG.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../../CONTRIBUTING.rst -------------------------------------------------------------------------------- /docs/source/dest_weather.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/dest_weather.rst -------------------------------------------------------------------------------- /docs/source/discover.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/discover.rst -------------------------------------------------------------------------------- /docs/source/flexible_mode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/flexible_mode.rst -------------------------------------------------------------------------------- /docs/source/geocode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/geocode.rst -------------------------------------------------------------------------------- /docs/source/here_location_services.__version__.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/here_location_services.__version__.rst -------------------------------------------------------------------------------- /docs/source/here_location_services.apis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/here_location_services.apis.rst -------------------------------------------------------------------------------- /docs/source/here_location_services.autosuggest_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/here_location_services.autosuggest_api.rst -------------------------------------------------------------------------------- /docs/source/here_location_services.config.autosuggest_config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/here_location_services.config.autosuggest_config.rst -------------------------------------------------------------------------------- /docs/source/here_location_services.config.base_config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/here_location_services.config.base_config.rst -------------------------------------------------------------------------------- /docs/source/here_location_services.config.dest_weather_config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/here_location_services.config.dest_weather_config.rst -------------------------------------------------------------------------------- /docs/source/here_location_services.config.isoline_routing_config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/here_location_services.config.isoline_routing_config.rst -------------------------------------------------------------------------------- /docs/source/here_location_services.config.matrix_routing_config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/here_location_services.config.matrix_routing_config.rst -------------------------------------------------------------------------------- /docs/source/here_location_services.config.routing_config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/here_location_services.config.routing_config.rst -------------------------------------------------------------------------------- /docs/source/here_location_services.config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/here_location_services.config.rst -------------------------------------------------------------------------------- /docs/source/here_location_services.config.search_config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/here_location_services.config.search_config.rst -------------------------------------------------------------------------------- /docs/source/here_location_services.config.tour_planning_config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/here_location_services.config.tour_planning_config.rst -------------------------------------------------------------------------------- /docs/source/here_location_services.config.url_config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/here_location_services.config.url_config.rst -------------------------------------------------------------------------------- /docs/source/here_location_services.destination_weather_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/here_location_services.destination_weather_api.rst -------------------------------------------------------------------------------- /docs/source/here_location_services.exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/here_location_services.exceptions.rst -------------------------------------------------------------------------------- /docs/source/here_location_services.geocoding_search_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/here_location_services.geocoding_search_api.rst -------------------------------------------------------------------------------- /docs/source/here_location_services.isoline_routing_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/here_location_services.isoline_routing_api.rst -------------------------------------------------------------------------------- /docs/source/here_location_services.ls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/here_location_services.ls.rst -------------------------------------------------------------------------------- /docs/source/here_location_services.matrix_routing_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/here_location_services.matrix_routing_api.rst -------------------------------------------------------------------------------- /docs/source/here_location_services.platform.apis.aaa_oauth2_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/here_location_services.platform.apis.aaa_oauth2_api.rst -------------------------------------------------------------------------------- /docs/source/here_location_services.platform.apis.api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/here_location_services.platform.apis.api.rst -------------------------------------------------------------------------------- /docs/source/here_location_services.platform.apis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/here_location_services.platform.apis.rst -------------------------------------------------------------------------------- /docs/source/here_location_services.platform.auth.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/here_location_services.platform.auth.rst -------------------------------------------------------------------------------- /docs/source/here_location_services.platform.credentials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/here_location_services.platform.credentials.rst -------------------------------------------------------------------------------- /docs/source/here_location_services.platform.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/here_location_services.platform.rst -------------------------------------------------------------------------------- /docs/source/here_location_services.responses.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/here_location_services.responses.rst -------------------------------------------------------------------------------- /docs/source/here_location_services.routing_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/here_location_services.routing_api.rst -------------------------------------------------------------------------------- /docs/source/here_location_services.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/here_location_services.rst -------------------------------------------------------------------------------- /docs/source/here_location_services.tour_planning_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/here_location_services.tour_planning_api.rst -------------------------------------------------------------------------------- /docs/source/here_location_services.utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/here_location_services.utils.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/install.rst -------------------------------------------------------------------------------- /docs/source/isoline_routing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/isoline_routing.rst -------------------------------------------------------------------------------- /docs/source/lookup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/lookup.rst -------------------------------------------------------------------------------- /docs/source/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/make.bat -------------------------------------------------------------------------------- /docs/source/matrix_routing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/matrix_routing.rst -------------------------------------------------------------------------------- /docs/source/pedestrian_route.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/pedestrian_route.rst -------------------------------------------------------------------------------- /docs/source/prerequisites.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/prerequisites.rst -------------------------------------------------------------------------------- /docs/source/profile_mode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/profile_mode.rst -------------------------------------------------------------------------------- /docs/source/region_mode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/region_mode.rst -------------------------------------------------------------------------------- /docs/source/reverse_geocode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/reverse_geocode.rst -------------------------------------------------------------------------------- /docs/source/routing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/routing.rst -------------------------------------------------------------------------------- /docs/source/scooter_route.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/scooter_route.rst -------------------------------------------------------------------------------- /docs/source/tour_planning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/tour_planning.rst -------------------------------------------------------------------------------- /docs/source/truck_route.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/docs/source/truck_route.rst -------------------------------------------------------------------------------- /here_location_services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/here_location_services/__init__.py -------------------------------------------------------------------------------- /here_location_services/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/here_location_services/__version__.py -------------------------------------------------------------------------------- /here_location_services/apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/here_location_services/apis.py -------------------------------------------------------------------------------- /here_location_services/autosuggest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/here_location_services/autosuggest_api.py -------------------------------------------------------------------------------- /here_location_services/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/here_location_services/config/__init__.py -------------------------------------------------------------------------------- /here_location_services/config/autosuggest_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/here_location_services/config/autosuggest_config.py -------------------------------------------------------------------------------- /here_location_services/config/base_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/here_location_services/config/base_config.py -------------------------------------------------------------------------------- /here_location_services/config/dest_weather_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/here_location_services/config/dest_weather_config.py -------------------------------------------------------------------------------- /here_location_services/config/isoline_routing_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/here_location_services/config/isoline_routing_config.py -------------------------------------------------------------------------------- /here_location_services/config/matrix_routing_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/here_location_services/config/matrix_routing_config.py -------------------------------------------------------------------------------- /here_location_services/config/routing_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/here_location_services/config/routing_config.py -------------------------------------------------------------------------------- /here_location_services/config/search_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/here_location_services/config/search_config.py -------------------------------------------------------------------------------- /here_location_services/config/tour_planning_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/here_location_services/config/tour_planning_config.py -------------------------------------------------------------------------------- /here_location_services/config/url_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/here_location_services/config/url_config.py -------------------------------------------------------------------------------- /here_location_services/destination_weather_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/here_location_services/destination_weather_api.py -------------------------------------------------------------------------------- /here_location_services/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/here_location_services/exceptions.py -------------------------------------------------------------------------------- /here_location_services/geocoding_search_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/here_location_services/geocoding_search_api.py -------------------------------------------------------------------------------- /here_location_services/isoline_routing_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/here_location_services/isoline_routing_api.py -------------------------------------------------------------------------------- /here_location_services/ls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/here_location_services/ls.py -------------------------------------------------------------------------------- /here_location_services/matrix_routing_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/here_location_services/matrix_routing_api.py -------------------------------------------------------------------------------- /here_location_services/platform/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /here_location_services/platform/apis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /here_location_services/platform/apis/aaa_oauth2_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/here_location_services/platform/apis/aaa_oauth2_api.py -------------------------------------------------------------------------------- /here_location_services/platform/apis/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/here_location_services/platform/apis/api.py -------------------------------------------------------------------------------- /here_location_services/platform/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/here_location_services/platform/auth.py -------------------------------------------------------------------------------- /here_location_services/platform/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/here_location_services/platform/credentials.py -------------------------------------------------------------------------------- /here_location_services/responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/here_location_services/responses.py -------------------------------------------------------------------------------- /here_location_services/routing_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/here_location_services/routing_api.py -------------------------------------------------------------------------------- /here_location_services/tour_planning_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/here_location_services/tour_planning_api.py -------------------------------------------------------------------------------- /here_location_services/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/here_location_services/utils.py -------------------------------------------------------------------------------- /images/geocoding.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/images/geocoding.gif -------------------------------------------------------------------------------- /images/isolines.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/images/isolines.gif -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /scripts/build_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/scripts/build_docs.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/dummy_credentials.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/tests/data/dummy_credentials.properties -------------------------------------------------------------------------------- /tests/data/erroneous_credential.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/tests/test_exceptions.py -------------------------------------------------------------------------------- /tests/test_ls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/tests/test_ls.py -------------------------------------------------------------------------------- /tests/test_ls_apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/tests/test_ls_apis.py -------------------------------------------------------------------------------- /tests/test_ls_auth_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/tests/test_ls_auth_token.py -------------------------------------------------------------------------------- /tests/test_platform_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/tests/test_platform_api.py -------------------------------------------------------------------------------- /tests/test_platform_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/tests/test_platform_credentials.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heremaps/here-location-services-python/HEAD/tests/test_utils.py --------------------------------------------------------------------------------