我正在制作一个Skype机器人,其中一个命令是!trace ip_or_website_here
但是,我发现在解决我的XML响应问题时遇到了问题。
Commands.py:
elif msg.startswith('!trace '):
debug.action('!trace command executed.')
send(self.nick + 'Tracing IP. Please Wait...')
ip = msg.replace('!trace ', '', 1);
ipinfo = functions.traceIP(ip)
send('IP Information:\n'+ipinfo)
我的functions.py:
def traceIP(ip):
return urllib2.urlopen('http://freegeoip.net/xml/'+ip).read()
现在,我的问题是答案如下:
!trace skype.com
Bot: Tracing IP. Please Wait...
IP Information:
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Ip>91.190.216.21</Ip>
<CountryCode>LU</CountryCode>
<CountryName>Luxembourg</CountryName>
<RegionCode></RegionCode>
<RegionName></RegionName>
<City></City>
<ZipCode></ZipCode>
<Latitude>49.75</Latitude>
<Longitude>6.1667</Longitude>
<MetroCode></MetroCode>
<AreaCode></AreaCode>
现在,我希望能够在没有XML标签的情况下使其工作。
更像是这样:
IP地址:ip
国家代码:CountryCodeHere
国家名称:countrynamehere
等等。
任何帮助,将不胜感激。
提前致谢。
答案 0 :(得分:1)
BeautifulSoup适用于解析XML。
>>> from bs4 import BeautifulSoup
>>> xml = urllib2.urlopen('http://freegeoip.net/xml/192.168.1.1').read()
>>> soup = BeautifulSoup(xml)
>>> soup.ip.text
u'192.168.1.1'
或者更详细..
#!/usr/bin/env python
import urllib2
from bs4 import BeautifulSoup
ip = "192.168.1.1"
xml = urllib2.urlopen('http://freegeoip.net/xml/' + ip).read()
soup = BeautifulSoup(xml)
print "IP Address: %s" % soup.ip.text
print "Country Code: %s" % soup.countrycode.text
print "Country Name: %s" % soup.countryname.text
输出:
IP Address: 192.168.1.1
Country Code: RD
Country Name: Reserved
(已更新至最新BeautifulSoup
版本)