feat: 实现基本的下载功能

This commit is contained in:
amtoaer
2023-11-22 01:11:22 +08:00
parent 8c451a5e8c
commit 6b41229f95
3 changed files with 102 additions and 5 deletions
+3 -5
View File
@@ -1,12 +1,10 @@
import asyncio
from bilibili_api import favorite_list
from processor import process
async def main() -> None:
result = await favorite_list.get_video_favorite_list(9183758)
print(result)
await process()
if __name__ == "__main__":
asyncio.get_event_loop().run_until_complete(main())
asyncio.run(main())