Created
March 28, 2015 08:08
-
-
Save mmb/a260ccc14b739b73c181 to your computer and use it in GitHub Desktop.
WeeChat python script to print python version and path
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import weechat | |
if weechat.register('test', 'test', 'test', 'test', 'test', 'shutdown', ''): | |
weechat.prnt('', str(sys.version)) | |
weechat.prnt('', str(sys.path)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment