批量删除微博(微博怎样批量删除微博)

批量删除微博(微博怎样批量删除微博)

20多个爬虫实战案例

在开始之前,我建议你先安装一下DecryptLoginExamples这个包,以方便测试下文中会逐一介绍到的各个爬虫项目的调用代码。具体而言,只需要执行如下命令即可:

pip install DecryptLoginExamples

1. 微博监控

调用方式:

from DecryptLoginExamples import client


config = {
    'username': 用户名,
    'password': 密码,
    'time_interval': 查询微博动态的间隔时间,
}
crawler_executor = client.Client()
crawler_executor.executor('weibomonitor', config=config)

2. 生成QQ个人专属报告

调用方式:

from DecryptLoginExamples import client


config = {
    'username': 用于存储历史cookies的唯一标识ID, 
    'savedir': 生成的报告保存的文件夹,
}
crawler_executor = client.Client()
crawler_executor.executor('qqreports', config=config)

3. 下载B站指定UP主的所有视频

调用方式:

from DecryptLoginExamples import client


config = {
    'username': 用于存储历史cookies的唯一标识ID, 
}
crawler_executor = client.Client()
crawler_executor.executor('bilibiliuservideos', config=config)

4. 网易云个人歌单下载器

调用方式:

from DecryptLoginExamples import client


config = {
    'username': 用于存储历史cookies的唯一标识ID, 
}
crawler_executor = client.Client()
crawler_executor.executor('neteasesonglistdownloader', config=config)

5. 网易云个人听歌排行榜

调用方式:

from DecryptLoginExamples import client


config = {
    'username': 用于存储历史cookies的唯一标识ID, 
}
crawler_executor = client.Client()
crawler_executor.executor('neteaselistenleaderboard', config=config)

6. 下载指定微博用户的所有微博数据

调用方式:

from DecryptLoginExamples import client


config = {
    'username': 用户名,
    'password': 密码,
}
crawler_executor = client.Client()
crawler_executor.executor('userweibospider', config=config)

7. 网易云音乐自动签到

调用方式:

from DecryptLoginExamples import client


config = {
    'username': 用于存储历史cookies的唯一标识ID, 
}
crawler_executor = client.Client()
crawler_executor.executor('neteasesignin', config=config)

8. 微博表情包爬取

调用方式:

from DecryptLoginExamples import client


config = {
    'username': 用户名,
    'password': 密码,
}
crawler_executor = client.Client()
crawler_executor.executor('weiboemoji', config=config)

9. 大吼一声发微博

调用方式:

from DecryptLoginExamples import client


config = {
    'username': 用户名,
    'password': 密码,
}
crawler_executor = client.Client()
crawler_executor.executor('weibosender', config=config)

10. 淘宝商品数据小爬虫

调用方式:

from DecryptLoginExamples import client


config = {
    'username': 用于存储历史cookies的唯一标识ID, 
}
crawler_executor = client.Client()
crawler_executor.executor('tbgoods', config=config)

11. 京东商品数据小爬虫

调用方式:

from DecryptLoginExamples import client


config = {
    'username': 用于存储历史cookies的唯一标识ID, 
}
crawler_executor = client.Client()
crawler_executor.executor('jdgoods', config=config)

12. 批量删除微博

调用方式:

from DecryptLoginExamples import client


config = {
    'username': 用户名,
    'password': 密码,
}
crawler_executor = client.Client()
crawler_executor.executor('delallweibos', config=config)

13. 批量删除QQ空间说说

调用方式:

from DecryptLoginExamples import client


config = {
    'username': 用于存储历史cookies的唯一标识ID, 
}
crawler_executor = client.Client()
crawler_executor.executor('clearqzone', config=config)

14. 在终端看网易云每日歌曲推荐

调用方式:

from DecryptLoginExamples import client


config = {
    'username': 用于存储历史cookies的唯一标识ID, 
}
crawler_executor = client.Client()
crawler_executor.executor('neteaseeveryday', config=config)

15. 网易云音乐刷歌曲播放量

调用方式:

from DecryptLoginExamples import client


config = {
    'username': 用于存储历史cookies的唯一标识ID, 
}
crawler_executor = client.Client()
crawler_executor.executor('neteaseclickplaylist', config=config)

16. 天翼云盘自动签到+抽奖

调用方式:

from DecryptLoginExamples import client


config = {
    'username': 用户名,
    'password': 密码,
}
crawler_executor = client.Client()
crawler_executor.executor('cloud189signin', config=config)

17. 中国大学MOOC下载器

调用方式:

from DecryptLoginExamples import client


config = {
    'url': 课程链接, 例如: https://www.icourse163.org/course/SJTU-1003381021, 
}
crawler_executor = client.Client()
crawler_executor.executor('moocdl', config=config)

18. 修改小米运动中的步数

调用方式:

from DecryptLoginExamples import client


config = {
    'username': 用户名,
    'password': 密码,
    'steps': 想要刷到的目标步数,
}
crawler_executor = client.Client()
crawler_executor.executor('modifymihealthsteps', config=config)

19. 淘宝抢购脚本

调用方式:

from DecryptLoginExamples import client


config = {
    'username': 用于存储历史cookies的唯一标识ID, 
    'trybuy_interval': 抢购商品时查询商品是否可以购买的时间间隔(单位秒),
    'server_key': Server酱的Key,
}
crawler_executor = client.Client()
crawler_executor.executor('taobaosnap', config=config)

20. 京东抢购脚本

调用方式:

from DecryptLoginExamples import client


config = {
    'username': 用于存储历史cookies的唯一标识ID, 
    'trybuy_interval': 抢购商品时查询商品是否可以购买的时间间隔(单位秒),
    'server_key': Server酱的Key,
    'paywd': 支付密码, 部分商品需要支付密码才能提交订单, 输入密码不会导致你直接购买商品, 请放心使用,
}
crawler_executor = client.Client()
crawler_executor.executor('jingdongsnap', config=config)

21. B站UP主监控

调用方式:

from DecryptLoginExamples import client


config = {
    'username': 用于存储历史cookies的唯一标识ID, 
    'up_ids': 监控的UP主ID, 例如: ['406756145'],
    'time_interval': 查询UP主的动态的间隔时间,
    'server_key': Server酱的Key,
}
crawler_executor = client.Client()
crawler_executor.executor('bilibiliupmonitor', config=config)

22. B站监控关注的UP主并自动转发抽奖

调用方式:

from DecryptLoginExamples import client


config = {
    'username': 用于存储历史cookies的唯一标识ID, 
    'time_interval': 查询UP主的动态的间隔时间,
}
crawler_executor = client.Client()
crawler_executor.executor('bilibililottery', config=config)

23. 微博水军

调用方式:

from DecryptLoginExamples import client


config = {
    'username': 用户名,
    'password': 密码,
    'targetid': 想要流量造假服务的明星微博ID, 例如: '1776448504',
}
crawler_executor = client.Client()
crawler_executor.executor('weibowater', config=config)

24. 微博批量拉黑脚本

调用方式:

from DecryptLoginExamples import client


config = {
    'username': 用户名,
    'password': 密码,
    'blacklist_ids': 想要批量拉黑的用户列表, 例如: ['1776448504', '1792951112', '2656274875'],
}
crawler_executor = client.Client()
crawler_executor.executor('weiboblacklist', config=config)

本文部分内容来自互联网,如有疑问请与我们联系。

发布者:币侠财经,转转请注明出处:https://www.yfhhf.com/baike/219873.html

(0)
                       
上一篇 2023年 5月 17日 上午12:50
下一篇 2023年 5月 17日 上午12:51

相关推荐

  • 法国英文怎么说(法语好学吗对中国人)

    法兰西共和国(法语:République fran?aise,英语:French Republic,France),简称“法国”。总人口约为6700万。 1.法国是接待世界游客最多的国家。每年的游客接近一个亿。 2.法国近20%的领土不在欧洲,包括新加勒多尼亚、法属圭亚那还有加勒比海域的小岛,总计超过250万法国人。 3.说法语最大的地方并不是法国,而是非洲…

    2023年 2月 24日
    1620
  • memo no(memo no是什么意思)

    下了飞机外面在下雨,还是上次离开时那场雨吗?下了这么久,是谁的眼泪在飞呢?不得不佩服航空公司的精准操作,完美的延误了三个小时五十分钟,又一次让我的延误险守株没待到兔。 一觉醒来又忘了身在何处,迷茫了好半天才回到人间。除了中午去吃了个牛排,其余时间一直待在酒店里。晚上可能会像之前一样去江边吹吹风,也许继续蜗居。积攒的勇气再而衰,三而竭,不想再挣扎。选择远离一切…

    2022年 12月 16日
    1730
  • win10电脑怎么无线投屏电视(win10电脑如何无线投屏到电视)

    WIDI,windows10电脑如何投屏小米电视机 在我们需要进行工作演示,或者想大屏幕观影的时候,我们可以通过将电脑系统投屏到电视机的方式实现。不过有小伙伴不清楚windows10如何投屏电视机?今天小编就跟大家分享下windows10投屏电视机的方法。 步骤如下: 1、首先将电脑连接无线WIFI。 2、将电视也连接在同一个无线WIFI网络下。 3、进入电…

    2023年 1月 6日
    3610
  • 一支钢枪歌词(一支钢枪歌词完整版)

    2018学生军训拉歌歌曲有哪些?在辛苦的军训之余,通常会有拉歌等娱乐项目让学生们可以放松心情。拉歌时唱什么歌好呢,有什么流行歌曲适合拉歌么,下面就为大家带来2018学生军训拉歌歌曲大全。 2018学生军训拉歌歌曲大全 1.军中绿花 寒风飘飘落叶 军队是一朵绿花 亲爱的战友你不要想家 不要想妈妈 声声我日夜呼唤 多少句心里话 不要离别时两眼泪花 军营是咱温暖的…

    2023年 4月 23日
    1.7K0
  • 与君初相识演员表(与君初相识演员表全部)

    由迪丽热巴、任嘉伦主演的古装神话剧《与君初相识》已经大结局了。这部剧的战绩也没有多亮眼,也就简简单单给优酷破了个历史最高,热度也就拿了网剧榜第1,优酷虽然表面强装冷静,其实内心早已乐开花。 《与君初相识》也三出国门,分别会在泰国、韩国、非洲播出,为什么这部剧会如此受欢迎,你去看一下就知道了。《与君初相识》的特效真的没有辱没打造东方极致童话故事的名头,二刷才发…

    2023年 5月 14日
    3170

联系我们

不接风险内容

在线咨询: QQ交谈

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信