Quandl Python Package Upgrade
2.x Series Package Notes With the release of version three of our API, we are officially deprecating version two of the Quandl Python package. We have re-written the package and will be moving forward with a 3.x.x package under the new namespace of quandl that will rely on version three of our RESTful API. Upgrading There are numerous advantages to upgrading from the older 2.x series package including improved performance and stability. The upgrade process is fairly simple; Upgrade your package using pip and running: pip install --upgrade Quandl 2. Wherever you have: import Quandl change this to: import quandl as Quandl Additionally, if...