I am trying to convert bytes which I get from book_download_page = requests.get(link)
then content = book_download_page.content
into string.
What I have tried,
content = book_download_page.content.decode('utf-8')
Error I get,
'utf-8' codec can't decode byte 0xe2 in position 10: invalid continuation byte
Edit- You can try this link for downloading
Thank you!