TomAugspurger / effective-pandas

Source code for my collection of articles on using pandas.
https://leanpub.com/effective-pandas
Creative Commons Attribution 4.0 International
1.54k stars 383 forks source link

Effective pandas part 1 - 'modern-1-url.txt #33

Open kmsnyde opened 4 years ago

kmsnyde commented 4 years ago

To setup the same flight data in part 1, it calls for the following to set up the data variable; however, I can't find the text file ('modern-1-url.txt') to pull the data set. Where is this text file or what is in it?

with open('modern-1-url.txt', encoding='utf-8') as f: data = f.read().strip()