Skip to main content

Flowdock API Wrapper

Project description

PyPI Release Version License Supported Python Distro

This API wrapper provides methods with intuitive implementation to make development simpler.

With Flowdock API, developers are able to:

Create chatbots
>>> import flowdock
>>> flow = flowdock.connect(token=TOKEN, org='apua', flow='main')
>>> msg = flow.send('Message')  # send a message
>>> thread = flow.thread(msg['thread']['id'])
>>> reply = thread.send('Reply')  # reply the message
>>> flow.list(limit=1)['content']  # get last message content
'Reply'
Integrate external services
>>> from flowdock import constructors as new
>>> apua = new.author('Apua', avatar='http://gravatar.com/apua.jpg')
>>> item = new.thread(
...     'Item 42',
...     external_url = 'https://external.service/item/42',
...     body = '<strong>The detail of Item 01</strong>',
...     fields = [
...         new.field(label='Project', value='F.A.W.'),
...         new.field(label='<em>Creator</em>', value='<em>Apua</em>'),
...     ],
...     status = new.status(color='green', value='WIP'),
... )
>>> import flowdock
>>> serivce = flowdock.connect(flow_token=FLOW_TOKEN)
>>> service.present('42', apua, 'created item 42', item)
Monitor Flowdock flows
>>> import flowdock
>>> flow = flowdock.connect(token=TOKEN, org='apua', flow='main')
>>> ev = next(flow.events())
>>> ev['content'])
'New message!!'

How to Install

This package is available on PyPI:

$ pip install flowdock-api-wrapper

How to Use

The reference is available to detail the library usage.

It also summarizes the usage of Flowdock API while the wrapped methods map to the API directly.

Please refer to reference for further usage.

How to Contribute

To contribute the package, refer to development guide, which decribe the design, implementation, and maintenance.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

flowdock-api-wrapper-1.1.tar.gz (5.8 kB view hashes)

Uploaded Source

Built Distribution

flowdock_api_wrapper-1.1-py3-none-any.whl (5.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page