本文整理汇总了Python中General.urlInfo方法的典型用法代码示例。如果您正苦于以下问题:Python General.urlInfo方法的具体用法?Python General.urlInfo怎么用?Python General.urlInfo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类General
的用法示例。
在下文中一共展示了General.urlInfo方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: sendmsg
# 需要导入模块: import General [as 别名]
# 或者: from General import urlInfo [as 别名]
if loginServer == False:
sendmsg("DataX","LOGIN la78zg294dap7swpe6wx ")
loginServer = True
if nick.lower() == "datax":
ircmsg = ircmsg.split(" :",1)[1]
if "ECHO PENDING " in ircmsg:
sendmsg("datax","ECHO " + ircmsg.split("ECHO PENDING")[1])
elif "JOIN " in ircmsg:
joinchan(ircmsg.split(" ")[-1])
elif "SEND" in ircmsg and "PRIVMSG" in ircmsg:
sendmsg(ircmsg.split(" :")[0].split(" ")[-1]," " + ircmsg.split(":")[1])
#Get titles of items if in special channels
urlData = General.urlInfo(data_channels,channel,ircmsg)
if urlData != None:
sendmsg(channel,urlData)
#Copy of auto op
for i in auto_ops:
data = i.split(',')
if data[0].lower() == nick.lower() or data[0].lower() == hostmask.lower():
if data[1].lower() == channel or data[1] == "all":
if data[2] == "kick":
kickuser(channel,nick,"Sorry you are autokicked")
#Anti iovoidbot inforce :D
if ircmsg.find("?!enforce +b") != -1 and ircmsg.find("unaffiliated/bowserinator") != -1:
sendmsg(channel,"?!unenforce +b *!*@unaffiliated/bowserinator")
kickuser(channel,"IovoidBot","Damn you iovoid")