如何在python中的url路径中转义斜杠?

时间:2017-06-05 13:05:56

标签: python url python-2.6

我有一个网址: - http://example.com/GetDetails/value/abc-1234

我使用python urllib来获取网址。

value = "abc-12345"
URL = "http://example.com/GetDetails/value/{0}"
response = urllib.urlopen(URL.format(urllib.quote_plus(value))).read()

这很好用。但是如果我的值有一个斜杠,比如 - " XYZ / 1234",它会返回400 Bad请求。

我做错了什么?

0 个答案:

没有答案