Trying to grab a list of my passwords from my corporate LastPass account. Using the simple:
import lastpass
vault = lastpass.Vault.open_remote(username, password)
for i in vault.accounts:
print(i.id, i.username, i.password, i.url)
Got this error: TypeError: Odd-length string
However, before I had more access in my account, that code would return a simple test entry.
Thanks, just started the new job, trying to impress my boss ;).