1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-12-04 14:46:46 -05:00
profanity/plugins/helloworld.py

26 lines
469 B
Python
Raw Normal View History

2013-07-30 18:37:46 -04:00
import prof
package_version = None
package_status = None
# hooks
def prof_init(version, status):
global package_version
global package_status
package_version = version
package_status = status
def prof_on_start():
helloworld()
2013-08-02 19:22:00 -04:00
def prof_on_connect():
helloworld();
2013-07-30 18:37:46 -04:00
# local functions
def helloworld():
global package_version
global package_status
prof.cons_show("Hello world! (" + package_version + " - " + package_status + ")")