├── Barrage ├── Huya.py ├── Tiktok.py ├── __init__.py └── blivedm │ ├── __init__.py │ ├── client.py │ ├── handlers.py │ └── models │ ├── __init__.py │ └── pb.py ├── Dictionary ├── Tiktok │ ├── Gift.py │ └── __init__.py └── __init__.py ├── GPT ├── Chat.py └── __init__.py ├── Model ├── Huya │ ├── BarrageMessage.py │ └── __init__.py ├── TikTok │ ├── BarrageMessage.py │ └── __init__.py └── __init__.py ├── Readme ├── readme_bilibili.md ├── readme_huya.md └── readme_tiktok.md ├── Resources └── Images │ ├── ChatGPT_logo.svg.png │ ├── ai_logo.png │ ├── bilibili_default_avatar.jpg │ ├── download.png │ ├── huya_default_avatar.png │ ├── logo.png │ └── tiktok_default_avatar.jfif ├── Screenshots ├── Pictures │ ├── bilibili.png │ └── huya.png └── Videos │ ├── bilibili.mp4 │ └── huya.mp4 ├── ThirdLib ├── huya_barrage │ ├── app.js │ ├── index.js │ ├── lib.js │ ├── package-lock.json │ └── package.json ├── huya_barrage_bravo │ ├── app.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── index.js │ │ └── lib │ │ │ ├── GUESS.js │ │ │ ├── HUYA.js │ │ │ ├── Taf.js │ │ │ └── TafMx.js │ └── yarn.lock └── tiktok_barrage_nodejs │ ├── WSLINK.exe │ ├── ak.html │ ├── app.js │ ├── client.js │ ├── index.js │ ├── made │ ├── d02.js │ ├── d03.js │ ├── dgiftcount.js │ ├── gitfcount │ │ ├── EasyNet.ec │ │ ├── HPSocket4C.dll │ │ ├── HP_Socket-20220501-无DLL.ec │ │ ├── Ws_WebServer[公众版].ec │ │ ├── config.ini │ │ ├── tft_dianzicheng.bak │ │ ├── tft_dianzicheng.e │ │ ├── zyJson1.3.ec │ │ ├── 模拟消息发送.html │ │ └── 精易模块v7.35.ec │ ├── room.css │ └── room.js │ ├── package-lock.json │ ├── package.json │ ├── template │ ├── ak.html │ ├── gift.json │ ├── giftinfo.html │ ├── gitlist.json │ ├── gitsmal.json │ └── message.json │ └── test │ └── index.js ├── Utils ├── Common.py ├── Config.py └── __init__.py ├── Windows ├── UI │ ├── MainWindow │ │ ├── MainWindow.py │ │ ├── MainWindow.qrc │ │ ├── MainWindow_UI.py │ │ ├── MainWindow_UI.ui │ │ ├── MainWindow_rc.py │ │ └── __init__.py │ └── __init__.py └── __init__.py ├── bilibili.py ├── config.example.json ├── huya.py ├── readme.md ├── readme_en.md ├── requirements.txt └── tiktok.py /Barrage/Huya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Barrage/Huya.py -------------------------------------------------------------------------------- /Barrage/Tiktok.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Barrage/Tiktok.py -------------------------------------------------------------------------------- /Barrage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Barrage/__init__.py -------------------------------------------------------------------------------- /Barrage/blivedm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Barrage/blivedm/__init__.py -------------------------------------------------------------------------------- /Barrage/blivedm/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Barrage/blivedm/client.py -------------------------------------------------------------------------------- /Barrage/blivedm/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Barrage/blivedm/handlers.py -------------------------------------------------------------------------------- /Barrage/blivedm/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Barrage/blivedm/models/__init__.py -------------------------------------------------------------------------------- /Barrage/blivedm/models/pb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Barrage/blivedm/models/pb.py -------------------------------------------------------------------------------- /Dictionary/Tiktok/Gift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Dictionary/Tiktok/Gift.py -------------------------------------------------------------------------------- /Dictionary/Tiktok/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Dictionary/Tiktok/__init__.py -------------------------------------------------------------------------------- /Dictionary/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GPT/Chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/GPT/Chat.py -------------------------------------------------------------------------------- /GPT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/GPT/__init__.py -------------------------------------------------------------------------------- /Model/Huya/BarrageMessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Model/Huya/BarrageMessage.py -------------------------------------------------------------------------------- /Model/Huya/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Model/Huya/__init__.py -------------------------------------------------------------------------------- /Model/TikTok/BarrageMessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Model/TikTok/BarrageMessage.py -------------------------------------------------------------------------------- /Model/TikTok/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Model/TikTok/__init__.py -------------------------------------------------------------------------------- /Model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Readme/readme_bilibili.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Readme/readme_bilibili.md -------------------------------------------------------------------------------- /Readme/readme_huya.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Readme/readme_huya.md -------------------------------------------------------------------------------- /Readme/readme_tiktok.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Readme/readme_tiktok.md -------------------------------------------------------------------------------- /Resources/Images/ChatGPT_logo.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Resources/Images/ChatGPT_logo.svg.png -------------------------------------------------------------------------------- /Resources/Images/ai_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Resources/Images/ai_logo.png -------------------------------------------------------------------------------- /Resources/Images/bilibili_default_avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Resources/Images/bilibili_default_avatar.jpg -------------------------------------------------------------------------------- /Resources/Images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Resources/Images/download.png -------------------------------------------------------------------------------- /Resources/Images/huya_default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Resources/Images/huya_default_avatar.png -------------------------------------------------------------------------------- /Resources/Images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Resources/Images/logo.png -------------------------------------------------------------------------------- /Resources/Images/tiktok_default_avatar.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Resources/Images/tiktok_default_avatar.jfif -------------------------------------------------------------------------------- /Screenshots/Pictures/bilibili.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Screenshots/Pictures/bilibili.png -------------------------------------------------------------------------------- /Screenshots/Pictures/huya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Screenshots/Pictures/huya.png -------------------------------------------------------------------------------- /Screenshots/Videos/bilibili.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Screenshots/Videos/bilibili.mp4 -------------------------------------------------------------------------------- /Screenshots/Videos/huya.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Screenshots/Videos/huya.mp4 -------------------------------------------------------------------------------- /ThirdLib/huya_barrage/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/huya_barrage/app.js -------------------------------------------------------------------------------- /ThirdLib/huya_barrage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/huya_barrage/index.js -------------------------------------------------------------------------------- /ThirdLib/huya_barrage/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/huya_barrage/lib.js -------------------------------------------------------------------------------- /ThirdLib/huya_barrage/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/huya_barrage/package-lock.json -------------------------------------------------------------------------------- /ThirdLib/huya_barrage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/huya_barrage/package.json -------------------------------------------------------------------------------- /ThirdLib/huya_barrage_bravo/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/huya_barrage_bravo/app.js -------------------------------------------------------------------------------- /ThirdLib/huya_barrage_bravo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/huya_barrage_bravo/package-lock.json -------------------------------------------------------------------------------- /ThirdLib/huya_barrage_bravo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/huya_barrage_bravo/package.json -------------------------------------------------------------------------------- /ThirdLib/huya_barrage_bravo/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/huya_barrage_bravo/src/index.js -------------------------------------------------------------------------------- /ThirdLib/huya_barrage_bravo/src/lib/GUESS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/huya_barrage_bravo/src/lib/GUESS.js -------------------------------------------------------------------------------- /ThirdLib/huya_barrage_bravo/src/lib/HUYA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/huya_barrage_bravo/src/lib/HUYA.js -------------------------------------------------------------------------------- /ThirdLib/huya_barrage_bravo/src/lib/Taf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/huya_barrage_bravo/src/lib/Taf.js -------------------------------------------------------------------------------- /ThirdLib/huya_barrage_bravo/src/lib/TafMx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/huya_barrage_bravo/src/lib/TafMx.js -------------------------------------------------------------------------------- /ThirdLib/huya_barrage_bravo/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/huya_barrage_bravo/yarn.lock -------------------------------------------------------------------------------- /ThirdLib/tiktok_barrage_nodejs/WSLINK.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/tiktok_barrage_nodejs/WSLINK.exe -------------------------------------------------------------------------------- /ThirdLib/tiktok_barrage_nodejs/ak.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/tiktok_barrage_nodejs/ak.html -------------------------------------------------------------------------------- /ThirdLib/tiktok_barrage_nodejs/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/tiktok_barrage_nodejs/app.js -------------------------------------------------------------------------------- /ThirdLib/tiktok_barrage_nodejs/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/tiktok_barrage_nodejs/client.js -------------------------------------------------------------------------------- /ThirdLib/tiktok_barrage_nodejs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/tiktok_barrage_nodejs/index.js -------------------------------------------------------------------------------- /ThirdLib/tiktok_barrage_nodejs/made/d02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/tiktok_barrage_nodejs/made/d02.js -------------------------------------------------------------------------------- /ThirdLib/tiktok_barrage_nodejs/made/d03.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/tiktok_barrage_nodejs/made/d03.js -------------------------------------------------------------------------------- /ThirdLib/tiktok_barrage_nodejs/made/dgiftcount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/tiktok_barrage_nodejs/made/dgiftcount.js -------------------------------------------------------------------------------- /ThirdLib/tiktok_barrage_nodejs/made/gitfcount/EasyNet.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/tiktok_barrage_nodejs/made/gitfcount/EasyNet.ec -------------------------------------------------------------------------------- /ThirdLib/tiktok_barrage_nodejs/made/gitfcount/HPSocket4C.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/tiktok_barrage_nodejs/made/gitfcount/HPSocket4C.dll -------------------------------------------------------------------------------- /ThirdLib/tiktok_barrage_nodejs/made/gitfcount/HP_Socket-20220501-无DLL.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/tiktok_barrage_nodejs/made/gitfcount/HP_Socket-20220501-无DLL.ec -------------------------------------------------------------------------------- /ThirdLib/tiktok_barrage_nodejs/made/gitfcount/Ws_WebServer[公众版].ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/tiktok_barrage_nodejs/made/gitfcount/Ws_WebServer[公众版].ec -------------------------------------------------------------------------------- /ThirdLib/tiktok_barrage_nodejs/made/gitfcount/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/tiktok_barrage_nodejs/made/gitfcount/config.ini -------------------------------------------------------------------------------- /ThirdLib/tiktok_barrage_nodejs/made/gitfcount/tft_dianzicheng.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/tiktok_barrage_nodejs/made/gitfcount/tft_dianzicheng.bak -------------------------------------------------------------------------------- /ThirdLib/tiktok_barrage_nodejs/made/gitfcount/tft_dianzicheng.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/tiktok_barrage_nodejs/made/gitfcount/tft_dianzicheng.e -------------------------------------------------------------------------------- /ThirdLib/tiktok_barrage_nodejs/made/gitfcount/zyJson1.3.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/tiktok_barrage_nodejs/made/gitfcount/zyJson1.3.ec -------------------------------------------------------------------------------- /ThirdLib/tiktok_barrage_nodejs/made/gitfcount/模拟消息发送.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/tiktok_barrage_nodejs/made/gitfcount/模拟消息发送.html -------------------------------------------------------------------------------- /ThirdLib/tiktok_barrage_nodejs/made/gitfcount/精易模块v7.35.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/tiktok_barrage_nodejs/made/gitfcount/精易模块v7.35.ec -------------------------------------------------------------------------------- /ThirdLib/tiktok_barrage_nodejs/made/room.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/tiktok_barrage_nodejs/made/room.css -------------------------------------------------------------------------------- /ThirdLib/tiktok_barrage_nodejs/made/room.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/tiktok_barrage_nodejs/made/room.js -------------------------------------------------------------------------------- /ThirdLib/tiktok_barrage_nodejs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/tiktok_barrage_nodejs/package-lock.json -------------------------------------------------------------------------------- /ThirdLib/tiktok_barrage_nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/tiktok_barrage_nodejs/package.json -------------------------------------------------------------------------------- /ThirdLib/tiktok_barrage_nodejs/template/ak.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/tiktok_barrage_nodejs/template/ak.html -------------------------------------------------------------------------------- /ThirdLib/tiktok_barrage_nodejs/template/gift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/tiktok_barrage_nodejs/template/gift.json -------------------------------------------------------------------------------- /ThirdLib/tiktok_barrage_nodejs/template/giftinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/tiktok_barrage_nodejs/template/giftinfo.html -------------------------------------------------------------------------------- /ThirdLib/tiktok_barrage_nodejs/template/gitlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/tiktok_barrage_nodejs/template/gitlist.json -------------------------------------------------------------------------------- /ThirdLib/tiktok_barrage_nodejs/template/gitsmal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/tiktok_barrage_nodejs/template/gitsmal.json -------------------------------------------------------------------------------- /ThirdLib/tiktok_barrage_nodejs/template/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/tiktok_barrage_nodejs/template/message.json -------------------------------------------------------------------------------- /ThirdLib/tiktok_barrage_nodejs/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/ThirdLib/tiktok_barrage_nodejs/test/index.js -------------------------------------------------------------------------------- /Utils/Common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Utils/Common.py -------------------------------------------------------------------------------- /Utils/Config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Utils/Config.py -------------------------------------------------------------------------------- /Utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Utils/__init__.py -------------------------------------------------------------------------------- /Windows/UI/MainWindow/MainWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Windows/UI/MainWindow/MainWindow.py -------------------------------------------------------------------------------- /Windows/UI/MainWindow/MainWindow.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Windows/UI/MainWindow/MainWindow.qrc -------------------------------------------------------------------------------- /Windows/UI/MainWindow/MainWindow_UI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Windows/UI/MainWindow/MainWindow_UI.py -------------------------------------------------------------------------------- /Windows/UI/MainWindow/MainWindow_UI.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Windows/UI/MainWindow/MainWindow_UI.ui -------------------------------------------------------------------------------- /Windows/UI/MainWindow/MainWindow_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Windows/UI/MainWindow/MainWindow_rc.py -------------------------------------------------------------------------------- /Windows/UI/MainWindow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Windows/UI/MainWindow/__init__.py -------------------------------------------------------------------------------- /Windows/UI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/Windows/UI/__init__.py -------------------------------------------------------------------------------- /Windows/__init__.py: -------------------------------------------------------------------------------- 1 | from .UI import MainWindowUI 2 | -------------------------------------------------------------------------------- /bilibili.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/bilibili.py -------------------------------------------------------------------------------- /config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/config.example.json -------------------------------------------------------------------------------- /huya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/huya.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/readme.md -------------------------------------------------------------------------------- /readme_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/readme_en.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/requirements.txt -------------------------------------------------------------------------------- /tiktok.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwaggyMacro/BarrageGPT/HEAD/tiktok.py --------------------------------------------------------------------------------