文件预览

STRUCTURE.md

查看 Bilibili All In One 技能包中的文件内容。

文件内容

STRUCTURE.md

bilibili-all-in-one
├── skill.json              # Skill configuration
├── requirements.txt        # Python dependencies
├── main.py                 # Entry point
├── src/
│   ├── __init__.py
│   ├── auth.py             # Authentication & credential management
│   ├── hot_monitor.py      # Hot/trending video monitoring
│   ├── downloader.py       # Video downloading
│   ├── watcher.py          # Video watching & stats tracking
│   ├── subtitle.py         # Subtitle downloading & processing
│   ├── player.py           # Video playback & danmaku
│   ├── publisher.py        # Video uploading & publishing
│   └── utils.py            # Shared utilities
└── tests/
    └── __init__.py