From 50f259a00928dcb99bafcfa4c0af622b7cad0784 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Mon, 28 Jan 2019 04:25:11 +0100 Subject: [PATCH] Url --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d8f8fc9..ce673f0 100644 --- a/README.md +++ b/README.md @@ -1393,7 +1393,7 @@ from urllib.parse import quote, quote_plus, unquote, unquote_plus ``` ### Encode -``` +```text >>> quote("Can't be in URL!") 'Can%27t%20be%20in%20URL%21' >>> quote_plus("Can't be in URL!") @@ -1401,7 +1401,7 @@ from urllib.parse import quote, quote_plus, unquote, unquote_plus ``` ### Decode -``` +```text >>> unquote('Can%27t+be+in+URL%21') "Can't+be+in+URL!"' >>> unquote_plus('Can%27t+be+in+URL%21')