/SimplePasteBin

A Simple Python3 Library For PasteBin.com

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

SimplePasteBin

A Simple Python3 Library For PasteBin.com

Example

Instantiate the class, login, and create a paste.

import SimplePasteBin as helper

pb = helper.SimplePasteBin(
    username='<YOUR USERNAME>',
    password='<YOUR PASSWORD>',
    api_key='<YOUR API KEY>',
    is_verbose=True)

ret_val = pb.login()
ret_val += pb.create_paste('title1', 'my paste content', 'N', 'public')

if ret_val == 0:
    exit(0)
else:
    exit(1)