3

私はPythonが初めてで、問題が発生しているようです。ユーザー エージェント文字列を urlencode しようとしています...

import urllib

UserAgent = 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.0.3 Gecko/2008092417 Firefox/3.0.3'
print 'Agent: ' + UserAgent
print urllib.urlencode(UserAgent)

その結果...

Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.0.3 Gecko/2008092417 Firefox/3.0.3
Traceback (most recent call last):
  File "D:\Source\SomePath\test.py", line 7, in <module>
    print urllib.urlencode(UserAgent)
  File "C:\Python26\lib\urllib.py", line 1254, in urlencode
    raise TypeError
TypeError: not a valid non-string sequence or mapping object
Press any key to continue . . .

UserAgentは正しく印刷されていますが、途中で文字列エスケープオプションが欠落しているか、urllib.urlencode()?に関して根本的な間違いを犯しているとしか思えません。

4

2 に答える 2

7

urllib.urlencodeそれぞれ 2 つの項目を持つマッピングまたはシーケンスが必要です。ドキュメントに見られるように

コードでは、次のことを行う必要があります。

urllib.urlencode({'Agent': UserAgent})
于 2012-11-14T00:55:57.907 に答える
2

ウェシーは私を打ち負かしました。将来の参考のために、これも行うことができます:

>>> help(urllib.urlencode)
Help on function urlencode in module urllib:

urlencode(query, doseq=0)
    Encode a sequence of two-element tuples or dictionary into a URL query string.

    If any values in the query arg are sequences and doseq is true, each
    sequence element is converted to a separate parameter.

    If the query arg is a sequence of two-element tuples, the order of the
    parameters in the output will match the order of parameters in the
    input.
于 2012-11-14T00:57:10.687 に答える