Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(6) | Call(2) | Derive(0) | Import(4)
src/m/a/mailnag-HEAD/Mailnag/common/accountlist.py mailnag(Download)
# from common.account import Account, account_defaults from common.keyring import Keyring
password = self._keyring.get(protocol, user, server) acc = Account(enabled, name, user, password, server, port, ssl, imap, idle, folder) self.append(acc)
src/m/a/mailnag-HEAD/Mailnag/configuration/configwindow.py mailnag(Download)
from common.config import read_cfg, write_cfg from common.accountlist import AccountList from common.account import Account from configuration.accountdialog import AccountDialog
def _on_btn_add_clicked(self, widget): acc = Account(enabled = True, name = '') d = AccountDialog(self._window, acc) if d.run() == 1:
src/m/a/mailnag-HEAD/Mailnag/configuration/accountdialog.py mailnag(Download)
from common.i18n import _ from common.utils import get_data_file from common.account import Account class AccountDialog:
src/m/a/mailnag-HEAD/Mailnag/common/keyring.py mailnag(Download)
from common.i18n import _ from common.account import Account class Keyring: