I'm able to get some information from a website with Python and BeautifulSoup. However I get an error when I have a path with a special character.
In the Italian language we have some special characters such as à, è, ì, ò and ù. If I manually set a, e, i, o and u parsing works. However if I use BeautifulSoup and parse it automatically I get an error. Do you know how can I convert these characters into simple vowels?
I put the following settings at the beginning of my code:
#!/usr/bin/env python
# -*- coding: utf-8 -*-