Locating the Python Trading Basics Resource folder

I'm trying to locate the Python Trading Basics Resource folder as part of going through the first course. It wasn't downloaded as part of my install process.



Any help much appreciated.

Hi Robert,



You can find the folder here. The folder containing the files is in the last section of the course. 

Hi Akshay,



Thank you very much!



 

Hi Akshay,



I downloaded the zip file into my downloads folder and unzipped. 



When I run the code:

 

# Loading and viewing the dataframe

import pandas as pd

infy = pd.read_csv('../data_modules/infy_dv.csv')

infy.head()

I get the following error: 
 
FileNotFoundError                         Traceback (most recent call last)
Cell In[11], line 5
      1 # Loading and viewing the dataframe
      3 import pandas as pd
----> 5 infy = pd.read_csv('../data_modules/infy_dv.csv')
      7 infy.head()

File /opt/anaconda3/envs/quantra_py/lib/python3.9/site-packages/pandas/io/parsers.py:610, in read_csv(filepath_or_buffer, sep, delimiter, header, names, index_col, usecols, squeeze, prefix, mangle_dupe_cols, dtype, engine, converters, true_values, false_values, skipinitialspace, skiprows, skipfooter, nrows, na_values, keep_default_na, na_filter, verbose, skip_blank_lines, parse_dates, infer_datetime_format, keep_date_col, date_parser, dayfirst, cache_dates, iterator, chunksize, compression, thousands, decimal, lineterminator, quotechar, quoting, doublequote, escapechar, comment, encoding, dialect, error_bad_lines, warn_bad_lines, delim_whitespace, low_memory, memory_map, float_precision, storage_options)
605 kwds_defaults = _refine_defaults_read(
606 dialect, delimiter, delim_whitespace, engine, sep, defaults={"delimiter": ","}
607 )
608 kwds.update(kwds_defaults)
–> 610 return _read(filepath_or_buffer, kwds)

Hi Robert,



This was discussed and resolved.