Posts tagged with api

Introducing python-intercom

Filed in: Python, Releases

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.

Read more...

Introducing python-docraptor

Filed in: Python, Releases

python-docraptor is a python interface to the Doc Raptor document generation API. It is designed to mirror (well almost) the behaviour of the doc-raptor-gem, including asynchronous support. Here’s an example of it in action: from docraptor import DocRaptor docraptor = DocRaptor() resp = docraptor.create({ ‘document_content’: ‘<p>python-docraptor Test</p>’, ‘test’: True }) # PDF data is now [...]

Read more...