I am playing with the Dragonfly lib in python. I am working on Mac OSX, and this will be my target platform. However when try to run my program I receive the following error:
Traceback (most recent call last):
File "clock_challenge.py", line 2, in <module>
from dragonfly.all import Grammar,CompoundRule
File "/Users/vikash/.virtualenv/clock_challenge/lib/python2.7/site-packages/dragonfly-0.6.5-py2.7.egg/dragonfly/__init__.py", line 22, in <module>
from .log import get_log
File "/Users/vikash/.virtualenv/clock_challenge/lib/python2.7/site-packages/dragonfly-0.6.5-py2.7.egg/dragonfly/log.py", line 30, in <module>
import win32gui
ImportError: No module named win32gui
How can I get around using the win32gui library, since my target platform is Linux based?
That package is only available for Windows. Without lots of code changes you won't be able to use it on another OS.