在字符串中查找多个内容

时间:2012-06-06 21:14:41

标签: python irc bots

我正在尝试创建一个在输入OPEN命令时打开URL的脚本。这是我正在创建的IRC机器人。我试图让它像这样

打开http://url.com并打开网址。这是我到目前为止所做的。

import webbrowser
test = s.recv(1024)

if test.find("http://") != 1:
        webbrowser.open(test)

else:
    print "it didnt work"

老实说,我不知道这是怎么做到的。

1 个答案:

答案 0 :(得分:1)

我想通了

import webbrowser
#command is OPEN http://url.com
a = raw_input("Command: ")

if "OPEN" in a:
    url = a.strip("OPEN ")
    webbrowser.open(url)