So it's another long term request for me. I understand that Edgartools runs with Pandas and that is great honestly. However, for me I began to see with larger financial datasets that I possess in my overall workflow that pandas is not fast enough on its own. If it's a minor suggestion, to allow a way for you to automatically allow a Polars Dataframe. A lot of my workflow is moving on to Polars. So for example what can work is
Income_df = income.statement_todataframe(add polars= Boolean)
Using a backend function to convert from pandas to Polars.
polars_df =pl. from_pandas (pandas dataframe)
I'm not sure how to implement this.
As a PS how is the textblock to dataframe feature. That issue was #336
So it's another long term request for me. I understand that Edgartools runs with Pandas and that is great honestly. However, for me I began to see with larger financial datasets that I possess in my overall workflow that pandas is not fast enough on its own. If it's a minor suggestion, to allow a way for you to automatically allow a Polars Dataframe. A lot of my workflow is moving on to Polars. So for example what can work is
Income_df = income.statement_todataframe(add polars= Boolean)
Using a backend function to convert from pandas to Polars.
polars_df =pl. from_pandas (pandas dataframe)
I'm not sure how to implement this.
As a PS how is the textblock to dataframe feature. That issue was #336