@sentdex

Now that Google has also thwarted our efforts, here is a quick example of grabbing data with morningstar instead: 

import datetime
import pandas_datareader.data as web

start = datetime.datetime(2015, 1, 1)
end = datetime.datetime.now()
df = web.DataReader("TSLA", 'morningstar', start, end)
df.reset_index(inplace=True)
df.set_index("Date", inplace=True)
df = df.drop("Symbol", axis=1)

print(df.head())

@indianarchangel

Took me an hour to resolve the datareader installation issue but your code ran like a charm. Thank you man, you are a life saver. God bless

@SwaggahDontStop

Boss: WE'RE LOSING MONEY, JIM! YOU'RE ALGO ISN'T WORKING!!!

Jim: But do the graphs look good though?

Boss: Damn, they do look good. Carry on.

@destroyerking5609

dude,literally 3 years ago,you were doing this.Thanks from all python enthusiasts.Great job.

@chipScoD

6 sentdex videos at once? Holy cow there goes my evening!

@ArmaniV03

THANK YOU on behalf of all students looking at Python going "AAH"

@quantumly57

This is pure gold... Saves so much time and energy than a CS/business degree. Thank you.

@litojonny

thanks a lot Edward Snowden!

@Enyonam214

This is exactly y I am learning python. I'm not at the level yet to dive into this video but I'll be back in a few days. Thank you so much for this.

@molejaboy

Don’t know how I took so long to find your channel but thank you! Along with Corey Schafer I’m learning so much faster!

@MrProzaki

Alright , now lets begin python tuts for finance. Lets do it SENTDEX !!!! ive got my books and ur vids ready , my body and soul is ready lets get on it !!!

@abdelazeezsobh6899

Python for Finance: Analyze Big Financial Data Book (PDF - Summary - Review - Online Reading - Download)
:  https://www.toevolution.com/file/view/232781/python-for-finance-analyze-big-financial-data-book-pdf-summary-review-online-reading-download

@eromattiffarg

Took this course and just sold my own algorithm to BoA for $10 million yesterday Morning. Thanks for helping me take the first step.

@loudsquad2324

Hey there Harrison!  I have been following you for a good while now and i just wanted to let you know that i appreciate you a whole ton of alot! You have a gift for teaching! Thank you for sharing it with us all!

@larbisahli2273

thank you very much sentdex  your tutorials change my life to the better.

@OsantoR

Anybody who has the datareader module not found error:

   1.  Go to File> Settings> Project :your_project_name > Project Interpreter
   2. Now click the “Green plus sign” in the upper right corner.
   3.Type the name of the module you wanna download
   4. Click button “install package”. Then chillax J wait for the package to install(may take 30-60 seconds or so).

I'm using Pycharm btw
(This works for every module)

@irmscher9

Man, you are a star. That's exactly what I needed!

@SoumitraChakravarti

Edits:
import pandas_datareader as web

df = web.get_data_yahoo('GOOG', start, end)

@Readings890

i don't even know anything about programming.but i left here knowing more than i would have expected lol

@hugoboss5674

You are a really good teacher my friend