Вот что получилось:
import urllib.request api_dev_key = '<my_dev_key>' api_paste_code = 'code' * 10 api_paste_private = '1' api_paste_name = 'mypaste.txt' api_paste_expire_date = '10M' api_paste_format = 'text' api_user_key = '' url = 'http://pastebin.com/api/api_post.php?api_option=paste&api_user_key={}&api_paste_private={}&api_paste_name= {}&api_paste_expire_date={}&api_paste_format={}&api_dev_key={}&api_paste_code={}' url = url.format(api_user_key, api_paste_private, api_paste_name, api_paste_expire_date, api_paste_format, api_de v_key, api_paste_code) print(url) response = urllib.request.urlopen(url) print(response.read())
Запрос происходит, и ответ говорит что “b'Bad API request, invalid api_option'” и я не могу понять почему (возможно я по неопытности что-то упустил).