Pratyush Shukla

Results 96 comments of 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 ![image](https://user-images.githubusercontent.com/88149434/231344421-4d01ae36-5d24-44b7-8e85-60ed8a4d858c.png)

> > @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? ![image](https://user-images.githubusercontent.com/88149434/233438825-fe4bf20a-a8d9-44ce-a6c1-e0e43b32ce9e.png)

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...