In Django what is the url pattern I need to use to handle urlencode characters such as %20
I am using (?P[\\w]+) but this only handles alpha
(?P[\\w]+)
The best way to do that and allow others chars is using '\s' that is any spaces, tabs and new lines
(?P[\w\s]+)