Skip to content

brightshiny/zenpy

This branch is 619 commits behind facetoe/zenpy:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

5b7040d · Apr 16, 2016
Apr 10, 2016
Apr 16, 2016
Sep 15, 2015
Jan 8, 2016
Aug 30, 2015
Apr 16, 2016

Repository files navigation

Zenpy

Zenpy is a Python wrapper for the Zendesk API. The goal of the project is to make it possible to write clean, fast, Pythonic code when interacting with Zendesk progmatically. The wrapper tries to keep API calls to a minimum. Wherever it makes sense objects are cached, and attributes of objects that would trigger an API call are evaluated lazily.

The wrapper supports both reading and writing from the API.

Zenpy supports both Python2 and Python3.

Zenpy is still in beta, so please report any bugs!

Quickstart

# Create a Zenpy object
zenpy = Zenpy(**credentials)

# Create a new ticket
zenpy.tickets.create(Ticket(subject="Important", description="Thing"))

# Perform a simple search
for ticket in zenpy.search("party", type='ticket', assignee="face"):
    print(ticket)

Documentation

Check out the documentation for more info.

Contributions

Contributions are very welcome.

About

Python wrapper for the Zendesk API

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%