function(s) to decode a URL produced by encodeURIComponent injavascript

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Merrick

    function(s) to decode a URL produced by encodeURIComponent injavascript

    I encoded a URL in javascript and would like to decode it in python.
    The urllib.unquote does not have an optional safe argument and I
    cannot find how to do urldecode.
  • Merrick

    #2
    Re: function(s) to decode a URL produced by encodeURICompon ent injavascript

    On Oct 6, 12:51 pm, Merrick <merr...@gmail. comwrote:
    I encoded a URL in javascript and would like to decode it in python.
    The urllib.unquote does not have an optional safe argument and I
    cannot find how to do urldecode.
    It looks like urllib.unquote_ plus does this, sorry for answering my
    own question.

    Comment

    Working...