python pastebin crawler import requests # see https://2.python-requests.org/en/master/ key = 'your_dev_key_here' text = "a text" t_title = "a_paste_title" login_data = { 'api_dev_key': key, 'api_user_name': 'your_acc_username', 'api_user_password': 'your_acc_password' } python pastebin crawler How to get it for free? python pastebin crawler data = { 'api_option': 'paste', 'api_dev_key':key, 'api_paste_code':text", 'api_paste_name':t_title, 'api_paste_expire_date': 'see_https://pastebin.com/api', 'api_user_key': None, 'api_paste_format': 'see_https://pastebin.com/api' } python pastebin crawler PasteShr python pastebin crawler login = requests.post("https://pastebin.com/api/api_login.php", data=login_data) print("Login status: ", login.status_code if login.status_code != 200 else "OK/200") print("User token: ", login.text) data['api_user_key'] = login.text r = requests.post("https://pastebin.com/api/api_post.php", data=data) print("Paste send: ", r.status_code if r.status_code != 200 else "OK/200") print("Paste URL: ", r.text) python pastebin crawler How to get it for free? python pastebin crawler #sent from python 3.7 python pastebin crawler