Pratyush Shukla
Pratyush Shukla
> Thanks for this issue, @the-praxs! This is because the routines are not refreshed in memory and you need to restart in order for them to be recognized. The choices...
@deeleeramone I have an idea for this: We can modify the `stocks/quote` command to use an additional argument for the source. The default source will be YahooFinance, which will use...
I am trying to fix it by adding the following code in `helper_funcs.py`: ```python for col in df_outgoing.columns: if col == "": df_outgoing = df_outgoing.rename(columns={col: " "}) # My code...
@tehcoderer changing `year` to `str` will show `1960.0` instead of our desired output `1960`.
Issue extends to the datetime type index 
> > @tehcoderer changing `year` to `str` will show `1960.0` instead of our desired output `1960`. > > Convert the date to a string. An integer does not have a...
@jmaslek please review this, thanks!
@jmaslek please review this, thanks!
I did not encounter this on Windows, maybe its a mac/Linux issue? 
Got it. For now I am just checking if the files are in the correct path and can be loaded properly using your `iterate` function. Once it's done, I am...