답변:
다음 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
.
당신이 찾고있는 것은 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에서는 urllib
패키지가 더 작은 구성 요소로 분리되었습니다. 사용합니다 urllib.parse.quote_plus
( parse
자식 모듈에 유의하십시오 )
import urllib.parse
urllib.parse.quote_plus(...)
import urllib.parse ... urllib.parse.quote_plus(query)
python3 -c "import urllib.parse, sys; print(urllib.parse.quote_plus(sys.argv[1])) "string to encode"
커맨드 라인에 한 라이너
urllib 대신 요청 을 시도 하면 urlencode를 신경 쓸 필요가 없습니다!
import requests
requests.get('http://youraddress.com', params=evt.fields)
편집하다:
당신이 필요로하는 경우 명령 이름 - 값 쌍 다음 세트 PARAMS이 너무 좋아 이름 또는 여러 값을 :
params=[('name1','value11'), ('name1','value12'), ('name2','value21'), ...]
사전을 사용하는 대신.
다음은 몇 가지 함정을 처리하는 방법을 포함하여 완벽한 솔루션입니다.
### ********************
## 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.parse.quote()
그것 %20
보다는 사용 하기 때문에 나 자신을 선호합니다 +
.
이 시도:
urllib.pathname2url(stringToURLEncode)
urlencode
사전에서만 작동하기 때문에 작동하지 않습니다. quote_plus
올바른 출력을 생성하지 못했습니다.
my string
하려는 경우) my%20string
. 귀하의 솔루션은 그것을위한 매력처럼 작동합니다!
%20
대신에 나를 위해 일했습니다 +
. 감사합니다
urllib.urlencode가 항상 트릭을 수행하지는 않습니다. 문제는 일부 서비스가 사전을 작성할 때 손실되는 인수의 순서를 관리한다는 것입니다. 이러한 경우 Ricky가 제안한 것처럼 urllib.quote_plus가 더 좋습니다.
>>> import urllib >>> urllib.urlencode([('name', 'brandon'), ('uid', 1000)]) 'name=brandon&uid=1000'
향후 참조를 위해 (예 : python3의 경우)
>>> import urllib.request as req
>>> query = 'eventName=theEvent&eventDescription=testDesc'
>>> req.pathname2url(query)
>>> 'eventName%3DtheEvent%26eventDescription%3DtestDesc'
'c:/2 < 3'
Windows에서 출력 은 '///C://2%20%3C%203'
입니다. 나는 단지 출력 할 무언가를 원한다 'c:/2%20%3C%203'
.
파이썬 2와 3을 모두 지원해야하는 스크립트 / 프로그램에서 사용하기 위해 6 개의 모듈은 따옴표 및 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'
Python 3 urllib3 이 제대로 작동하려면 공식 문서에 따라 다음과 같이 사용할 수 있습니다 .
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')