Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 587 Bytes

File metadata and controls

24 lines (16 loc) · 587 Bytes

The Tool its for create pastebin, logging account and read content pastebin link.

background

INSTALLATION

pip install pastebinapi

# EXEMPLE PASTEBIN API 

import pastebinapi
   
username = "<Your Username>"
password = "<Your Passwword>"
api_key = "<Your API Key>"
pastebinapi.check(username, password, api_key)

content = "text"
privacity = "1" # 0 = public / 1 = unlisted
title = "text 1"
pastebinapi.paste(username, password, api_key, privacity, title, content)