mirror of
https://github.com/SpudGunMan/meshing-around.git
synced 2026-03-28 17:32:36 +01:00
9 lines
250 B
Python
9 lines
250 B
Python
# helper functions for various BBS messaging tasks
|
|
# K7MHI Kelly Keeton 2024
|
|
|
|
from dadjokes import Dadjoke # pip install dadjokes
|
|
|
|
def tell_joke():
|
|
# tell a dad joke, does it need an explanationn :)
|
|
dadjoke = Dadjoke()
|
|
return dadjoke.joke |