Hi, I'm getting the following error while running the simple.py under directory examples: Traceback (most recent call last): File "/Users/sandy/Documents/Work/KiteConnect/pykiteconnect-kite3/examples/simple.py", line 2, in from kiteconnect import KiteConnect ImportError: No module named kiteconnect
Although the installation process of kiteconnect package completed successfully and I've got the following file under /Library/Python/2.7/site-packages: kiteconnect-3.7.4-py2.7.egg
Are you using virtualenv? Seems like you have installed it for system Python but you are trying to use from other Python instances like a virtualenv. You can find this by running a command which python. It can also be permission issue, you might have installed pykiteconnect as a root user but running your script as normal user. If you are not using Virtualenv yet then I will suggest you to use it which will avoid issues like these.