Skip to main content

Client for EarthRanger API

Project description

EarthRanger Client

Introduction

EarthRanger is a software solution that helps protected area managers, ecologists, and wildlife biologists make informed operational decisions for wildlife conservation.

The earthranger-client (er-client) is a Python library for accessing the EarthRanger HTTP API. It simplifies interaction with the API by abstracting away the complexity of resource-based endpoints and provides multi-threaded and async capabilities for improved performance.

Uses of er-client

  • Extracting data for analysis
  • Importing ecological or other historical data
  • Integrating a new field sensor type. If you do and will be supporting multiple ER sites, contact us to talk about our Gundi integrations platform
  • Performing external analysis that results in publishing an Alert on the ER platform.

Quick Start

see simple-example.py

Installation

From pypi

pip install earthranger-client

Usage

In your code, import the library and create an instance of the client. You must provide client_id (e.g. example_client_id) for username/password authentication.

from erclient import ERClient

client = ERClient(service_root="https://sandbox.pamdas.org", client_id="example_client_id", username="", password="")

Async Support

We also offer an async client (asyncio).

Disclaimer: The async client current capabilities are limited to:

  • Posting Sensor Observations (a.k.a Positions)
  • Posting Events (a.k.a Reports)
  • Posting Event Attachments
  • Posting Camera Trap Reports
  • Getting Event Types
  • Getting Events
  • Getting Observations
  • Getting Subject Groups
  • Getting Feature groups
  • Getting Sources
  • Getting Source Assignments (aka SubjectSource resources)
  • Deleting Subjects
  • Deleting Sources
from erclient import AsyncERClient

# You can use it as an async context-managed client
async with AsyncERClient(service_root="https://sandbox.pamdas.org", client_id="example_client_id", username="", password="") as client:
   await self.er_client.post_sensor_observation(position)
   await client.post_report(report)
   await self.er_client.post_camera_trap_report(camera_trap_payload, file)
   ...
   
async with AsyncERClient(service_root="https://sandbox.pamdas.org", client_id="example_client_id", username="", password="") as client:
   async for observation in client.get_observations(start="2023-11-10T00:00:00-06:00"):
      print(observation)
      ...

# Or create an instance and close the client explicitly later
client = AsyncERClient(service_root="https://sandbox.pamdas.org", client_id="example_client_id", username="", password="")
await self.er_client.post_sensor_observation(position)
await client.post_report(report)
await self.er_client.post_camera_trap_report(camera_trap_payload, file)
...
await client.close()  # Close the session used to send requests to ER API

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

earthranger_client-1.14.0.tar.gz (320.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

earthranger_client-1.14.0-py3-none-any.whl (27.3 kB view details)

Uploaded Python 3

File details

Details for the file earthranger_client-1.14.0.tar.gz.

File metadata

  • Download URL: earthranger_client-1.14.0.tar.gz
  • Upload date:
  • Size: 320.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.15

File hashes

Hashes for earthranger_client-1.14.0.tar.gz
Algorithm Hash digest
SHA256 845062615dd73e9625c0ca5645e1a535f8544bba918249a1265cc5092f28fdce
MD5 70b00307816e35e9f5252673b9148ef5
BLAKE2b-256 3da3133b20f197783cc00611a124a66a082433f00463736e1c7ad06c3ef85676

See more details on using hashes here.

File details

Details for the file earthranger_client-1.14.0-py3-none-any.whl.

File metadata

File hashes

Hashes for earthranger_client-1.14.0-py3-none-any.whl
Algorithm Hash digest
SHA256 65190abb818fbdb1bc355474f1ecbdf876352a96e8e4f1a68439cb9f471e8047
MD5 a358286886c5b9e62c65d9f0a2eb6bed
BLAKE2b-256 bf572a19eebdaeee6afc5936757554de3e861cf4f8546747c65e64fa5e2e7759

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page