diff options
Diffstat (limited to '')
-rwxr-xr-x | generate_token.py | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/generate_token.py b/generate_token.py deleted file mode 100755 index 54e3c39..0000000 --- a/generate_token.py +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env sh -import IPython as IPython - -if __name__ == "__main__": - print("Generate a access token") - from argparse import ArgumentParser - parser = ArgumentParser() - parser.add_argument("-p", - "--password", - dest="password", - help="The password you want to use for authentication.", - required=True) - args = parser.parse_args() - - print("\nCopy this line into the .env file:\n") - hash = IPython.lib.passwd(args.password) - print("ACCESS_TOKEN=" + hash) |