Skip to content

Latest commit

 

History

History
41 lines (26 loc) · 1.18 KB

README.md

File metadata and controls

41 lines (26 loc) · 1.18 KB

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,
)