init: 初始化

This commit is contained in:
amtoaer
2023-11-21 01:39:10 +08:00
commit 087d2d256b
7 changed files with 1507 additions and 0 deletions

12
main.py Normal file
View File

@@ -0,0 +1,12 @@
import asyncio
from bilibili_api import favorite_list
async def main() -> None:
result = await favorite_list.get_video_favorite_list(9183758)
print(result)
if __name__ == "__main__":
asyncio.get_event_loop().run_until_complete(main())