如何在Python中对一个查询字符串进行urlencode?

时间:2011-04-09 20:07:13

标签: python url-encoding

我在提交之前尝试对此字符串进行urlencode。

queryString = 'eventName=' + evt.fields["eventName"] + '&' + 'eventDescription=' + evt.fields["eventDescription"]; 

14 个答案:

答案 0 :(得分:944)

Python 2

您要找的是urllib.quote_plus

>>> urllib.quote_plus('string_of_characters_like_these:$#@=?%^Q^$')
'string_of_characters_like_these%3A%24%23%40%3D%3F%25%5EQ%5E%24'

Python 3

在Python 3中,urllib包已被分解为更小的组件。您将使用urllib.parse.quote_plus(请注意parse子模块)

import urllib.parse
urllib.parse.quote_plus(...)

答案 1 :(得分:495)

您需要将参数传递给urlencode()作为映射(dict)或一系列2元组,如:

>>> import urllib
>>> f = { 'eventName' : 'myEvent', 'eventDescription' : 'cool event'}
>>> urllib.urlencode(f)
'eventName=myEvent&eventDescription=cool+event'

Python 3或以上

使用:

>>> urllib.parse.urlencode(f)
eventName=myEvent&eventDescription=cool+event

请注意,在常用的意义上执行url编码(查看输出)。使用urllib.parse.quote_plus

答案 2 :(得分:38)

尝试requests而不是urllib,你不需要打扰urlencode!

import requests
requests.get('http://youraddress.com', params=evt.fields)

修改

如果您需要有序名称 - 值对或名称的多个值,请设置如下所示的参数:

params=[('name1','value11'), ('name1','value12'), ('name2','value21'), ...]

而不是使用字典。

答案 3 :(得分:37)

上下文

  • Python(版本2.7.2)

问题

  • 您想生成一个urlencoded查询字符串。
  • 您有一个包含名称 - 值对的字典或对象。
  • 您希望能够控制名称 - 值对的输出顺序。

解决方案

  • urllib.urlencode
  • urllib.quote_plus

陷阱

实施例

以下是一个完整的解决方案,包括如何处理一些陷阱。

### ********************
## init python (version 2.7.2 )
import urllib

### ********************
## first setup a dictionary of name-value pairs
dict_name_value_pairs = {
  "bravo"   : "True != False",
  "alpha"   : "http://www.example.com",
  "charlie" : "hello world",
  "delta"   : "1234567 !@#$%^&*",
  "echo"    : "user@example.com",
  }

### ********************
## setup an exact ordering for the name-value pairs
ary_ordered_names = []
ary_ordered_names.append('alpha')
ary_ordered_names.append('bravo')
ary_ordered_names.append('charlie')
ary_ordered_names.append('delta')
ary_ordered_names.append('echo')

### ********************
## show the output results
if('NO we DO NOT care about the ordering of name-value pairs'):
  queryString  = urllib.urlencode(dict_name_value_pairs)
  print queryString 
  """
  echo=user%40example.com&bravo=True+%21%3D+False&delta=1234567+%21%40%23%24%25%5E%26%2A&charlie=hello+world&alpha=http%3A%2F%2Fwww.example.com
  """

if('YES we DO care about the ordering of name-value pairs'):
  queryString  = "&".join( [ item+'='+urllib.quote_plus(dict_name_value_pairs[item]) for item in ary_ordered_names ] )
  print queryString
  """
  alpha=http%3A%2F%2Fwww.example.com&bravo=True+%21%3D+False&charlie=hello+world&delta=1234567+%21%40%23%24%25%5E%26%2A&echo=user%40example.com
  """ 

答案 4 :(得分:25)

答案 5 :(得分:21)

请注意,urllib.urlencode并不总能解决问题。问题是某些服务关心参数的顺序,在创建字典时会丢失。对于这种情况,urllib.quote_plus更好,正如Ricky建议的那样。

答案 6 :(得分:21)

试试这个:

urllib.pathname2url(stringToURLEncode)

urlencode无法工作,因为它只适用于字典。 quote_plus没有产生正确的输出。

答案 7 :(得分:7)

在Python 3中,这与我合作

import urllib

urllib.parse.quote(query)

答案 8 :(得分:5)

以供将来参考(例如:for python3)

>>> import urllib.request as req
>>> query = 'eventName=theEvent&eventDescription=testDesc'
>>> req.pathname2url(query)
>>> 'eventName%3DtheEvent%26eventDescription%3DtestDesc'

答案 9 :(得分:2)

如果urllib.parse.urlencode()给你错误,请尝试使用urllib3模块。

语法如下:

import urllib3
urllib3.request.urlencode({"user" : "john" }) 

答案 10 :(得分:1)

为在需要同时支持python 2和3的脚本/程序中使用,这六个模块提供了quote和urlencode函数:

>>> from six.moves.urllib.parse import urlencode, quote
>>> data = {'some': 'query', 'for': 'encoding'}
>>> urlencode(data)
'some=query&for=encoding'
>>> url = '/some/url/with spaces and %;!<>&'
>>> quote(url)
'/some/url/with%20spaces%20and%20%25%3B%21%3C%3E%26'

答案 11 :(得分:0)

可能尚未提及的另一件事是urllib.urlencode()将字典中的空值编码为字符串None,而不是缺少该参数。我不知道是否通常需要这样做,但是不适合我的用例,因此我必须使用quote_plus

答案 12 :(得分:0)

对于Python 3 urllib3 正常运行,您可以按照其official docs使用以下命令:

import urllib3

http = urllib3.PoolManager()
response = http.request(
     'GET',
     'https://api.prylabs.net/eth/v1alpha1/beacon/attestations',
     fields={  # here fields are the query params
          'epoch': 1234,
          'pageSize': pageSize 
      } 
 )
response = attestations.data.decode('UTF-8')

答案 13 :(得分:-1)