If you are using python 3.10 the webui fails to start with:
ImportError: cannot import name 'MutableMapping' from 'collections' (/usr/lib/python3.10/collections/init.py)
this can be fixed by changing bottly.py in line 87 to
from collections.abc import MutableMapping as DictMixin
If you are using python 3.10 the webui fails to start with:
ImportError: cannot import name 'MutableMapping' from 'collections' (/usr/lib/python3.10/collections/init.py)
this can be fixed by changing bottly.py in line 87 to
from collections.abc import MutableMapping as DictMixin