一个简单的百度爬虫实例

一个简单的百度爬虫实例

最近在百度aistdio自学课程,看到一个基础课程的作业是爬取百度上《青春有你》选手信息,索性就跟着爬了一下,复习一下自己去年自学的已经忘得差不多的爬虫。

直接上代码,适合刚学习的朋友一起交流,大神请忽略。
想获取爬虫BeautifulSoup学习笔记的可以点击这里下载。

import requests
from bs4 import BeautifulSoup
import json
import datetime

def getHTML(url):
    headers = {
        'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36'
    }
    try:
        r = requests.get(url, headers=headers)
        r.raise_for_status
        r.encoding = r.apparent_encoding
        return r.text
    except:
        print('爬取失败')
        return ''

def getInfo(infoList, html):
    soup = BeautifulSoup(html, 'lxml')
    for tables in soup.find_all('table'):
        pre_table_title = tables.find_previous('div').find_all('h3')
        for pre_title in pre_table_title:
            if '参赛学员' in pre_title:
                infoList.append(tables)

def dealInfo(infoList):
    """
    解析目标html处的选手信息
    :param infoList:
    :return:
    """
    bs = BeautifulSoup(str(infoList), 'lxml')
    all_trs = bs.find_all('tr')
    all_starts = []

    for tr in all_trs[1:]:
        star = {}
        all_tds = tr.find_all('td')
        # 姓名
        star['name'] = all_tds[0].text
        star['link'] = 'https://baike.baidu.com' + all_tds[0].find('a').get('href')
        star['area'] = all_tds[1].text
        star['constellation'] = all_tds[2].text

        star['flower_word'] = all_tds[3].text

        # 公司处理
        if not all_tds[4].find('a') is None:
            star['company'] = all_tds[4].find('a').text
        else:
            star['company'] = all_tds[4].text
        all_starts.append(star)

    return all_starts

def transJSON(path, filename, infomation):
    # 化成JSON格式
    json_data = json.dumps(infomation, sort_keys=False, indent=4, separators=(',', ':'))
    print(json_data)
    with open(path + filename + '.json', 'w', encoding='UTF-8') as f:
        json.dump(json_data, f, ensure_ascii=False)


if __name__ == '__main__':
    url = 'https://baike.baidu.com/item/青春有你第二季'
    html = getHTML(url)
    infoList = []
    getInfo(infoList, html)
    infomation = dealInfo(infoList)
    print('共%d位选手。'%len(infomation))
    for info in infomation:
        print(info)


    # 获取当天的日期,并进行格式化,用于后面文件命名,格式:20200420
    today = datetime.date.today().strftime('%Y%m%d')
    path = ''
    filename = today
    # transJSON(path, filename, infomation)

输出结果是:

109位选手。
{'name': '胡馨尹', 'link': 'https://baike.baidu.com/item/%E8%83%A1%E9%A6%A8%E5%B0%B9/23766383', 'area': '中国四川', 'constellation': '射手座', 'flower_word': '蝴蝶花-我的外号是“小蝴蝶”', 'company': 'AKB48 CHINA'}
{'name': '沈莹', 'link': 'https://baike.baidu.com/item/%E6%B2%88%E8%8E%B9/23201701', 'area': '中国上海', 'constellation': '双鱼座', 'flower_word': '迎春花-要给大家带来更多希望和活力', 'company': 'AKB48 CHINA'}
{'name': '刘雨昕', 'link': 'https://baike.baidu.com/item/%E5%88%98%E9%9B%A8%E6%98%95', 'area': '中国贵州', 'constellation': '白羊座', 'flower_word': '仙人掌-因为仙人掌不论四季寒冬都像勇士一样抬着头', 'company': 'AMG亚洲音乐集团'}
{'name': '七穗', 'link': 'https://baike.baidu.com/item/%E4%B8%83%E7%A9%97', 'area': '日本', 'constellation': '处女座', 'flower_word': '樱花-因为我来自日本有一种独特的芬芳气息', 'company': 'Second Culture'}
{'name': '段艺璇', 'link': 'https://baike.baidu.com/item/%E6%AE%B5%E8%89%BA%E7%92%87', 'area': '中国湖南', 'constellation': '狮子座', 'flower_word': '南瓜花-终会等到属于你的南瓜马车悄悄改变你的宿命', 'company': 'SNH48'}
{'name': '费沁源', 'link': 'https://baike.baidu.com/item/%E8%B4%B9%E6%B2%81%E6%BA%90', 'area': '中国上海', 'constellation': '双鱼座', 'flower_word': '蒲公英-和我的头发一样风一吹就掉了', 'company': 'SNH48'}
{'name': '莫寒', 'link': 'https://baike.baidu.com/item/%E8%8E%AB%E5%AF%92', 'area': '中国贵州', 'constellation': '摩羯座', 'flower_word': '火树银花-把最绚烂的自己展现给你', 'company': 'SNH48'}
{'name': '宋昕冉', 'link': 'https://baike.baidu.com/item/%E5%AE%8B%E6%98%95%E5%86%89', 'area': '中国山东', 'constellation': '巨蟹座', 'flower_word': '含苞待放的玫瑰-热烈明艳温柔少刺', 'company': 'SNH48'}
{'name': '苏杉杉', 'link': 'https://baike.baidu.com/item/%E8%8B%8F%E6%9D%89%E6%9D%89', 'area': '中国湖北', 'constellation': '白羊座', 'flower_word': '桃花-如果你喜欢春天我就是桃花舞翩翩', 'company': 'SNH48'}
{'name': '孙芮', 'link': 'https://baike.baidu.com/item/%E5%AD%99%E8%8A%AE', 'area': '中国黑龙江', 'constellation': '狮子座', 'flower_word': '稻花-喜欢吃大米饭', 'company': 'SNH48'}
{'name': '戴萌', 'link': 'https://baike.baidu.com/item/%E6%88%B4%E8%90%8C', 'area': '中国上海', 'constellation': '水瓶座', 'flower_word': '假花-我是戴萌不是花', 'company': 'SNH48'}
{'name': '许佳琪', 'link': 'https://baike.baidu.com/item/%E8%AE%B8%E4%BD%B3%E7%90%AA/4970805', 'area': '中国浙江', 'constellation': '处女座', 'flower_word': '暗夜玫瑰-黑暗里带刺的红越夜越美丽', 'company': 'SNH48_7SENSES'}
{'name': '许杨玉琢', 'link': 'https://baike.baidu.com/item/%E8%AE%B8%E6%9D%A8%E7%8E%89%E7%90%A2', 'area': '中国湖南', 'constellation': '天秤座', 'flower_word': '桂花-因为杰尼龟要进化就是龟化(桂花)', 'company': 'SNH48_7SENSES'}
{'name': '张语格', 'link': 'https://baike.baidu.com/item/%E5%BC%A0%E8%AF%AD%E6%A0%BC', 'area': '中国黑龙江', 'constellation': '金牛座', 'flower_word': '郁金香-厚积薄发一定会开出纯洁而高贵的花朵', 'company': 'SNH48_7SENSES'}
{'name': '陈艺文', 'link': 'https://baike.baidu.com/item/%E9%99%88%E8%89%BA%E6%96%87/24272189', 'area': '中国山东', 'constellation': '双鱼座', 'flower_word': '栀子花-约定之花和自己做的约定多远都会赴约', 'company': 'TOV'}
{'name': '林凡', 'link': 'https://baike.baidu.com/item/%E6%9E%97%E5%87%A1', 'area': '中国四川', 'constellation': '天秤座', 'flower_word': '笑开花-我是笑的无比灿烂的乐天派', 'company': 'TOV'}
{'name': '陆柯燃', 'link': 'https://baike.baidu.com/item/%E9%99%86%E6%9F%AF%E7%87%83', 'area': '中国江苏', 'constellation': '天蝎座', 'flower_word': '棉花-天然柔和能够积蓄能量让人安心', 'company': 'TOV'}
{'name': '陈品瑄', 'link': 'https://baike.baidu.com/item/%E9%99%88%E5%93%81%E7%91%84', 'area': '中国台湾', 'constellation': '白羊座', 'flower_word': '玛格丽特花-喜欢不喜欢喜欢不喜欢少女的心事它都懂', 'company': 'TPG文创'}
{'name': '王承渲', 'link': 'https://baike.baidu.com/item/%E7%8E%8B%E6%89%BF%E6%B8%B2', 'area': '中国台湾', 'constellation': '天蝎座', 'flower_word': '豆腐花-白白嫩嫩可盐可甜', 'company': 'TPG文创'}
{'name': '王心茗', 'link': 'https://baike.baidu.com/item/%E7%8E%8B%E5%BF%83%E8%8C%97', 'area': '中国台湾', 'constellation': '狮子座', 'flower_word': '月光花-害怕强光白天闭合晚上开花很像我内敛的个性', 'company': 'TPG文创'}
{'name': '郑玉歆', 'link': 'https://baike.baidu.com/item/%E9%83%91%E7%8E%89%E6%AD%86/24282432', 'area': '中国台湾', 'constellation': '金牛座', 'flower_word': '向日葵-阳光笑容就是我的招牌动作', 'company': 'TPG文创'}
{'name': '乃万', 'link': 'https://baike.baidu.com/item/%E4%B9%83%E4%B8%87', 'area': '中国陕西', 'constellation': '射手座', 'flower_word': '小苍兰-不同色彩的自己都可给人幸福感', 'company': 'WR/OC'}
{'name': '左卓', 'link': 'https://baike.baidu.com/item/%E5%B7%A6%E5%8D%93', 'area': '中国辽宁', 'constellation': '天蝎座', 'flower_word': '蓝莲花-高音我都能上的去', 'company': '百沐娱乐'}
{'name': '傅如乔', 'link': 'https://baike.baidu.com/item/%E5%82%85%E5%A6%82%E4%B9%94', 'area': '中国台湾', 'constellation': '双子座', 'flower_word': '棉花-因为它白(皮肤白)又可以温暖人', 'company': '辰星娱乐'}
{'name': '卓依娜姆', 'link': 'https://baike.baidu.com/item/%E5%8D%93%E4%BE%9D%E5%A8%9C%E5%A7%86', 'area': '中国四川', 'constellation': '双子座', 'flower_word': '木棉花-因为朴实柔软洁白干净', 'company': '诚利千代'}
{'name': '何美延', 'link': 'https://baike.baidu.com/item/%E4%BD%95%E7%BE%8E%E5%BB%B6', 'area': '中国广东', 'constellation': '巨蟹座', 'flower_word': '山茶花-我希望像爷爷奶奶养的山茶花一样保持自我', 'company': '刺猬兄弟'}
{'name': '王清', 'link': 'https://baike.baidu.com/item/%E7%8E%8B%E6%B8%85/24271597', 'area': '中国山东', 'constellation': '水瓶座', 'flower_word': '棉花-弹棉花不断翻新自己温暖他人', 'company': '大王娱乐'}
{'name': '张钰', 'link': 'https://baike.baidu.com/item/%E5%BC%A0%E9%92%B0/24272071', 'area': '中国北京', 'constellation': '处女座', 'flower_word': '榴莲花-尽管外形不被看好但是果实要你好看', 'company': '大王娱乐'}
{'name': '林小宅', 'link': 'https://baike.baidu.com/item/%E6%9E%97%E5%B0%8F%E5%AE%85', 'area': '中国广东', 'constellation': '天秤座', 'flower_word': '太阳花-向着阳光努力生长希望我在的地方都能充满阳光', 'company': '点赞传播'}
{'name': '汪睿', 'link': 'https://baike.baidu.com/item/%E6%B1%AA%E7%9D%BF', 'area': '中国广东', 'constellation': '摩羯座', 'flower_word': '稻花-会产出米粒做成米饭像我们一样越品越甜', 'company': '飞宝传媒'}
{'name': '符雅凝', 'link': 'https://baike.baidu.com/item/%E7%AC%A6%E9%9B%85%E5%87%9D', 'area': '中国北京', 'constellation': '巨蟹座', 'flower_word': '雪花-虽然很冷但是一碰就化', 'company': '果然娱乐'}
{'name': '葛鑫怡', 'link': 'https://baike.baidu.com/item/%E8%91%9B%E9%91%AB%E6%80%A1', 'area': '中国浙江', 'constellation': '摩羯座', 'flower_word': '梨花-一朵梨花压海棠', 'company': '果然娱乐'}
{'name': '张洛菲', 'link': 'https://baike.baidu.com/item/%E5%BC%A0%E6%B4%9B%E8%8F%B2', 'area': '中国河南', 'constellation': '水瓶座', 'flower_word': '洛神花-名字带“洛”代表希望美丽和我', 'company': '果然娱乐'}
{'name': '金吉雅', 'link': 'https://baike.baidu.com/item/%E9%87%91%E5%90%89%E9%9B%85', 'area': '中国浙江', 'constellation': '天蝎座', 'flower_word': "如花-哈哈哈因为和她一样自信DON'TCARE", 'company': '海盗音乐'}
{'name': '王瑶瑶', 'link': 'https://baike.baidu.com/item/%E7%8E%8B%E7%91%B6%E7%91%B6', 'area': '中国河南', 'constellation': '天秤座', 'flower_word': '牡丹花-洛阳牡丹甲天下我洛阳的', 'company': '好好榜样'}
{'name': '徐紫茵', 'link': 'https://baike.baidu.com/item/%E5%BE%90%E7%B4%AB%E8%8C%B5', 'area': '中国福建', 'constellation': '金牛座', 'flower_word': '猪五花-可塑性极强有多种料理方式回了锅以后更香', 'company': '好好榜样'}
{'name': '申冰', 'link': 'https://baike.baidu.com/item/%E7%94%B3%E5%86%B0', 'area': '中国山东', 'constellation': '狮子座', 'flower_word': '烟花-因为烟花是让人看了便忘不了的东西', 'company': '合纵文化'}
{'name': '申洁', 'link': 'https://baike.baidu.com/item/%E7%94%B3%E6%B4%81/24272816', 'area': '中国山东', 'constellation': '狮子座', 'flower_word': '水花-因为滴下来的时候会引起很多涟漪', 'company': '合纵文化'}
{'name': '申清', 'link': 'https://baike.baidu.com/item/%E7%94%B3%E6%B8%85/24272817', 'area': '中国山东', 'constellation': '狮子座', 'flower_word': '栀子花-与大家做个永恒的约定要做坚强的人', 'company': '合纵文化'}
{'name': '申玉', 'link': 'https://baike.baidu.com/item/%E7%94%B3%E7%8E%89', 'area': '中国山东', 'constellation': '狮子座', 'flower_word': '眼花-因为我会迷得别人眼花缭乱', 'company': '合纵文化'}
{'name': '靳阳阳', 'link': 'https://baike.baidu.com/item/%E9%9D%B3%E9%98%B3%E9%98%B3/24271276', 'area': '中国安徽', 'constellation': '水瓶座', 'flower_word': '木兰花-要做巾帼女英雄', 'company': '河马影业'}
{'name': '孙美楠', 'link': 'https://baike.baidu.com/item/%E5%AD%99%E7%BE%8E%E6%A5%A0', 'area': '中国山东', 'constellation': '白羊座', 'flower_word': '钢花-性格火辣非常刚', 'company': '河马影业'}
{'name': '徐轸轸', 'link': 'https://baike.baidu.com/item/%E5%BE%90%E8%BD%B8%E8%BD%B8', 'area': '中国安徽', 'constellation': '巨蟹座', 'flower_word': '烟花-易燃易爆炸但还挺好看', 'company': '河马影业'}
{'name': '张梦露', 'link': 'https://baike.baidu.com/item/%E5%BC%A0%E6%A2%A6%E9%9C%B2', 'area': '中国安徽', 'constellation': '巨蟹座', 'flower_word': '雏菊-纯洁和平生命力顽强', 'company': '河马影业'}
{'name': '虞书欣', 'link': 'https://baike.baidu.com/item/%E8%99%9E%E4%B9%A6%E6%AC%A3', 'area': '中国上海', 'constellation': '射手座', 'flower_word': '虞美人-因为我姓“虞”', 'company': '华策影业'}
{'name': '刘亚楠', 'link': 'https://baike.baidu.com/item/%E5%88%98%E4%BA%9A%E6%A5%A0/24271343', 'area': '中国湖北', 'constellation': '白羊座', 'flower_word': '西兰花-看起来和吃起来的味道一样就像我将情绪都挂脸上', 'company': '华谊兄弟时尚'}
{'name': '秦牛正威', 'link': 'https://baike.baidu.com/item/%E7%A7%A6%E7%89%9B%E6%AD%A3%E5%A8%81', 'area': '中国河南', 'constellation': '狮子座', 'flower_word': '满天星-既能为繁花点缀又不易枯萎', 'company': '火星数娱'}
{'name': '杨宇彤', 'link': 'https://baike.baidu.com/item/%E6%9D%A8%E5%AE%87%E5%BD%A4', 'area': '中国北京', 'constellation': '狮子座', 'flower_word': '仙人掌花-虽然外表有刺但是内心柔软火热', 'company': '火星数娱'}
{'name': '刘海涵', 'link': 'https://baike.baidu.com/item/%E5%88%98%E6%B5%B7%E6%B6%B5/24271306', 'area': '中国山东', 'constellation': '天秤座', 'flower_word': '烟花-一旦爆发要你好看', 'company': '嘉行新悦'}
{'name': '唐珂伊', 'link': 'https://baike.baidu.com/item/%E5%94%90%E7%8F%82%E4%BC%8A', 'area': '中国四川', 'constellation': '射手座', 'flower_word': '窗花-热闹的日子少不了我', 'company': '嘉行新悦'}
{'name': '王雅乐', 'link': 'https://baike.baidu.com/item/%E7%8E%8B%E9%9B%85%E4%B9%90', 'area': '中国安徽', 'constellation': '狮子座', 'flower_word': '妙笔生花-文字爱好者', 'company': '嘉行新悦'}
{'name': '朱林雨', 'link': 'https://baike.baidu.com/item/%E6%9C%B1%E6%9E%97%E9%9B%A8', 'area': '中国河南', 'constellation': '天蝎座', 'flower_word': '水仙花-干净清新爱装蒜', 'company': '嘉行新悦'}
{'name': '喻言', 'link': 'https://baike.baidu.com/item/%E5%96%BB%E8%A8%80', 'area': '中国北京', 'constellation': '双子座', 'flower_word': '霸王花-听起来虽然吓人但是却有治病的功效', 'company': '嘉会传媒'}
{'name': '谢可寅', 'link': 'https://baike.baidu.com/item/%E8%B0%A2%E5%8F%AF%E5%AF%85', 'area': '中国四川', 'constellation': '摩羯座', 'flower_word': '睡莲-因为我懒能躺着不站着', 'company': '嘉纳盛世'}
{'name': '安崎', 'link': 'https://baike.baidu.com/item/%E5%AE%89%E5%B4%8E', 'area': '中国重庆', 'constellation': '金牛座', 'flower_word': '无限烟花-因为BOOM', 'company': '匠星娱乐'}
{'name': '墨谣', 'link': 'https://baike.baidu.com/item/%E5%A2%A8%E8%B0%A3', 'area': '中国江苏', 'constellation': '双鱼座', 'flower_word': '樱花-樱花和生日是同一个月樱花也很浪漫', 'company': '匠星娱乐'}
{'name': '上官喜爱', 'link': 'https://baike.baidu.com/item/%E4%B8%8A%E5%AE%98%E5%96%9C%E7%88%B1', 'area': '中国吉林', 'constellation': '双子座', 'flower_word': '爬山虎-看似不起眼一转身满墙都是', 'company': '匠星娱乐'}
{'name': '文哲', 'link': 'https://baike.baidu.com/item/%E6%96%87%E5%93%B2/22831155', 'area': '中国四川', 'constellation': '处女座', 'flower_word': '白色小雏菊-纯洁和平善良勇敢美丽', 'company': '匠星娱乐'}
{'name': '曾可妮', 'link': 'https://baike.baidu.com/item/%E6%9B%BE%E5%8F%AF%E5%A6%AE', 'area': '中国湖北', 'constellation': '双子座', 'flower_word': '高岭之花-外表高冷触不可及其实是一朵有趣的花', 'company': '觉醒东方'}
{'name': '刘令姿', 'link': 'https://baike.baidu.com/item/%E5%88%98%E4%BB%A4%E5%A7%BF', 'area': '中国四川', 'constellation': '白羊座', 'flower_word': '风信子-这是我的生日花', 'company': '觉醒东方'}
{'name': '米拉', 'link': 'https://baike.baidu.com/item/%E7%B1%B3%E6%8B%89/24271348', 'area': '中国四川', 'constellation': '白羊座', 'flower_word': '蔷薇花-耐心等待会让你看到满园不同的色彩', 'company': '觉醒东方'}
{'name': '欧若拉', 'link': 'https://baike.baidu.com/item/%E6%AC%A7%E8%8B%A5%E6%8B%89/24271932', 'area': '中国陕西', 'constellation': '摩羯座', 'flower_word': '拉花-系上丝带想把自己打包成一份惊喜送给大家', 'company': '觉醒东方'}
{'name': '邹思扬', 'link': 'https://baike.baidu.com/item/%E9%82%B9%E6%80%9D%E6%89%AC', 'area': '中国湖南', 'constellation': '狮子座', 'flower_word': '彼岸花-天使与恶魔并存神秘又美丽', 'company': '觉醒东方'}
{'name': '戴燕妮', 'link': 'https://baike.baidu.com/item/%E6%88%B4%E7%87%95%E5%A6%AE', 'area': '中国辽宁', 'constellation': '狮子座', 'flower_word': '绿牡丹-对未来充满期待对喜欢的事情用心付出', 'company': '酷漾娱乐'}
{'name': '林韦希', 'link': 'https://baike.baidu.com/item/%E6%9E%97%E9%9F%A6%E5%B8%8C', 'area': '中国台湾', 'constellation': '摩羯座', 'flower_word': '含羞草-我很害羞但还是渴望被了解', 'company': '莱恩娱乐'}
{'name': '艾依依', 'link': 'https://baike.baidu.com/item/%E8%89%BE%E4%BE%9D%E4%BE%9D', 'area': '中国重庆', 'constellation': '摩羯座', 'flower_word': '月季花-表达了对幸福的期待我希望自己乐观积极一些', 'company': '乐华娱乐'}
{'name': '陈昕葳', 'link': 'https://baike.baidu.com/item/%E9%99%88%E6%98%95%E8%91%B3', 'area': '中国台湾', 'constellation': '摩羯座', 'flower_word': '满天星-像繁星漫天做好自己的部分也能照亮大家', 'company': '乐华娱乐'}
{'name': '金子涵', 'link': 'https://baike.baidu.com/item/%E9%87%91%E5%AD%90%E6%B6%B5', 'area': '中国山东', 'constellation': '水瓶座', 'flower_word': '梅花-在风雪中也能绽放希望自己是坚持不懈的人', 'company': '乐华娱乐'}
{'name': '宋昭艺', 'link': 'https://baike.baidu.com/item/%E5%AE%8B%E6%98%AD%E8%89%BA', 'area': '中国山东', 'constellation': '天蝎座', 'flower_word': '兰花-象征友情希望自己在节目中收获真挚的友情', 'company': '乐华娱乐'}
{'name': '希娅', 'link': 'https://baike.baidu.com/item/%E5%B8%8C%E5%A8%85/24272154', 'area': '中国浙江', 'constellation': '水瓶座', 'flower_word': '小雏菊-森林里精灵的化身在新的一天就会有新的希望', 'company': '乐华娱乐'}
{'name': '张天馨', 'link': 'https://baike.baidu.com/item/%E5%BC%A0%E5%A4%A9%E9%A6%A8', 'area': '中国山东', 'constellation': '金牛座', 'flower_word': '绣球花-希望通过我的努力让大家团聚迎接希望曙光', 'company': '乐辉文化'}
{'name': '阿依莎', 'link': 'https://baike.baidu.com/item/%E9%98%BF%E4%BE%9D%E8%8E%8E/24275232', 'area': '中国黑龙江', 'constellation': '白羊座', 'flower_word': '爆米花-可甜可盐不定时会爆出惊喜', 'company': '鹭蒲印象'}
{'name': '蔡卓宜', 'link': 'https://baike.baidu.com/item/%E8%94%A1%E5%8D%93%E5%AE%9C', 'area': '马来西亚', 'constellation': '白羊座', 'flower_word': '雏菊-笑起来的我天真烂漫', 'company': '麦尼肯娱乐'}
{'name': '艾霖', 'link': 'https://baike.baidu.com/item/%E8%89%BE%E9%9C%96', 'area': '中国北京', 'constellation': '双子座', 'flower_word': '向日葵-梦想路上的追光者', 'company': '美丽南方'}
{'name': '段小薇', 'link': 'https://baike.baidu.com/item/%E6%AE%B5%E5%B0%8F%E8%96%87', 'area': '中国四川', 'constellation': '双鱼座', 'flower_word': '玫瑰花-我有四根刺即使老虎来了我也不害怕', 'company': '萌样影视'}
{'name': '魏奇奇', 'link': 'https://baike.baidu.com/item/%E9%AD%8F%E5%A5%87%E5%A5%87', 'area': '中国台湾', 'constellation': '双子座', 'flower_word': '蓝风铃-因为笑声清脆', 'company': '萌样影视'}
{'name': '程曼鑫', 'link': 'https://baike.baidu.com/item/%E7%A8%8B%E6%9B%BC%E9%91%AB', 'area': '中国北京', 'constellation': '天秤座', 'flower_word': '火焰兰-希望我可以成为你们心里那个忘不掉的人', 'company': '梦想青春音乐'}
{'name': '黄欣苑', 'link': 'https://baike.baidu.com/item/%E9%BB%84%E6%AC%A3%E8%8B%91', 'area': '马来西亚', 'constellation': '天秤座', 'flower_word': '玫瑰花-看似浑身是刺却又饱含深情', 'company': '木加互娱'}
{'name': '黄一鸣', 'link': 'https://baike.baidu.com/item/%E9%BB%84%E4%B8%80%E9%B8%A3/24271257', 'area': '中国四川', 'constellation': '狮子座', 'flower_word': '永生花-希望初心不变稚气不磨', 'company': '木加互娱'}
{'name': '熊钰清', 'link': 'https://baike.baidu.com/item/%E7%86%8A%E9%92%B0%E6%B8%85', 'area': '中国湖南', 'constellation': '水瓶座', 'flower_word': '梅花-品性高洁傲霜斗雪', 'company': '木加互娱'}
{'name': '韩东', 'link': 'https://baike.baidu.com/item/%E9%9F%A9%E4%B8%9C/24221079', 'area': '中国湖北', 'constellation': '白羊座', 'flower_word': '电火花-不是热性子但依然想在黑暗里多散发一些光芒', 'company': '少城时代'}
{'name': '黄小芸', 'link': 'https://baike.baidu.com/item/%E9%BB%84%E5%B0%8F%E8%8A%B8/24272185', 'area': '中国广西', 'constellation': '天秤座', 'flower_word': '交际花-闲不住的性子拯救落单的人', 'company': '少城时代'}
{'name': '未书羽', 'link': 'https://baike.baidu.com/item/%E6%9C%AA%E4%B9%A6%E7%BE%BD', 'area': '中国江西', 'constellation': '射手座', 'flower_word': '笑花-瑞丽冠军笑靥如花', 'company': '少城时代'}
{'name': '许馨文', 'link': 'https://baike.baidu.com/item/%E8%AE%B8%E9%A6%A8%E6%96%87/19918129', 'area': '中国湖南', 'constellation': '双鱼座', 'flower_word': '浪花-永远要把前面的拍在岸上一浪更比一浪高', 'company': '少城时代'}
{'name': '查祎琛', 'link': 'https://baike.baidu.com/item/%E6%9F%A5%E7%A5%8E%E7%90%9B', 'area': '中国安徽', 'constellation': '天秤座', 'flower_word': '大呲花-因为笑的时候会控制不住自己龇牙笑', 'company': '圣元互娱'}
{'name': '冯若航', 'link': 'https://baike.baidu.com/item/%E5%86%AF%E8%8B%A5%E8%88%AA', 'area': '中国河南', 'constellation': '处女座', 'flower_word': '麻花-可以维持生命的外面焦脆里面白的大麻花', 'company': '圣元互娱'}
{'name': '周琳聪', 'link': 'https://baike.baidu.com/item/%E5%91%A8%E7%90%B3%E8%81%AA', 'area': '中国浙江', 'constellation': '摩羯座', 'flower_word': '葱花-虽然不起眼却是生活中必不可少的调味品', 'company': '圣元互娱'}
{'name': '孔雪儿', 'link': 'https://baike.baidu.com/item/%E5%AD%94%E9%9B%AA%E5%84%BF', 'area': '中国湖北', 'constellation': '金牛座', 'flower_word': '雪花-纯洁无暇', 'company': '泰洋川禾'}
{'name': '赵小棠', 'link': 'https://baike.baidu.com/item/%E8%B5%B5%E5%B0%8F%E6%A3%A0', 'area': '中国北京', 'constellation': '白羊座', 'flower_word': '东北大呲花-绚烂绽放大家又很爱', 'company': '泰洋川禾'}
{'name': '姚依凡', 'link': 'https://baike.baidu.com/item/%E5%A7%9A%E4%BE%9D%E5%87%A1', 'area': '中国陕西', 'constellation': '射手座', 'flower_word': '海棠花-看起来很喜庆的感觉', 'company': '天加一'}
{'name': '周梓倩', 'link': 'https://baike.baidu.com/item/%E5%91%A8%E6%A2%93%E5%80%A9', 'area': '中国上海', 'constellation': '狮子座', 'flower_word': '向日葵-我会储蓄能量传播给更多的人', 'company': '天加一'}
{'name': '杜紫怡', 'link': 'https://baike.baidu.com/item/%E6%9D%9C%E7%B4%AB%E6%80%A1', 'area': '中国天津', 'constellation': '狮子座', 'flower_word': '麻花-既会为了目标拧成一股绳又很拧巴', 'company': '香蕉娱乐'}
{'name': '林慧博', 'link': 'https://baike.baidu.com/item/%E6%9E%97%E6%85%A7%E5%8D%9A', 'area': '中国黑龙江', 'constellation': '摩羯座', 'flower_word': '丁香花-我大哈尔滨的市花我要努力为我大哈尔滨争光', 'company': '香蕉娱乐'}
{'name': '粟钦柔', 'link': 'https://baike.baidu.com/item/%E7%B2%9F%E9%92%A6%E6%9F%94', 'area': '中国四川', 'constellation': '摩羯座', 'flower_word': '豆花-像豆花一样白喜欢吃带”豆”字的食物', 'company': '香蕉娱乐'}
{'name': '王姝慧', 'link': 'https://baike.baidu.com/item/%E7%8E%8B%E5%A7%9D%E6%85%A7', 'area': '中国陕西', 'constellation': '双子座', 'flower_word': '爆米花-又甜又爆炸', 'company': '香蕉娱乐'}
{'name': '李熙凝', 'link': 'https://baike.baidu.com/item/%E6%9D%8E%E7%86%99%E5%87%9D', 'area': '中国辽宁', 'constellation': '天秤座', 'flower_word': '棉花-白白的软软的 加“糖”还很好吃', 'company': '祥跃文化'}
{'name': '王思予', 'link': 'https://baike.baidu.com/item/%E7%8E%8B%E6%80%9D%E4%BA%88/24271599', 'area': '中国北京', 'constellation': '狮子座', 'flower_word': '野花-随意播撒就能蓬勃生长', 'company': '曜星文化'}
{'name': '魏辰', 'link': 'https://baike.baidu.com/item/%E9%AD%8F%E8%BE%B0', 'area': '中国河南', 'constellation': '巨蟹座', 'flower_word': '随便花-想通过自己的努力让自己可以“随便花”', 'company': '曜星文化'}
{'name': '符佳', 'link': 'https://baike.baidu.com/item/%E7%AC%A6%E4%BD%B3/24271046', 'area': '中国辽宁', 'constellation': '处女座', 'flower_word': '仙人掌花-浑身是刺生人勿近人狠话不多', 'company': '一综星船'}
{'name': '权笑迎', 'link': 'https://baike.baidu.com/item/%E6%9D%83%E7%AC%91%E8%BF%8E', 'area': '中国河北', 'constellation': '白羊座', 'flower_word': '迷迭香-香气迷人浓郁令人提神醒脑', 'company': '姊妹淘'}
{'name': '陈珏', 'link': 'https://baike.baidu.com/item/%E9%99%88%E7%8F%8F/24270747', 'area': '中国浙江', 'constellation': '狮子座', 'flower_word': '黑玫瑰-黑色是我的保护色', 'company': '个人训练生'}
{'name': '勾雪莹', 'link': 'https://baike.baidu.com/item/%E5%8B%BE%E9%9B%AA%E8%8E%B9', 'area': '中国黑龙江', 'constellation': '金牛座', 'flower_word': '向日葵-像太阳一样永远照亮身边人', 'company': '个人训练生'}
{'name': '李依宸', 'link': 'https://baike.baidu.com/item/%E6%9D%8E%E4%BE%9D%E5%AE%B8/24237504', 'area': '中国北京', 'constellation': '双鱼座', 'flower_word': '茉莉-我以前叫“李茉”倒过来就是茉莉', 'company': '个人训练生'}
{'name': '马蜀君', 'link': 'https://baike.baidu.com/item/%E9%A9%AC%E8%9C%80%E5%90%9B', 'area': '中国四川', 'constellation': '水瓶座', 'flower_word': '小雏菊-虽然不起眼但依然独自芬芳', 'company': '个人训练生'}
{'name': '王婉辰', 'link': 'https://baike.baidu.com/item/%E7%8E%8B%E5%A9%89%E8%BE%B0', 'area': '中国山东', 'constellation': '巨蟹座', 'flower_word': '西兰花-可以变瘦变美天然健康', 'company': '个人训练生'}
{'name': '王欣宇', 'link': 'https://baike.baidu.com/item/%E7%8E%8B%E6%AC%A3%E5%AE%87/18551258', 'area': '中国黑龙江', 'constellation': '摩羯座', 'flower_word': '小花-因为我个子矮长得小', 'company': '个人训练生'}
{'name': '夏研', 'link': 'https://baike.baidu.com/item/%E5%A4%8F%E7%A0%94', 'area': '中国安徽', 'constellation': '巨蟹座', 'flower_word': '仙人掌-不管环境多么恶劣生命力依然顽强', 'company': '个人训练生'}
{'name': '徐百仪', 'link': 'https://baike.baidu.com/item/%E5%BE%90%E7%99%BE%E4%BB%AA', 'area': '中国台湾', 'constellation': '天秤座', 'flower_word': '紫丁香-对自己热爱的事永不变心抱有持之以恒的热爱', 'company': '个人训练生'}
{'name': '张楚寒', 'link': 'https://baike.baidu.com/item/%E5%BC%A0%E6%A5%9A%E5%AF%92', 'area': '中国湖北', 'constellation': '摩羯座', 'flower_word': '脑花-想法很多以形补形', 'company': '个人训练生'}

Process finished with exit code 0

  • 3
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值