🚸 Select download path

This commit is contained in:
zhbaor 2023-03-04 18:18:39 +08:00
parent afc9c112cb
commit 3b5a998aaa
7 changed files with 303 additions and 18 deletions

10
main.py Executable file
View file

@ -0,0 +1,10 @@
#!/usr/bin/env python3
import webview
from backend import app
if __name__ == "__main__":
# Create a standard webview window
window = webview.create_window(
"badl - BiliBili Audio Downloader", app, width=500, height=700
)
webview.start()