python-plexapi/tools/plex-gettoken.py
Michael Shepanski 591579ab3f Make executable
Dont mark shows watched if they are already marked so.
2019-06-02 22:38:24 -04:00

12 lines
316 B
Python
Executable file

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Plex-GetToken is a simple method to retrieve a Plex account token.
"""
from plexapi.myplex import MyPlexAccount
username = input("Plex username: ")
password = input("Plex password: ")
account = MyPlexAccount(username, password)
print(account.authenticationToken)