Skip to content
Discussion options

You must be logged in to vote

Hi @mbasith. Here's some boiler plate code I'm using that's been working for me:

import asyncio
from monarchmoney import MonarchMoney

async def main():
    mm = MonarchMoney(
        timeout=3000,
    )
    await mm.login(
        email=your_email,
        password=your_password,
        save_session=True,
        use_saved_session=True,
    )
    accounts = await nm.get_accounts()
    



if __name__ == "__main__":
    asyncio.run(main())

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
1 reply
@mbasith
Comment options

Answer selected by mbasith
Comment options

You must be logged in to vote
1 reply
@mattrinella
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
4 participants