Hi everyone!
I'm newbie with python, so I don't know every details yet.
I've done an app that reads data from database and it should write datas to excel by using tablib. It works on my development environment (pycharm)
When wrapping it to exe and moving it to production (windows pc) (with hidden-import 'openpyxl') everything goes ok, but when writing data to execl (dic contains the datas)
with open(file, 'wb') as f:
f.write(dic.export("xlsx"))
No module named 'tablib.formats._xlsx'
How to add that module to the exe.