python3批量删除豆瓣分组下的好友的实现代码
python3批量删除豆瓣分组下的好友的实现代码
""" python3批量删除豆瓣分组下的好友 2016年6月7日 03:43:42 codegay 我两年前一时冲动在豆瓣关注了很多豆瓣的员工,好多,有四百个。 我现在一时冲动想取消关注...,写这么一个脚本可以用来加快删除的速度。 cookies还是直接从chrome读取出来用, 参考我之前刚写的代码 python3从chrome浏览器读取cookie, """ import os import sqlite3 import re import requests from win32.win32crypt import CryptUnprotectData def getcookiefromchrome(host='.oschina.net'): cookiepath=os.environ['LOCALAPPDATA']+r"\Google\Chrome\User Data\Default\Cookies" sql="select host_key,name,encrypted_value from cookies where host_key='%s'" % host with sqlite3.connect(cookiepath) as conn: cu=conn.cursor() cookies={name:CryptUnprotectData(encrypted_value)[1].decode() for host_key,name,encrypted_value in cu.execute(sql).fetchall()} print(cookies) return cookies #运行环境windows 2012 server python3.4 x64 pywin32 chrome 50 #getcookiefromchrome() #getcookiefromchrome('.baidu.com') dbcookies=getcookiefromchrome('.douban.com') txt=requests.get('https://www.douban.com/contacts/list?tag=1718',cookies=dbcookies).text #print(txt) userid=re.findall(r'id="u(\d+)"',txt) ck=dbcookies['ck'] #ck的值在每次重新登录豆版后会变化。 #可以从网页中提取,不过我发现cookies也记录有了。直接提取出来就好了 head={'Content-Type':'application/x-www-form-urlencoded',} for uid in userid: data="people=%s&ck=%s" % (uid,ck) #data='people=47362624&ck=jeGZ' print(data) rs=requests.post('https://www.douban.com/j/contact/removecontact',headers=head,cookies=dbcookies,data=data).text print(rs)
相关推荐
chuckchen 2020-10-31
Will0 2020-10-12
Dreamhome 2020-10-09
xirongxudlut 2020-09-28
星辰大海的路上 2020-09-13
chaochao 2020-08-31
猪猪侠喜欢躲猫猫 2020-08-17
快递小可 2020-08-16
shengge0 2020-07-26
巩庆奎 2020-07-21
张文倩数据库学生 2020-07-19
xirongxudlut 2020-07-18
Ericbig 2020-07-18
kyelu 2020-07-09
liangzhouqu 2020-07-07
GuoSir 2020-06-28
chaigang 2020-06-27
pythonxuexi 2020-06-25