Hello everyone,
I want a URL that accepts all characters. I found an example in stackoverflow
https://stackoverflow.com/a/11384464. As per the answer, I need to use 'u' so that the string accepts unicode characters.
Here is my path. I use re_path.
re_path(r'mutant_proteins/(?P<protein_name>[\w.*]+)/$',views.mutant_proteins,
name="mutant_proteins",),
How can I use it so that it accepts unicode characters in the url ? I use Django 3.2.
Thanks
Kannan