Open
Description
I am using your package and the code works great.
Thank you so much for your contribution.
And I was thinking that you could integrate your code with dataframe packages like pandas as well.
It could increase the code usage speed and by nature databases do tend to be huge, that could really bring your package to the next level.
A good Example would be :
Your current structure: (Dump.py)
self.entries = [] ( Existing List attribute )
self.entries.append( Entry(...) ) ( Existing Method)
Enhancement suggestion structure: (Dump.py)
import pandas as pd
self.dataset = pd.DataFrame() ( Similar Method )
self.dataset.append(Entry(...).__dict__) ( Similar Method )
Hope you get the idea. And thanks again for your contribution, you help developers like us make a living from coding. :)