add one-time paste
This commit is contained in:
parent
89eacedc76
commit
a805472f47
5
pbbot.py
5
pbbot.py
|
@ -36,6 +36,11 @@ class PBBot(sleekxmpp.ClientXMPP):
|
||||||
output = subprocess.check_output(['/bin/env', 'pbincli', \
|
output = subprocess.check_output(['/bin/env', 'pbincli', \
|
||||||
'send', '--text', arg]).decode('utf-8')
|
'send', '--text', arg]).decode('utf-8')
|
||||||
msg.reply(output).send()
|
msg.reply(output).send()
|
||||||
|
elif "!bpaste" in msg['body']:
|
||||||
|
arg = msg['body'].replace('!paste', '').strip()
|
||||||
|
output = subprocess.check_output(['/bin/env', 'pbincli', \
|
||||||
|
'send', '-B', '--text', arg]).decode('utf-8')
|
||||||
|
msg.reply(output).send()
|
||||||
elif "!get" in msg['body']:
|
elif "!get" in msg['body']:
|
||||||
arg = msg['body'].replace('!get', '').strip()
|
arg = msg['body'].replace('!get', '').strip()
|
||||||
output = subprocess.check_output(['/bin/env', 'pbincli' \
|
output = subprocess.check_output(['/bin/env', 'pbincli' \
|
||||||
|
|
Loading…
Reference in New Issue