There is an api that gives the answer in json format:
response = requests.get(URL) response.json() {u'u0446\u0430\u044c': {u'id': 15, u'text': ttttt}} this happens if there are Russian letters. Are there ways to "use" keys? In place of u0446\u0430\u044c , there can be anything. This key appears in the request, but in the normal form.
.keys()method from the dictionary, and then do what you want with them - andreymal