diff --git a/README.md b/README.md index d982e65..41c0f26 100644 --- a/README.md +++ b/README.md @@ -22,13 +22,12 @@ Usage: uulm [OPTIONS] COMMAND [ARGS]... reasons. - using environment variables `UULM_USERNAME`, `UULM_PASSWORD` - - using a `.env` file in the current working directory with the same variables + - using a `.env` file in the current working directory with the same variables - interactive mode, if none of the above were specified + For help concerning specific commands, run `uulm --help` + Options: - -u, --username TEXT - -p, --password TEXT - -h, --headless Dont show the browser window -d, --debug Set the log level to DEBUG -l, --log-level [CRITICAL|FATAL|ERROR|WARN|WARNING|INFO|DEBUG|NOTSET] --help Show this message and exit. diff --git a/src/uulm_utils/main.py b/src/uulm_utils/main.py index d4420c4..6166129 100644 --- a/src/uulm_utils/main.py +++ b/src/uulm_utils/main.py @@ -52,6 +52,9 @@ async def cli(debug, log_level): - using environment variables `UULM_USERNAME`, `UULM_PASSWORD` - using a `.env` file in the current working directory with the same variables - interactive mode, if none of the above were specified + + \b + For help concerning specific commands, run `uulm --help` ''' logging.basicConfig(level=log_level,format='%(asctime)s - %(levelname)s - %(message)s') if(debug): logger.setLevel(logging.DEBUG)