Skip to main content

MaxBot Command Line Interface (CLI)

Maxbot’s CLI provides a range of helpful commands for run the bot and run bots stories. For a list of available commands, you can type maxbot --help. You can also add the --help flag to any command or subcommand to see the description, available arguments and usage.

info

Print information about your Maxbot installation.

$ maxbot info

Maxbot version 0.2.0
Python version 3.9.16
Platform macOS-13.3-arm64-arm-64bit
Location /your/location

run

Run the bot.

NameDescription
-B, --bot TEXTPath for bot file or directory or the Maxbot instance to load. The instance can be in the form 'module:name'. Module can be a dotted import. Name is not required if it is 'bot'. [required]
--updater [webhooks|polling]The way your bot geting updates from messaging platforms. The 'polling' updater is only available for telegram channel. By default, the most appropriate value is selected.
--host TEXTHostname or IP address on which to listen. [default: localhost]
--port INTEGERTCP port on which to listen. [default: 8080]
--public-url TEXTA URL that is forwarded to http://<host>:<port>/. This is used to register webhooks to get updates for the channels. If missing, no webhooks are registered and you have to register them yourself.
--ngrokObtain host, port and public URL from ngrok.
--ngrok-url TEXTAn URL to ngrok's web interface. [default: http://localhost:4040]
--reload / --no-reloadWatch bot files and reload on changes.
-v, --verboseSet the verbosity level.
--logger TEXTWrite the developer logs to console or file:/path/to/file.log. Use the --journal-file option to redirect the journal. [default: console]
-q, --quietDo not log to console.
--journal-file FILENAMEWrite the journal to the file
--journal-output [json|yaml]Journal file format [default: json]
--workersNumber of web application worker processes to spawn.
--fastSet the number of web application workers to max allowed.
--single-processRun web application in a single process.
--helpShow this message and exit.