[python] 파이썬에서 쿼리 문자열을 urlencode하는 방법은 무엇입니까?

제출하기 전에이 문자열을 urlencode하려고합니다.

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



답변

다음 urlencode()과 같이 매개 변수를 맵핑 (dict) 또는 2 개의 튜플 시퀀스 로 전달해야합니다 .

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

파이썬 3 이상

사용하다:

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

이것은 일반적으로 사용되는 의미에서 URL 인코딩을 수행 하지 않습니다 (출력 참조). 이를 위해 urllib.parse.quote_plus.


답변

파이썬 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'

파이썬 3

Python 3에서는 urllib패키지가 더 작은 구성 요소로 분리되었습니다. 사용합니다 urllib.parse.quote_plus( parse자식 모듈에 유의하십시오 )

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


답변

urllib 대신 요청 을 시도 하면 urlencode를 신경 쓸 필요가 없습니다!

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

편집하다:

당신이 필요로하는 경우 명령 이름 – 값 쌍 다음 세트 PARAMS이 너무 좋아 이름 또는 여러 값을 :

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

사전을 사용하는 대신.


답변

문맥

  • 파이썬 (버전 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
  """ 


답변


답변

이 시도:

urllib.pathname2url(stringToURLEncode)

urlencode사전에서만 작동하기 때문에 작동하지 않습니다. quote_plus올바른 출력을 생성하지 못했습니다.


답변

urllib.urlencode가 항상 트릭을 수행하지는 않습니다. 문제는 일부 서비스가 사전을 작성할 때 손실되는 인수의 순서를 관리한다는 것입니다. 이러한 경우 Ricky가 제안한 것처럼 urllib.quote_plus가 더 좋습니다.