I working on new features in my zap2xml addon - but am having trouble getting BeautifulSoup to be recognized. I have added the following to the addon.xml:
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
And can confirm the dependency installed and is running.
I added the following to my addon script:
from bs4 import BeautifulSoup
But get the follwoing error when trying to run the script:
from bs4 import BeautifulSoup ImportError: No module named bs4
I'm not sure what is wrong - this is running on a modified drieschel/kszaq amlogic build - so maybe something is different in the amlogic builds? Thanks for any thoughts!