-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsmart_dl.py
More file actions
25 lines (21 loc) · 2.2 KB
/
Copy pathsmart_dl.py
File metadata and controls
25 lines (21 loc) · 2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# ┌─────────────────────────────────────────────────────────────┐
# │ ░██████╗███╗░░░███╗░█████╗░██████╗░████████╗██████╗░██╗░░ │
# │ ██╔════╝████╗░████║██╔══██╗██╔══██╗╚══██╔══╝██╔══██╗██║░░ │
# │ ╚█████╗░██╔████╔██║███████║██████╔╝░░░██║░░░██║░░██║██║░░ │
# │ ░╚═══██╗██║╚██╔╝██║██╔══██║██╔══██╗░░░██║░░░██║░░██║██║░░ │
# │ ██████╔╝██║░╚═╝░██║██║░░██║██║░░██║░░░██║░░░██████╔╝█████╗ │
# │ ╚═════╝░╚═╝░░░░░╚═╝╚═╝░░╚═╝╚═╝░░╚═╝░░░╚═╝░░░╚═════╝░╚════╝ │
# ├─────────────────────────────────────────────────────────────┤
# │ author ── Hellch!ef · if u know u know │
# │ built ── 2026-04-09 · Tehran, IR │
# │ stack ── yt-dlp · rich · requests │
# │ motto ── "bad connection? hold my retry loop." │
# └─────────────────────────────────────────────────────────────┘
"""SmartDL — Resilient media downloader. Run this file directly or use `python -m smart_dl`."""
from smart_dl import ensure_deps
ensure_deps()
from smart_dl.main import main
if __name__ == "__main__":
main()