admin的头像-闪狐博客
管理员
这家伙很懒,什么都没有写...
python爬取西红柿小说-闪狐博客

python爬取西红柿小说

import os import re import requests import time from os import remove import aiofiles from aiohttp import ClientSession, ClientTimeout import asyncio from colorama import init from...
7个月前
0447
python 爬取某个小说网站-闪狐博客

python 爬取某个小说网站

import os import json import requests from urllib.parse import urljoin from bs4 import BeautifulSoup import re # 定义分类列表 bookcat = [ 'xuanhuan', 'xianxia', 'dushi', 'lishi', '...
7个月前
0378
python 爬取某个听书网站-闪狐博客

python 爬取某个听书网站

 bookcode.txt下载txt文件13.2K # 小说信息接口 http://www.6yueting.com/web/index/xsDetail?code=802f1082 # 小说章节接口 http://www.6yueting.com/web/index/xsListdetail?code=802f1082&...
7个月前
04415
tp6 读取加密文件里面函数名称-闪狐博客

tp6 读取加密文件里面函数名称

public function code() { /* ---------- 1. 只跑一次 ---------- */ if (!empty($GLOBALS['_dumped'])) { return; } $GLOBALS['_dumped'] = true; /* ---------- 2. 准备日志文件 ---------- *...
3个月前
0279
提取编译后的cocos ts文件-闪狐博客

提取编译后的cocos ts文件

const fs = require('fs'); const path = require('path'); // 读取压缩文件 const inputFile = path.join(__dirname, 'assets/main/index.ee639.js'); const outputDir = path.join(__dirname,...
1个月前
04515
python读取so文件输出到text-闪狐博客

python读取so文件输出到text

import osimport sysimport redef extract_strings(binary_data):    '''从二进制数据中提取可打印的字符串'''    # 使用正则表达式匹配至少4个连续的可打印字符    strings = re.findall...
35天前
0408
python爬虫-闪狐博客

python爬虫

import requests import json import time from typing import Dict, List, Any class VideoScraper: def __init__(self): # 微信环境请求头 - 与test_categories.py完全相同 self.headers = { ...
23天前
03814
新版微信小程序反编译-闪狐博客

新版微信小程序反编译

1:新版本的微信小程序的放置的位置是 C:\Users\Administrator\AppData\Roaming\Tencent\xwechat\radium 2:下载解码工具 UnpackMiniApp
前天
0505