https://github.com/hellokuls/bilibilidownload
bilibilidownload- B 站视频下载
https://github.com/hellokuls/bilibilidownload
Last synced: about 1 month ago
JSON representation
bilibilidownload- B 站视频下载
- Host: GitHub
- URL: https://github.com/hellokuls/bilibilidownload
- Owner: hellokuls
- Created: 2023-05-25T02:12:48.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-05-25T03:43:06.000Z (almost 2 years ago)
- Last Synced: 2024-06-14T13:46:38.487Z (10 months ago)
- Language: Python
- Homepage:
- Size: 34.6 MB
- Stars: 16
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-bilibili-extra - Bilibilidownload - B 站视频下载.  (下载工具 / 直播脚本)
README
# Bilibilidownload
一个简易的下载 B 站视频的 Web 程序,输入 BV 号可获取到视频列表,点击即可进行下载。
在线演示:http://kuls.one:7000/
## 页面截图



## 技术栈
- Python3
- Django
- layui
- 前后端不分离## 本地部署
```bash
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple -r requirement.txt
``````bash
python manage.py runserver 7000```
## docker 部署
```bash
# 拉取
git clone https://github.com/hellokuls/bilibilidownload.git# 进入到项目中
docker build -t bili:v1 .
docker run -d -p 7000:7000 --name bili_docker bili:v1
# 记得防火墙设置端口 7000 开放
```