I've tried to run the example code and I keep getting this error:
from SnapWrap import Snapchat
File "/home/noah/SnapWrap-master/SnapWrap/__init__.py", line 1, in <module>
from snapchat import Snap
ImportError: cannot import name 'Snap' from 'snapchat' (/usr/lib/python3.8/site-packages/snapchat/__init__.py)
the readme code says import snapchat while the example.py file is import SnapWrap. The import SnapWrap works but fails due to the init.py trying to use a library called snapchat. I've tried to change it to SnapWrap which is recognized but that leads to a circular reference error. Any ideas how this could be fixed?
I've tried to run the example code and I keep getting this error:
the readme code says
import snapchat
while the example.py file isimport SnapWrap
. Theimport SnapWrap
works but fails due to the init.py trying to use a library called snapchat. I've tried to change it to SnapWrap which is recognized but that leads to a circular reference error. Any ideas how this could be fixed?