Visual Studio 2017 - Empty Python Project My code looks like this (yes just two lines):
import pandas as pd
import Quandl
I have added the Quandl (3.2.0) environment to my Python 3.6 (64-bit) project.
Quandl is underlined in green. A mouse hover reveals the following message:
Quandl: module
Unable to resolve "Quandl". IntelliSense may be missing from this module.
When I run the program I get:
Traceback (most recent call last):
File "C:\...\P1.py", line 2, in <module>
import Quandl
ModuleNotFoundError: No module named 'Quandl'
I checked here: https://pypi.python.org/pypi/Quandl and I have all of the other required distributions installed.
This is my first attempt at using Quandl, and I am relatively new to Python.
Note: I have created another 3 small Python programs in the same environment that don't use Quandl, but use pandas, numpy etc. They run fine.
Can anyone help me get past this issue?
OK... As usual immediately after posting.... The import statement should read:
import quandl
The "Q" should be lowercase.
I'll leave this up here in case others fall for this.