Browse Source

Url

pull/10/head
Jure Šorn 5 years ago
parent
commit
50f259a009
1 changed files with 2 additions and 2 deletions
  1. 4
      README.md

4
README.md

@ -1393,7 +1393,7 @@ from urllib.parse import quote, quote_plus, unquote, unquote_plus
``` ```
### Encode ### Encode
```
```text
>>> quote("Can't be in URL!") >>> quote("Can't be in URL!")
'Can%27t%20be%20in%20URL%21' 'Can%27t%20be%20in%20URL%21'
>>> quote_plus("Can't be in URL!") >>> quote_plus("Can't be in URL!")
@ -1401,7 +1401,7 @@ from urllib.parse import quote, quote_plus, unquote, unquote_plus
``` ```
### Decode ### Decode
```
```text
>>> unquote('Can%27t+be+in+URL%21') >>> unquote('Can%27t+be+in+URL%21')
"Can't+be+in+URL!"' "Can't+be+in+URL!"'
>>> unquote_plus('Can%27t+be+in+URL%21') >>> unquote_plus('Can%27t+be+in+URL%21')

Loading…
Cancel
Save