Python client library for interacting with Freshdesk.
pip install pyfreshdesk
from freshdesk import Client
fd = Client(domain='mydomain', api_key='MY_API_KEY')
from freshdesk import Client
from freshdesk import Plan
fd = Client(
domain='mydomain',
api_key='MY_API_KEY',
plan=Plan.ESTATE,
)