mirror of
https://github.com/NohamR/OqeeRewind.git
synced 2026-01-10 08:08:20 +00:00
Improved code structure and docstrings in utils/input.py, updated imports for clarity, and enhanced validation error handling. Added pylint to the dev dependency group in pyproject.toml for code quality checks. Removed unused imports from main.py.
15 lines
368 B
Python
15 lines
368 B
Python
"""Main module for Oqee channel selection and stream management."""
|
|
|
|
from utils.input import (
|
|
stream_selection,
|
|
get_date_input,
|
|
)
|
|
|
|
if __name__ == "__main__":
|
|
try:
|
|
selections = stream_selection()
|
|
start_date, end_date = get_date_input()
|
|
|
|
except KeyboardInterrupt:
|
|
print("\n\nProgramme interrompu par l'utilisateur. Au revoir !")
|