Skip to content
This repository has been archived by the owner on Jan 26, 2022. It is now read-only.

tizz98/py-front

Repository files navigation

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