mosbth / irc2phpbb

IRC bot, now lives on Discord bur remains its power to visit IRC whenever it wants.
12 stars 16 forks source link

Fixed a bunch of lint warnings and did some cleanup. Added tests for the config parsing and replaced getopt with argparse #56

Closed kh31d4r closed 1 month ago

kh31d4r commented 1 month ago

getopt is mostly meant to be used to maintain compatibility with old C-style programs. Argparse is the defacto standard.

It also enabled making the options definition dynamic, so now we add allowed parameters on the fly, based on what config we have. This will make it possible to have different config (for IRC and Discord for example) in the future, while keeping the option parsing the same.