如何使用Pastebin API将几个字符串放入Pastebin?

时间:2012-07-10 02:39:14

标签: python api pastebin

我现在正在开展一个项目,它涉及为一些不同的项目持有很多名称,价格等。我希望能够将所有这些项目都放在Pastebin粘贴中。

我正在使用Python 2.7,如果它很重要(我认为urllib.urlopen适用于Python 2.x而urllib.request.urlopen适用于Python 3.x)

这是我现在的代码:

#-*- encoding: UTF-8 -*-
import urllib

pastebin_vars = {'api_dev_key':'57fe1369d02477a235057557cbeabaa1','api_option':'paste','api_paste_code':'testing pastebin right now'}
response = urllib.urlopen('http://pastebin.com/api/api_post.php'[, urllib.parse.urlencode(pastebin_vars)[, read().encode('UTF-8')]])

格式有什么问题吗?这是运行.py文件时出现的错误:

AttributeError: 'module' object has no attribute 'parse'

我试过玩代码。自从我得到AttributeError后,我拿出了.parse部分,并发现了这个错误:

NameError: Name 'read' is not defined

之后,我拿出了说read().的部分并得到了这个错误:

NameError: Name 'encode' is not defined

然后我叹了口气,但删除了说,encode('UTF-8')的部分并且在执行代码后没有任何回复。

那么,怎么了?我究竟做错了什么? = /

1 个答案:

答案 0 :(得分:2)

使用urllib.urlencode()

#-*- encoding: UTF-8 -*-
import urllib

pastebin_vars = {'api_dev_key':'57fe1369d02477a235057557cbeabaa1','api_option':'paste','api_paste_code':'testing pastebin right now'}
response = urllib.urlopen('http://pastebin.com/api/api_post.php', urllib.urlencode(pastebin_vars))
url = response.read()

>>> print url
http://pastebin.com/4wfzATQR