We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I think pickle is not the best choice for storing ShortlistItem objects due to the following reasons:
pickle
ShortlistItem
xml
.json
The text was updated successfully, but these errors were encountered:
FWIW here's the way to dump shortlist file to terminal:
cd .kodi/addons/plugin.program.shortlist python3 import pickle items = pickle.load(open('/path/to/.kodi/userdata/addon_data/plugin.program.shortlist/shortlist.db', 'rb')) for item in items: print(item.title, item.thumb, item.filename)
Sorry, something went wrong.
No branches or pull requests
I think
pickle
is not the best choice for storingShortlistItem
objects due to the following reasons:xml
format is typically used for user data in Kodi, other times sqllite or.json
is usedThe text was updated successfully, but these errors were encountered: