Python implementation of Chinese translation URL encoding method

Source: Internet
Author: User

In this paper, we describe the way Python implements the Chinese translation URL encoding. Share to everyone for your reference, as follows:

Before uploading image editing, the file path in Chinese, will become the following format:

Http://192.168.10.105:8080/media/activities/%E6%9D%AD%E5%B7%9E/ad/294878.jpg

stored in the database, the Middle Chinese section will change, causing the front end to not get the picture picture path

How to solve it? In fact, with the Urllib module can be a perfect solution

 

Import Urllibprint urllib.quote ("http://192.168.10.105:8080/media/activities/Shanghai/ad/1515043837.jpg") print Urllib.unquote (' http://192.168.10.105:8080/media/activities/%E4%B8%8A%E6%B5%B7/ad/1515043837.jpg ')

Run results

http%3a//192.168.10.105%3a8080/media/activities/%e4%b8%8a%e6%b5%b7/ad/1515043837.jpghttp://192.168.10.105:8080 /media/activities/Shanghai/ad/1515043837.jpg

 

The above is an example of the implementation process of their own experience

Python implementation of Chinese translation URL encoding method

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.