DonPAPI/donpapi/lazagne/softwares/chats/pidgin.py
2023-06-14 13:01:24 +02:00

29 lines
917 B
Python

# -*- coding: utf-8 -*-
import os
from xml.etree.cElementTree import ElementTree
from donpapi.lazagne.config.constant import constant
from donpapi.lazagne.config.module_info import ModuleInfo
class Pidgin(ModuleInfo):
def __init__(self):
ModuleInfo.__init__(self, 'pidgin', 'chats')
def run(self):
path = os.path.join(constant.profile['APPDATA'], u'.purple', u'accounts.xml')
if os.path.exists(path):
tree = ElementTree(file=path)
root = tree.getroot()
pwd_found = []
for account in root.findall('account'):
name = account.find('name')
password = account.find('password')
if all((name, password)):
pwd_found.append({
'Login': name.text,
'Password': password.text
})
return pwd_found