jakestrouse00 / mypastebot

A simple https://pastebin.com Python package to create guest pastes, find new public pastes and more!

Home Page:https://pypi.org/project/mypastebot/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MyPasteBot

A simple https://pastebin.com Python package to create guest pastes, find new public pastes and more!

prerequisites

requests==2.22.0

Installation

python -m pip install mypastebot

Methods

Create a New Guest Paste

from mypastebot import Create

token = Create.getToken()
paste = Create.makePaste(text='This is the text of our new paste', title='This is the title of the paste', format='1', token=token)
print("Link: " + paste['link'])
print("Raw Link: " + paste['raw'])

Find Pastes Using Keyword

from mypastebot import Search

# max limit is 15
pastes = Search.find(term='Python', limit=10)

print(pastes['results'])

# find most recent pastes

pastes = Search.find(term='Python', limit=10, sortType='date')

print(pastes['results'])

Find Newest Public Pastes

from mypastebot import Search


pastes = Search.new()
print(pastes['results'])

# get new public pastes as links
pastes = Search.new(linkType='link')
print(pastes['results'])

# get new public pastes as raw links
pastes = Search.new(linkType='raw')
print(pastes['results'])

About

A simple https://pastebin.com Python package to create guest pastes, find new public pastes and more!

https://pypi.org/project/mypastebot/

License:MIT License


Languages

Language:Python 100.0%