I cannot get it to work. I do have the standalone app working, but it requires python 2.7.
When I try to use it as a plugin, it chokes with an error that seems due to beets trying to run under python 3:
** error loading plugin wlg:
Traceback (most recent call last):
File “/usr/lib/python3.6/site-packages/beets/plugins.py”, line 254, in load_plugins
namespace = import(modname, None, None)
File “/home/stefano/builds/from-upstream-sources/whatlastgenre/plugin/beets/beetsplug/wlg.py”, line 28, in
from wlg import whatlastgenre
File “/home/stefano/builds/from-upstream-sources/whatlastgenre/wlg/whatlastgenre.py”, line 25, in
import ConfigParser
ModuleNotFoundError: No module named ‘ConfigParser’
Is there any way to run a plugin under python 2?