lemon_wb 发表于 2020-4-28 05:37:41

【求助】学习使用 Python 读写 Excel 文件(1),代码运行后没有Excel文件

学习使用 Python 读写 Excel 文件(1),将TOP250电影排行榜保存为excel文件,文件运行后没有报错

但是在桌面没有生成excel文件
请教各位大侠,是什么原因?

麻麦皮 发表于 2020-4-28 07:31:29

1、main()函数最后加上save_to_excel(result)
2、save_to_excel()函数加上wb.guess_types = True
3、以后直接发代码,真的不想下载

txxcat 发表于 2020-4-28 09:18:06

你定义了save_to_excel(),但是没调用,所以不会生成文件,在main最后加一句save_to_excel(result)就可以了:PS:以后发代码这样发:
import requests
import bs4
import re
import openpyxl

def open_url(url):
    # 使用代理
    # proxies = {"http": "127.0.0.1:1080", "https": "127.0.0.1:1080"}
    headers = {'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.98 Safari/537.36'}

    # res = requests.get(url, headers=headers, proxies=proxies)
    res = requests.get(url, headers=headers)

    return res

def find_movies(res):
    soup = bs4.BeautifulSoup(res.text, 'html.parser')

    # 电影名
    movies = []
    targets = soup.find_all("div", class_="hd")
    for each in targets:
      movies.append(each.a.span.text)

    # 评分
    ranks = []
    targets = soup.find_all("span", class_="rating_num")
    for each in targets:
      ranks.append(each.text)

    # 资料
    messages = []
    targets = soup.find_all("div", class_="bd")
    for each in targets:
      try:
            messages.append(each.p.text.split('\n').strip() + each.p.text.split('\n').strip())
      except:
            continue

    result = []
    length = len(movies)
    for i in range(length):
      result.append(, ranks, messages])

    return result

# 找出一共有多少个页面
def find_depth(res):
    soup = bs4.BeautifulSoup(res.text, 'html.parser')
    depth = soup.find('span', class_='next').previous_sibling.previous_sibling.text

    return int(depth)

def main():
    host = "https://movie.douban.com/top250"
    res = open_url(host)
    depth = find_depth(res)

    result = []
    for i in range(depth):
      url = host + '/?start=' + str(25 * i)
      res = open_url(url)
      result.extend(find_movies(res))
    save_to_excel(result)                        #<--漏了这句

def save_to_excel(result):
    wb = openpyxl.Workbook()
    ws = wb.active

    ws['A1'] = "电影名称"
    ws['B1'] = "评分"
    ws['C1'] = "资料"

    for each in result:
      ws.append(each)

    wb.save("豆瓣TOP250电影.xlsx")
   
if __name__ == "__main__":
    main()

lemon_wb 发表于 2020-4-28 10:29:05

谢谢,谢谢,非常感谢
页: [1]
查看完整版本: 【求助】学习使用 Python 读写 Excel 文件(1),代码运行后没有Excel文件