Welcome to pbwrap’s documentation!¶
This wrapper is based on Pastebin API read their Documentation here for extra information and usage guide.
Quickstart¶
Use pip to install pbwrap
pip install pbwrap
Import pbwrap to you script and create a Pastebin object.
from pbwrap import Pastebin
pb = Pastebin(your_api_key)
You are now ready to request things from the Pastebin API
Note
It’s reccomended to authenticate as most endpoints require a user_key API is limited without authenticating.
pb.authenticate(username, password)
Note
More documentation will be added in later releases!Read the Pastebin Class methods to learn how to use all the API endpoints.
Installation and Usage¶
Use pip to install pbwrap
pip install pbwrap
Import pbwrap to you script and create a Pastebin object.
from pbwrap import Pastebin
pb = Pastebin(your_api_key)
You are now ready to request things from the Pastebin API
Note
It’s reccomended to authenticate as most endpoints require a user_key API is limited without authenticating.
pb.authenticate(username, password)
Pastebin Class¶
-
class
pbwrap.
Pastebin
(api_dev_key=None)[source]¶ Pastebin class represents your communication with the Pastebin API through its functions you can use every API endpoint avalaible.
Most functions require at least an api_dev_key parameter. Functions for manipulating your pastes through the API require an api_user_key.
Instantiate a Pastebin Object
Parameters: api_dev_key (string) – Your API Pastebin key -
authenticate
(username, password)[source]¶ Authenticate through the API login endpoint Your api_user_key attribute is set automatically
Parameters: - username (string) – Your username
- password (string) – Your password
Returns: your user_id key
Return type: string
-
create_paste
(api_paste_code, api_paste_private=0, api_paste_name=None, api_paste_expire_date=None, api_paste_format=None)[source]¶ Create a new paste if succesfull return it’s url.
Parameters: - api_paste_code (string) – your paste text
- api_paste_private (int) – valid values=0(public),1(unlisted),2(private)
- api_user_name – your paste name
- api_paste_expire_date (string) – check documentation for valid values
- api_paste_format (string) – check documentation for valid values
Returns: new paste url
Return type: string
-
create_paste_from_file
(filepath, api_paste_private=0, api_paste_name=None, api_paste_expire_date=None, api_paste_format=None)[source]¶ Create a new paste from file if succesfull return it’s url.
Parameters: - filepath (string) – the path of the file
- api_paste_private (int) – valid values=0(public),1(unlisted),2(private)
- api_user_name – your paste name
- api_paste_expire_date (string) – check documentation for valid values
- api_paste_format (string) – check documentation for valid values
Returns: new paste url
Return type: string
-
delete_user_paste
(api_paste_key)[source]¶ Deletes a paste created by the user.
Parameters: api_paste_key (string) – the id key of the paste you want to delete Returns: api response Return type: string
-
static
get_archive
()[source]¶ Return archive paste link list.Archive contains 25 most recent pastes.
Returns: a list of url strings Return type: list
-
static
get_raw_paste
(paste_id)[source]¶ Return raw string of given paste_id.
get_raw_paste(pasted_id)
Parameters: paste_id (string) – The ID key of the paste Returns: the text of the paste Return type: string
-
static
get_recent_pastes
(limit=50, lang=None)[source]¶ Return a list containing dictionaries of paste.
Parameters: - limit (int) – the limit of the items returned defaults to 50
- lang (string) – return only pastes from certain language defaults to None
Returns: list of Paste objects.
Return type: list(Paste)
-
get_trending
()[source]¶ Return a list of paste objects created from the most trending pastes
Returns: a list of Paste objects Return type: list
-
get_user_details
()[source]¶ Return user details in a dictionary. Can only be user after authenticating with get_user_id(username, password).
Returns: dictionary containing user details Return type: dictionary
-
get_user_pastes
(api_results_limit=None)[source]¶ Return a list of Pastes created from the user
Parameters: api_results_limit (int) – min=1, max=1000 Returns: a list of Pastes created from the user Return type: list
-
get_user_raw_paste
(api_paste_key)[source]¶ Return the raw data of a user paste(even private pastes!) as string.
Parameters: api_paste_key (string) – the id key of the paste you want to fetch Returns: the text of the paste Return type: string
-
Formatter Module¶
Contains function that manipulate the API returns for easier data manipulation.
-
pbwrap.formatter.
archive_url_format
(archive_html)[source]¶ Return a list with recent pastes ids
Parameters: archive_html (string) – raw html of the archive url Returns: a list containing paste ids Return type: list
Models Classes¶
-
class
pbwrap.models.
Paste
(paste_dict)[source]¶ Defines a Paste from Pastebin paste contains the following fields: key, date, title, size, expire_date, private, format_short, format_long, url, hits.