A Python API Wrapper for Oppe


Keywords
api-wrapper, python, wrapper
License
MIT
Install
pip install oppe==0.2.3

Documentation

oppe-for-python

codecov PyPI version Downloads License

An API wrapper for Oppe written in Python.

Installation

pip install oppe

Usage

Sending an event

from oppe import Oppe
from oppe.exceptions import EventRequestError

oppe = Oppe(api_token='insert-api-token-here', project_id="uuid-of-project")

try:
    oppe.event(
        channel_id="uuid-of-channel",
        title="user-registered",
        description="A new user has registered.",
        emoji="👋",
        data={
            "user_id": 123,
        },
    )
except EventRequestError as e:
    # Handle error
    print(e)