资源简介
爬取URP教务网站学籍信息.py
代码片段和文件信息
import urllib.parse
import http.cookiejar
from bs4 import BeautifulSoup
from sys import stdout
import xlwt
import xlrd
from xlutils.copy import copy #复制工作簿,需要用到xlutils包
from time import sleep
import requests
# -*- coding: utf-8 -*-
#新建excel文件
# file=xlwt.Workbook()
# table=file.add_sheet(‘sheet name‘)
#将学生信息写入Excel表格
def excel_write(row id name id_card sex nation adress borndate politics_status department profession grade
_class):
#使用xlrd来打开工作簿
xls=xlrd.open_workbook(r‘D:\FileCode\PythonItem\test1.xls‘formatting_info=True) #打开原工作簿追写文件
xlsc=copy(xls) #复制工作簿 formatting_info=True表示保留工作簿中的格式。
table=xlsc.get_sheet(0)
# 设置单元格的宽度
table.col(1).width=40*70
table.col(4).width=4
评论
共有 条评论