Skip to content

Instantly share code, notes, and snippets.

@mmb
Created March 28, 2015 08:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mmb/a260ccc14b739b73c181 to your computer and use it in GitHub Desktop.
Save mmb/a260ccc14b739b73c181 to your computer and use it in GitHub Desktop.
WeeChat python script to print python version and path
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