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

Latest commit

 

History

History
43 lines (32 loc) · 679 Bytes

File metadata and controls

43 lines (32 loc) · 679 Bytes

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