We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bcb1342 + d711ee7 commit 88d4e89Copy full SHA for 88d4e89
src/validators/url.py
@@ -29,6 +29,8 @@ def _path_regex():
29
return re.compile(
30
# allowed symbols
31
r"^[\/a-z0-9\-\.\_\~\!\$\&\'\(\)\*\+\,\;\=\:\@\%"
32
+ # symbols / pictographs
33
+ + r"\U0001F300-\U0001F5FF"
34
# emoticons / emoji
35
+ r"\U0001F600-\U0001F64F"
36
# multilingual unicode ranges
tests/test_url.py
@@ -76,6 +76,7 @@
76
"http://[::FFFF:129.144.52.38]:80/index.html",
77
"http://[2010:836B:4179::836B:4179]",
78
"http://foo.bar",
79
+ "http://foo.bar/📍",
80
"http://google.com:9/test",
81
"http://5.196.190.0/",
82
"http://username:password@example.com:4010/",
0 commit comments