rawpython / remi

Python REMote Interface library. Platform independent. In about 100 Kbytes, perfect for your diet.
Apache License 2.0
3.48k stars 401 forks source link

non-latin support #441

Open lopatoid opened 3 years ago

lopatoid commented 3 years ago

I've had problems with Cyrillic filenames when creating FileDownloader object, and I was able to fix it just by changing line 701 in server.py to self.send_header(k, urllib.parse.quote_plus(headers[k]))

dddomodossola commented 3 years ago

@lopatoid Thank you a lot for reporting. Can you please create a pull request to fix this?

lopatoid commented 1 year ago

My first solution was naive and just wrong. Anyway, I've found a detailed description of how to fix this problem on StackOverflow and made a pull request.