利用python模拟post请求实现USVN批量添加用户组

参考知乎链接:https://zhuanlan.zhihu.com/p/140372568
环境:python3.7
请求头,请求地址都可以在开发者模式的网络中抓取,此处需要登录到USVN才能获取到cookie
在这里插入图片描述

import requests
import time

headers={
    "Host":"svn.xurikeji.net:8088",
    "Referer":"http://svn.xurikeji.net:8088/admin/group/new",
    "User-Agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0",
    "Content-Type":"application/x-www-form-urlencoded",
    "Cookie":"experimentation_subject_id=IjBiNDgxZTMz83jf93h923hdijnogj38ehf29jY2NkMzFkZTI5YiI%3D--29bff0b0d99u21ih891dhisahfn81hr9osij21; PHPSESSID=r0u3b49iud3233ge28h8efi3jhedfiu4u"
}

#response=requests.get(url,headers=headers,cookies=cookie_dict)
#print(response)

#文件夹中的地址是用 \ 来分隔不同文件夹的,而Python识别地址时只能识别用 / 分隔的地址。
with open(r'D:\xurikeke.hi\桌面\group.txt','r+') as file:
    for line in file:
        payload={"groups_name":line.strip("\n"),"groups_description":"","submit":"提交"}
        #这里用data是因为"Content-Type":"application/x-www-form-urlencoded",具体看上面的参考链接
        response=requests.post("http://svn.xurikeji.net:8088/admin/group/create",data=payload,headers=headers)
        print("%s 用户组已被成功添加!" % line.strip("\n"))
        print("============================================================================================")
        time.sleep(3)
print("所有用户组添加完成!")
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值