API wrapper for the Isogeo REST API
Project description
Isogeo API Python SDK
A Python package to use Isogeo REST API.
Requirements
Isogeo API requires oAuth2 authentication. To obtain credentials, send us your request by email projects+api@isogeo.com.
Based on the well known requests
package and the extension requests-oauthlib
.
Documentation
Usage in a nutshell
python -m pip install --user isogeo-pysdk
# or using pipenv
python -m pipenv install isogeo-pysdk
Quickstart
from isogeo_pysdk import Isogeo
# authenticate your client application
isogeo = Isogeo(client_id=app_id,
client_secret=app_secret)
# get the token
isogeo.connect()
# search within catalogs shared to the application
search = isogeo.search()
# print some statements
print("Search query parameters: ", search.query)
print("Total count of metadatas shared: ", search.total)
print("Count of resources got by request: {}\n".format(len(search.results)))
# close the session when you finish
isogeo.close()
Samples are available in the source repository <https://github.com/isogeo/isogeo-api-py-minsdk/tree/master/isogeo_pysdk/samples>
_.
Tests
Tests are performed for each published commit:
python -m pip install --upgrade -r tests/requirements_test.txt
python -m pytest
Or using the included Powershell script:
.\tool_test_coverage.ps1
Build
To package and upload:
.\tool_build_upload.ps1
To build docs:
.\tool_docs_build.ps1
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
isogeo-pysdk-3.8.1.tar.gz
(167.7 kB
view hashes)
Built Distribution
isogeo_pysdk-3.8.1-py3-none-any.whl
(222.5 kB
view hashes)
Close
Hashes for isogeo_pysdk-3.8.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ef769155c52d283c4f04a5e2ce9237d9d8e811e441f0215d327cd48aacced343 |
|
MD5 | 63acccb721a49fa1b0c576cecaa5b4ae |
|
BLAKE2b-256 | a7aefbfbb3990a655a11993500ab14c4cbf412c0ecc4e2abbb1cde99550fd4b7 |