pyfreshdesk

Python client for Freshdesk API.


Keywords
freshdesk, api, client
License
Other
Install
pip install pyfreshdesk==0.1.2

Documentation

pre-commit Code style: black

PyPI PyPI - Python Version PyPI - License

Read the Docs

Description

Python client library for interacting with Freshdesk.

Installation

pip install pyfreshdesk

Usage

Basic

from freshdesk import Client


fd = Client(domain='mydomain', api_key='MY_API_KEY')

Different Plan

from freshdesk import Client
from freshdesk import Plan


fd = Client(
    domain='mydomain',
    api_key='MY_API_KEY',
    plan=Plan.ESTATE,
)