将字符串转换为python 3中的有效wordpress url以供请求库使用

时间:2017-06-04 19:05:19

标签: python wordpress python-3.x url python-requests

给定字符串https://websiteurl/path/photo's url.jpeg

如何使用python3.5从Wordpress的角度将其转换为合法的URL https://websiteurl/path/photos-url.jpeg。这个url将通过json发送post请求来使用,其中 src 将是密钥, value 上述合法网址。

上传照片时,会向其提供网址https://websiteurl/path/photos-url.jpeg。 ('已删除,空格已转换为 -

我看到的唯一方法是使用"https://websiteurl/path/photo's url.jpeg".replace(\',"").replace(" ","-")

有没有通用的pythonic方式?

1 个答案:

答案 0 :(得分:1)

您可以使用re.sub和str.replace。例如:

photo's url.jpeg

这会将photos-url.jpeg更改为{{1}}。 看看wordpress在php中如何做到这一点:enter image description here