I have bytes (from requests.get) like this:
<th class=\"app_result_head\">\u0414\u043e\u043b\u0436\u043d\u0438\u043a<\/th>
How do I convert this to proper python string like this?:
<th class="app_result_head">Должник</th>
I have bytes (from requests.get) like this:
<th class=\"app_result_head\">\u0414\u043e\u043b\u0436\u043d\u0438\u043a<\/th>
How do I convert this to proper python string like this?:
<th class="app_result_head">Должник</th>
Copyright © 2021 Jogjafile Inc.
my_bytes - 'bytes' in question. As it turns out answer is rather simple.
From docs for raw_unicode_escape:
This is exactly what I've needed