usage: flam config extension [-h] [-A | -D | -P] [IMPORT]
View, add, or remove custom extension files. There are various things you can extend:
Attributes Values belonging to movies, people, or roles
Predicates Tests which can be used to filter movies, people, or roles
Fetchers Support for downloading movie lists from some specific website or API
Read more about extensions: https://verpous.github.io/film-flam/extending.html.
positional arguments:
IMPORT Specify which module or file to import. This can be a full path to a script or a module name if it is in PATH.
options:
-h, --help show this help message and exit
-A, --add Add IMPORT as an extension. The default if IMPORT is provided.
-D, --delete Delete IMPORT from extensions.
-P, --print Print all extensions. The default if IMPORT is not provided.
Examples:
flam config extension ~/my_extension.py
(Register the extensions file ~/my_extension.py)
flam config extension
(Print all extensions)
flam config extension --delete ~/my_extension.py
(Delete the extension file ~/my_extension.py)