欢迎光临 - 我的站长站,本站所有资源仅供学习与参考,禁止用于商业用途或从事违法行为!

python教程

  • python写的淘了个宝抢购小帮手

    使用方法1、运行此软件,复制链接到淘宝搜索框内搜索登录;2、手机淘宝分享需要抢购的链接;3、填入收获地址的行政区划代码,要抢购的商品SKUID,开始抢购的时间(13位时间戳);python代码import requests, re, time,execjs,randomimport urllib.parsefrom...

    1172年前
  • Python某度贴吧签到脚本V2云函数版

    Python某度贴吧签到脚本V2云函数版

    使用方法注册账号,过程略。网址:https://console.cloud.tencent.com/进入云函数控制台的函数服务:https://console.cloud.tencent.com/scf/index?rid=1单击“新建”如图(BDUSS及STOKEN获取见附录,粘...

  • iqiyi视频解析Python代码

    最新吾爱大佬分享的一段iqiyi视频解析Python代码,转载分享给大家参考。代码说明m3u8下载部分:pip install m3u8download-hecoter使用需要nodejs项目链接:https://github.com/hecoter/videoParse/tree/main/iqiyipython代码import requestsimport reimpo...

  • 基于百度API文字转语音Python示例代码

    准备工作1、首先需要去百度智能云注册账号,官网:https://cloud.baidu.com/2、登陆进入百度语音,领取免费资源3、创建应用,记下自己的 APIkey和 Secret Key写入代码对应的位置Python示例代码# coding=utf-8 import sysimport json # 保证兼容python2以及p...

  • python百度翻译爬虫

    import requestsimport rewhile 1 < 10: f = 0 url = "https://fanyi.baidu.com/sug" a = input("请输入要翻译的单词或句子:") head = { "User-Agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML,...

    2622年前
  • 获取Windows电脑WiFi密码Python脚本

    获取Windows电脑WiFi密码Python脚本方便获取电脑里存储过的所有WiFi密码,其原理是自动化"netsh wlan show profiles"的查询过程,后通过正则匹配获取# subprocess 模块允许我们启动一个新进程,并连接到它们的输入/输出/错误管道,从而获取返回值import sub...

  • python暴力破解压缩包密码脚本

    import rarfileimport zipfileimport py7zrc = 0a = 0print("本软件只支持 7z , zip , rar格式的压缩包")zd = input("请输入字典位置:")try: ozd = open(zd,"r",encoding="utf8").read().split("\n")except: print("字典读取失败"...

  • 监测腾讯云轻量服务器流量超标关机python脚本

    脚本介绍一款监测腾讯云轻量应用服务器流量包使用情况,并根据配置进行警告和关机的Python脚本。GitHub:https://github.com/XiaoXinYo/Tencent_Cloud_LightHouse_Server_Guardian脚本功能仅用于轻量级服务器1.自动检测流量包剩余,可设置使用比2.自动关...

  • Python爬取阿里云盘资源

    import requestsimport re class alipanso(object): def __init__(self, url, headers, params): self.url = url self.headers = headers self.params = params def get_html(self): response_html...

  • Python获取字符串字节数

    检查字符串占用的字节数。def byte_size(string): return(len(string.encode('utf-8')))byte_size(' ') # 4byte_size('Hello World') # 11

    632年前