使用Telethon批量下载telegram中任意群组/频道文件
Go to file
2023-08-06 19:32:54 +08:00
tools 优化上传(非视频文件不再报错) 2023-08-06 17:10:29 +08:00
.gitignore 环境配置相关 2023-08-06 19:32:54 +08:00
config.example.json 优化下载范围选择,增加代理端口设置 2022-10-24 22:41:12 +08:00
LICENSE Initial commit 2022-10-23 10:30:28 +08:00
main.py 支持命令行参数 2023-08-06 19:30:45 +08:00
README.md 丰富教程 2023-02-03 19:55:59 +08:00
requirements.txt 编写教程 2023-02-01 22:03:29 +08:00

teledown

使用Telethon批量下载telegram中任意群组/频道文件

使用教程

  1. 下载本项目
  2. 将config.example.json重命名为config.json
  3. 填写配置文件 教程
  4. 安装依赖 教程

配置文件解释

{
  "api_id": "参见下方教程",
  "api_hash": "参见下方教程",
  "save_path": "保存路径",
  "proxy_port": "代理端口,不需要则直接删除此项",
  "phone": "手机号",
  "bot_token": "机器人登录配置"
}

获取api_id和api_hash

https://www.jianshu.com/p/3d047c7516cf

依赖安装教程

执行pip3 install -r requirements.txt

注意事项

  1. 首次使用时先执行main.py选择功能1“查看所有频道”此操作是为了将频道信息缓存到本地。所以当你需要下载新加入的频道时也请务必先更新缓存。
  2. 如果你想下载速度更快,pip3 install cryptg
  3. 本程序仅支持python3

常见错误

  1. AttributeError: module 'socks' has no attribute 'SOCKS5'请确认安装了PySocks
  2. Server sent a very new message with ID xxxxxxxxxxxxxxxxxxx, ignoring这个问题是由于当前设备时间与telegram服务器时间差距过大大于30s。 解决办法:服务器时间戳是xxxxxxxxxxxxxxxxxxx >> 32请将本地时间戳修改到与服务器时间戳相差30s以内
  3. Could not find the input entity for PeerUser,参见注意事项第一点