SnapWrap
SnapWrap copied to clipboard
ModuleNotFoundError: No module named 'snap'
I followed install instructions for this library. Now I copied the example script.
It gives this error on the first line
from SnapWrap import Snapchat
ModuleNotFoundError: No module named 'snap'
I'm on Fedora 36.
is this resolved?
This module is outdated, you can look at the contribution dates are 9 years ago.
for resolve, go to snap.py and replace the line import StringIO with
try: import StringIO except ImportError: from io import StringIO