Introducing python-intercom
python-intercom is a python interface to Intercom’s API. It is designed to (almost) mirror the behaviour of python-ruby. Here is an example of it in action:
from intercom import Impression
impression = Impression.create(email='somebody@example.com')
from intercom import User
user = User.find(email='somebody@example.com')
For more details you can check out the project repository, and the pypi page.