学校博客的题库

Posted 张家欢。。

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了学校博客的题库相关的知识,希望对你有一定的参考价值。

# -*-coding:utf8-*-
import urllib2
from lxml import etree
import re
import requests
import os
os.chdir(u\'马克思\')
UserAgent=\'Mozilla/5.0 (Linux; android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (Khtml, like Gecko) Chrome/46.0.2490.76 Mobile Safari/537.36\'
Referer=\'http://bb.hebeinu.edu.cn/webapps/portal/execute/tabs/tabAction?tab_tab_group_id=_1_1\'
cookies={\'Cookies\':\'JSESSIONID=212ED93C4D5E345F1A6F8B5FA845F690.root; safedog-flow-item=1D297B60D475833D3CD94F86A368A3F1; JSESSIONID=377861A43428B1E1A04E54C9C351F2EB.root; session_id=F1CBA8BC1788C5DA57DC9654B81C3E12\'}
headers={\'User-Agent\':UserAgent,\'Referer\':Referer}
url="http://bb.hebeinu.edu.cn/webapps/assessment/review/review.jsp?attempt_id=_120019_1&course_id=_1676_1&content_id=_35841_1&return_content=1&step=null"
def getcontent():
html=requests.get(url,cookies=cookies).content
reg1=re.compile(r\'<div tabindex="0">\\s<div class="vtbegenerated inlineVtbegenerated">(.*?)</div>\')
reg2=re.compile(r\'&nbsp;&nbsp;\\s<div class="vtbegenerated inlineVtbegenerated">(.*?)</div>\')
question=re.findall(reg1,html)
ans=re.findall(reg2,html)
p=0
fd=open(u\'第一章多选题.txt\',\'wb\')
for (i,m) in zip(question,ans):
p+=1
fd.write(\'%s\'%p+\'.\'+i+\'\\r\\n\'+u\'答案:\'+m+\'\\r\\n\')
fd.close()
if __name__==\'__main__\':
getcontent()
登录一个网址的写法:

遇到的问题:

js加载的动态信息,要找到数据接口

一般都是Name比较长的是你所需需要的


以上是关于学校博客的题库的主要内容,如果未能解决你的问题,请参考以下文章

学生为学校教研室开发技能大赛评分系统

为 Blogger 上的博客格式化代码片段 [关闭]

使用SSM为学校医务室开发一套管理系统

实验室预约系统|基于Springboot+Vue实现学校实验室预约管理系统

实验室预约系统|基于Springboot+Vue实现学校实验室预约管理系统

为啥此代码片段返回意外结果?