t = l.add_xpath('ibp_power_w', "//div[@class='characteristic' and text()[contains(normalize-space(.), '%s')]]/following-sibling::div[@class = 'value']/text()" % u"Мощность (Вт)" )
print t.strip()
/etc/init.d/networking restart
mass = [[1, {'text': 'Click', 'date': 1463565243, 'from_id': 1, 'uid': 1, 'can_edit': 1, 'cid': 1698}]]
mass[0][1]['text']
>>> 'Click'
# В переменной s будет просто строка 'CLick'
s = mass[0][1]['text']
# Либо создаем новый словарь с ключом 'text' и значением 'Click'
d = {}
d['text'] = mass[0][1]['text']
d
>>> {'text': 'Click'}