remember-remember-bot/src/remember_remember_bot/commands.py

8 lines
213 B
Python

import deltachat
def setup(email: str, password: str, db: str, debug: bool) -> deltachat.Account:
ac = deltachat.account.Account(db_path=db)
ac.run_account(email, password, show_ffi=debug)
return ac