码迷,mamicode.com
首页 > 其他好文 > 详细

学校教务系统在线人数

时间:2014-12-24 16:08:57      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:

#coding=gbk
‘‘‘
Created on 2014-9-25

@author: Administrator
‘‘‘
import urllib
import urllib2
import re

#url = ‘http://www.taobao.com/‘
url = ‘http://www.cdjwc.com/jiaowu/Login.aspx‘

req = urllib2.Request(url)
html = urllib2.urlopen(req).read()
#print html

#ss = re.findall(‘blank">(.*?)\<\/‘,html)
ss = re.findall(‘<span id="lbzx">(.*?)\</span>‘,html)
for i in ss:
    print i

  

学校教务系统在线人数

标签:

原文地址:http://www.cnblogs.com/lovecc/p/4182585.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!