/py-front

An API wrapper for Front

Primary LanguagePythonMIT LicenseMIT

py-front

A python API wrapper around Front.

Installation

pip install py-front

Usage

Set api key

import front
front.set_api_key("jwt_token")

Use the api

import front

for conv in front.Conversation.objects.all():
    print(conv.id, conv.subject)

Available models