progval / Limnoria

A robust, full-featured, and user/programmer-friendly Python IRC bot, with many existing plugins.
https://docs.limnoria.net/
Other
621 stars 174 forks source link

Poll plugin: add support for preserving polls across restarts #1514

Open progval opened 2 years ago

progval commented 2 years ago

Should probably use unpreserve (nicer for human edits), pickle (more future-proof), or sqlite3 (middle ground). Or maybe pretty-printed JSON; it's uncommon in Limnoria but seems to be about as future-proof as pickle (if not more, considering changes in pickle formats), and still easily human-editable

progval commented 2 years ago

relevant comment by @jlu5: JSON keys can't be tuples (currently, we use (irc.network, channel) as key in the plugin)