hammem / monarchmoney

Python API for Monarch Money
MIT License
124 stars 24 forks source link

Add delete_session to delete saved session info #88

Closed Unusual-Ad closed 4 months ago

Unusual-Ad commented 4 months ago

For security purposes, should add a delete_session function to the class MonarchMoney to enabling deleting the saved session file.

I'm new to Python/Git, but I think this is probably really straightforward: def delete_session_file(self,filename: str = SESSION_FILE) -> None: """ Deletes Python pickle file of saved session info if it exists. """ if os.path.isfile(filename): os.remove(filename)

hammem commented 4 months ago

This has been added and will go to PyPI on the next release.