craigerl / aprsd

Amateur radio APRS daemon which listens for messages and responds. By KM6LYW.
Apache License 2.0
124 stars 19 forks source link

Reworked Plugin loading #17

Closed hemna closed 3 years ago

hemna commented 3 years ago

This patch reworked the loading of plugins. Python2 is dead. Previously was using the imp module to easily load the plugins from a separate directory, which is a bit of a pita. Found a python3 lib that takes care of the difference between py3.3, 3.4 and 3.5+ module loading called "thesmuggler"