foyou

Results 107 comments of foyou

看这个,get_file_by_path/get_folder_by_path 可以满足的你的需求。 > 阿里云盘不同于其他网盘或系统,其定位文件不是基于文件名(路径),而是通过 file_id,这才是唯一定位文件的方式,aligo 中提供了简便函数 get_file_by_path/get_folder_by_path,通过网盘路径获取文件对象,通过 其上的 file_id 属性即可获取所需文件标识。但不建议频繁使用此方法,因为内部是通过 get_file_list 遍历得到的。 为了整体效率考虑,大家按需使用 get_file_by_path/get_folder_by_path

其他端或其他地方做的更改,aligo 无法感知,如果做缓存会出现很多奇怪的问题

我尝试了几下,均提示 429(这应该是官方接口小bug) 官方大概率下线了这个接口 已在库中做出标示,后续更新版本将删除 https://github.com/foyoux/aligo/releases/tag/v6.2.0

添加 ”移动到密码箱“ 功能?

WSA is a very useful feature that I utilize for reverse analysis, it's very convenient, very nice, it can run all architecture so libraries, the speed beats any other Android...

@microsoftopensource @hamza-usmani @philnach WSA is very useful, please don't stop it!

铁子,用这里的示例代码, https://github.com/foyoux/docts/tree/main?tab=readme-ov-file#%E7%BF%BB%E8%AF%91-xlf-%E6%96%87%E4%BB%B6 这个不能称为一个库,只能叫一个脚本,里面代码很少,有问题自己看哈,反正是可以用

翻译 JSON 文件 ```py import json from pygtrans import Translate def load_json(file_path): with open(file_path, "r", encoding="utf-8") as file: return json.load(file) def extract_strings(data): strings = [] def _extract(_data): if isinstance(_data, dict):...