From b5be627097e90cb22ce7295add2949b805062a54 Mon Sep 17 00:00:00 2001 From: cerberus Date: Sun, 7 Dec 2025 12:10:43 +0100 Subject: [PATCH] added textual-dev as dependency and initiated main.py --- README.md | 12 +++++++++++- requirements.txt | 3 +++ src/dl-tui/ytdlp-tui.py | 2 ++ src/dllib/__init__.py | 0 4 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 src/dllib/__init__.py diff --git a/README.md b/README.md index cb03980..fa0fffd 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,13 @@ # ytdlp-tui -A TUI wrapper for my yt-dlp commands \ No newline at end of file +A TUI wrapper for my yt-dlp commands + +This is a little tool to collect all my yt-dlp commands in one CLI app. +It aims to teach me how to write an TUI application in python. + +## Libaries used + +- pytest +- textual +- textual-dev (for command line development) + diff --git a/requirements.txt b/requirements.txt index e69de29..f3922b6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -0,0 +1,3 @@ +pytest +textual +textual-dev diff --git a/src/dl-tui/ytdlp-tui.py b/src/dl-tui/ytdlp-tui.py index e69de29..04250ee 100644 --- a/src/dl-tui/ytdlp-tui.py +++ b/src/dl-tui/ytdlp-tui.py @@ -0,0 +1,2 @@ +# from dllib.logger import logger + diff --git a/src/dllib/__init__.py b/src/dllib/__init__.py new file mode 100644 index 0000000..e69de29