Posting a note

This is how to post a note on Pump.io:

>>> pump = PyPump("Tsyesika@pump.megworld.co.uk", key=..., secret=..., token=..., token_secret=...)
>>> note = pump.Note("Hey! This was posted by PyPump ^_^")

Commenting on a note

You need to create a Comment object and then use the comment method on the note

>>> my_note
<Note: "This is a note!">
>>> my_comment = pump.Comment("This is a comment")
>>> my_note.comment(my_comment)
>>> # done!

Table Of Contents

Previous topic

Introduction

Next topic

Note

This Page