tvtui 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tvtui-1.0.0/CHANGELOG.md +25 -0
- tvtui-1.0.0/LICENSE +21 -0
- tvtui-1.0.0/MANIFEST.in +4 -0
- tvtui-1.0.0/PKG-INFO +109 -0
- tvtui-1.0.0/README.md +92 -0
- tvtui-1.0.0/assets/logo.png +0 -0
- tvtui-1.0.0/assets/terminal-iptv.png +0 -0
- tvtui-1.0.0/pyproject.toml +29 -0
- tvtui-1.0.0/setup.cfg +4 -0
- tvtui-1.0.0/tvtui.egg-info/PKG-INFO +109 -0
- tvtui-1.0.0/tvtui.egg-info/SOURCES.txt +13 -0
- tvtui-1.0.0/tvtui.egg-info/dependency_links.txt +1 -0
- tvtui-1.0.0/tvtui.egg-info/entry_points.txt +2 -0
- tvtui-1.0.0/tvtui.egg-info/top_level.txt +1 -0
- tvtui-1.0.0/tvtui.py +1253 -0
tvtui-1.0.0/CHANGELOG.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 1.0.0 - 2026-01-10
|
|
4
|
+
|
|
5
|
+
- TBD
|
|
6
|
+
|
|
7
|
+
## 1.0.0 - 2026-01-10
|
|
8
|
+
|
|
9
|
+
- TBD
|
|
10
|
+
|
|
11
|
+
## 1.0.0 - 2026-01-10
|
|
12
|
+
|
|
13
|
+
- TBD
|
|
14
|
+
|
|
15
|
+
## 1.0.0 - 2026-01-10
|
|
16
|
+
|
|
17
|
+
- TBD
|
|
18
|
+
|
|
19
|
+
## 1.0.0 - 2026-01-10
|
|
20
|
+
|
|
21
|
+
- TBD
|
|
22
|
+
|
|
23
|
+
## 1.0.0
|
|
24
|
+
|
|
25
|
+
- Initial public release.
|
tvtui-1.0.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 tvTUI Contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
tvtui-1.0.0/MANIFEST.in
ADDED
tvtui-1.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tvtui
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Terminal UI for IPTV with EPG browsing
|
|
5
|
+
Author: tvTUI Contributors
|
|
6
|
+
License: MIT
|
|
7
|
+
Keywords: tui,iptv,epg,terminal
|
|
8
|
+
Classifier: Environment :: Console
|
|
9
|
+
Classifier: Intended Audience :: End Users/Desktop
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
13
|
+
Classifier: Topic :: Multimedia :: Video
|
|
14
|
+
Classifier: Topic :: Utilities
|
|
15
|
+
Requires-Python: >=3.9
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# tvTUI
|
|
19
|
+
|
|
20
|
+

|
|
21
|
+
|
|
22
|
+
tvTUI is a fast terminal UI for browsing IPTV channels with EPG (now/next)
|
|
23
|
+
information, favorites, categories, and quick search.
|
|
24
|
+
|
|
25
|
+
## Features
|
|
26
|
+
|
|
27
|
+
- Search-as-you-type channel list with category tags.
|
|
28
|
+
- EPG preview with now/next details and descriptions.
|
|
29
|
+
- Favorites and history.
|
|
30
|
+
- Mouse support (scroll, click, double-click).
|
|
31
|
+
- Configurable player and subtitle defaults.
|
|
32
|
+
|
|
33
|
+
## Install (pipx)
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
pipx install .
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
For a published package:
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
pipx install tvtui
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Run
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
tvtui
|
|
49
|
+
tvtui -f
|
|
50
|
+
tvtui --categories
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
## Keybindings
|
|
54
|
+
|
|
55
|
+
- `Enter` play selected channel
|
|
56
|
+
- `f` toggle favorites view
|
|
57
|
+
- `F` add/remove favorite
|
|
58
|
+
- `c` categories
|
|
59
|
+
- `s` sort (default/name/category)
|
|
60
|
+
- `r` refresh channels/EPG
|
|
61
|
+
- `/` search mode
|
|
62
|
+
- `Left`/`Right` cycle description
|
|
63
|
+
- `t` subtitles on/off (next playback)
|
|
64
|
+
- `h` toggle help panel
|
|
65
|
+
- `q` quit
|
|
66
|
+
|
|
67
|
+
Mouse:
|
|
68
|
+
|
|
69
|
+
- Wheel scroll
|
|
70
|
+
- Click select
|
|
71
|
+
- Double-click play
|
|
72
|
+
|
|
73
|
+
## Configuration
|
|
74
|
+
|
|
75
|
+
Config file defaults to `~/.config/tvtui/config.json`.
|
|
76
|
+
|
|
77
|
+
```json
|
|
78
|
+
{
|
|
79
|
+
"epg_url": "https://raw.githubusercontent.com/doms9/iptv/refs/heads/default/EPG/TV.xml",
|
|
80
|
+
"source_url": "https://s.id/d9Base",
|
|
81
|
+
"streamed_base": "https://raw.githubusercontent.com/doms9/iptv/default/M3U8",
|
|
82
|
+
"show_help_panel": true,
|
|
83
|
+
"use_emoji_tags": false,
|
|
84
|
+
"player": "auto",
|
|
85
|
+
"player_args": ["--ontop"],
|
|
86
|
+
"custom_command": ["myplayer", "--flag"],
|
|
87
|
+
"custom_subs_on_args": ["--subs=on"],
|
|
88
|
+
"custom_subs_off_args": ["--subs=off"],
|
|
89
|
+
"mpv_subs_on_args": ["--sub-visibility=yes", "--sid=auto"],
|
|
90
|
+
"mpv_subs_off_args": ["--sub-visibility=no", "--sid=no"],
|
|
91
|
+
"vlc_sub_track": 1,
|
|
92
|
+
"subs_enabled_default": false
|
|
93
|
+
}
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
## Requirements
|
|
97
|
+
|
|
98
|
+
- Python 3.9+
|
|
99
|
+
- `mpv` or `vlc` for playback
|
|
100
|
+
|
|
101
|
+
## Disclaimer
|
|
102
|
+
|
|
103
|
+
The default channel and EPG sources are provided for inspiration and testing.
|
|
104
|
+
tvTUI is not affiliated with, endorsed by, or sponsored by those sources or
|
|
105
|
+
their authors.
|
|
106
|
+
|
|
107
|
+
## License
|
|
108
|
+
|
|
109
|
+
MIT. See `LICENSE`.
|
tvtui-1.0.0/README.md
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
# tvTUI
|
|
2
|
+
|
|
3
|
+

|
|
4
|
+
|
|
5
|
+
tvTUI is a fast terminal UI for browsing IPTV channels with EPG (now/next)
|
|
6
|
+
information, favorites, categories, and quick search.
|
|
7
|
+
|
|
8
|
+
## Features
|
|
9
|
+
|
|
10
|
+
- Search-as-you-type channel list with category tags.
|
|
11
|
+
- EPG preview with now/next details and descriptions.
|
|
12
|
+
- Favorites and history.
|
|
13
|
+
- Mouse support (scroll, click, double-click).
|
|
14
|
+
- Configurable player and subtitle defaults.
|
|
15
|
+
|
|
16
|
+
## Install (pipx)
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
pipx install .
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
For a published package:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
pipx install tvtui
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Run
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
tvtui
|
|
32
|
+
tvtui -f
|
|
33
|
+
tvtui --categories
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Keybindings
|
|
37
|
+
|
|
38
|
+
- `Enter` play selected channel
|
|
39
|
+
- `f` toggle favorites view
|
|
40
|
+
- `F` add/remove favorite
|
|
41
|
+
- `c` categories
|
|
42
|
+
- `s` sort (default/name/category)
|
|
43
|
+
- `r` refresh channels/EPG
|
|
44
|
+
- `/` search mode
|
|
45
|
+
- `Left`/`Right` cycle description
|
|
46
|
+
- `t` subtitles on/off (next playback)
|
|
47
|
+
- `h` toggle help panel
|
|
48
|
+
- `q` quit
|
|
49
|
+
|
|
50
|
+
Mouse:
|
|
51
|
+
|
|
52
|
+
- Wheel scroll
|
|
53
|
+
- Click select
|
|
54
|
+
- Double-click play
|
|
55
|
+
|
|
56
|
+
## Configuration
|
|
57
|
+
|
|
58
|
+
Config file defaults to `~/.config/tvtui/config.json`.
|
|
59
|
+
|
|
60
|
+
```json
|
|
61
|
+
{
|
|
62
|
+
"epg_url": "https://raw.githubusercontent.com/doms9/iptv/refs/heads/default/EPG/TV.xml",
|
|
63
|
+
"source_url": "https://s.id/d9Base",
|
|
64
|
+
"streamed_base": "https://raw.githubusercontent.com/doms9/iptv/default/M3U8",
|
|
65
|
+
"show_help_panel": true,
|
|
66
|
+
"use_emoji_tags": false,
|
|
67
|
+
"player": "auto",
|
|
68
|
+
"player_args": ["--ontop"],
|
|
69
|
+
"custom_command": ["myplayer", "--flag"],
|
|
70
|
+
"custom_subs_on_args": ["--subs=on"],
|
|
71
|
+
"custom_subs_off_args": ["--subs=off"],
|
|
72
|
+
"mpv_subs_on_args": ["--sub-visibility=yes", "--sid=auto"],
|
|
73
|
+
"mpv_subs_off_args": ["--sub-visibility=no", "--sid=no"],
|
|
74
|
+
"vlc_sub_track": 1,
|
|
75
|
+
"subs_enabled_default": false
|
|
76
|
+
}
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
## Requirements
|
|
80
|
+
|
|
81
|
+
- Python 3.9+
|
|
82
|
+
- `mpv` or `vlc` for playback
|
|
83
|
+
|
|
84
|
+
## Disclaimer
|
|
85
|
+
|
|
86
|
+
The default channel and EPG sources are provided for inspiration and testing.
|
|
87
|
+
tvTUI is not affiliated with, endorsed by, or sponsored by those sources or
|
|
88
|
+
their authors.
|
|
89
|
+
|
|
90
|
+
## License
|
|
91
|
+
|
|
92
|
+
MIT. See `LICENSE`.
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "tvtui"
|
|
7
|
+
version = "1.0.0"
|
|
8
|
+
description = "Terminal UI for IPTV with EPG browsing"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "tvTUI Contributors" }]
|
|
13
|
+
keywords = ["tui", "iptv", "epg", "terminal"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Environment :: Console",
|
|
16
|
+
"Intended Audience :: End Users/Desktop",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
20
|
+
"Topic :: Multimedia :: Video",
|
|
21
|
+
"Topic :: Utilities",
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
[project.scripts]
|
|
25
|
+
tvtui = "tvtui:main"
|
|
26
|
+
|
|
27
|
+
[tool.setuptools]
|
|
28
|
+
py-modules = ["tvtui"]
|
|
29
|
+
license-files = []
|
tvtui-1.0.0/setup.cfg
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tvtui
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Terminal UI for IPTV with EPG browsing
|
|
5
|
+
Author: tvTUI Contributors
|
|
6
|
+
License: MIT
|
|
7
|
+
Keywords: tui,iptv,epg,terminal
|
|
8
|
+
Classifier: Environment :: Console
|
|
9
|
+
Classifier: Intended Audience :: End Users/Desktop
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
13
|
+
Classifier: Topic :: Multimedia :: Video
|
|
14
|
+
Classifier: Topic :: Utilities
|
|
15
|
+
Requires-Python: >=3.9
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# tvTUI
|
|
19
|
+
|
|
20
|
+

|
|
21
|
+
|
|
22
|
+
tvTUI is a fast terminal UI for browsing IPTV channels with EPG (now/next)
|
|
23
|
+
information, favorites, categories, and quick search.
|
|
24
|
+
|
|
25
|
+
## Features
|
|
26
|
+
|
|
27
|
+
- Search-as-you-type channel list with category tags.
|
|
28
|
+
- EPG preview with now/next details and descriptions.
|
|
29
|
+
- Favorites and history.
|
|
30
|
+
- Mouse support (scroll, click, double-click).
|
|
31
|
+
- Configurable player and subtitle defaults.
|
|
32
|
+
|
|
33
|
+
## Install (pipx)
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
pipx install .
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
For a published package:
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
pipx install tvtui
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Run
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
tvtui
|
|
49
|
+
tvtui -f
|
|
50
|
+
tvtui --categories
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
## Keybindings
|
|
54
|
+
|
|
55
|
+
- `Enter` play selected channel
|
|
56
|
+
- `f` toggle favorites view
|
|
57
|
+
- `F` add/remove favorite
|
|
58
|
+
- `c` categories
|
|
59
|
+
- `s` sort (default/name/category)
|
|
60
|
+
- `r` refresh channels/EPG
|
|
61
|
+
- `/` search mode
|
|
62
|
+
- `Left`/`Right` cycle description
|
|
63
|
+
- `t` subtitles on/off (next playback)
|
|
64
|
+
- `h` toggle help panel
|
|
65
|
+
- `q` quit
|
|
66
|
+
|
|
67
|
+
Mouse:
|
|
68
|
+
|
|
69
|
+
- Wheel scroll
|
|
70
|
+
- Click select
|
|
71
|
+
- Double-click play
|
|
72
|
+
|
|
73
|
+
## Configuration
|
|
74
|
+
|
|
75
|
+
Config file defaults to `~/.config/tvtui/config.json`.
|
|
76
|
+
|
|
77
|
+
```json
|
|
78
|
+
{
|
|
79
|
+
"epg_url": "https://raw.githubusercontent.com/doms9/iptv/refs/heads/default/EPG/TV.xml",
|
|
80
|
+
"source_url": "https://s.id/d9Base",
|
|
81
|
+
"streamed_base": "https://raw.githubusercontent.com/doms9/iptv/default/M3U8",
|
|
82
|
+
"show_help_panel": true,
|
|
83
|
+
"use_emoji_tags": false,
|
|
84
|
+
"player": "auto",
|
|
85
|
+
"player_args": ["--ontop"],
|
|
86
|
+
"custom_command": ["myplayer", "--flag"],
|
|
87
|
+
"custom_subs_on_args": ["--subs=on"],
|
|
88
|
+
"custom_subs_off_args": ["--subs=off"],
|
|
89
|
+
"mpv_subs_on_args": ["--sub-visibility=yes", "--sid=auto"],
|
|
90
|
+
"mpv_subs_off_args": ["--sub-visibility=no", "--sid=no"],
|
|
91
|
+
"vlc_sub_track": 1,
|
|
92
|
+
"subs_enabled_default": false
|
|
93
|
+
}
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
## Requirements
|
|
97
|
+
|
|
98
|
+
- Python 3.9+
|
|
99
|
+
- `mpv` or `vlc` for playback
|
|
100
|
+
|
|
101
|
+
## Disclaimer
|
|
102
|
+
|
|
103
|
+
The default channel and EPG sources are provided for inspiration and testing.
|
|
104
|
+
tvTUI is not affiliated with, endorsed by, or sponsored by those sources or
|
|
105
|
+
their authors.
|
|
106
|
+
|
|
107
|
+
## License
|
|
108
|
+
|
|
109
|
+
MIT. See `LICENSE`.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
CHANGELOG.md
|
|
2
|
+
LICENSE
|
|
3
|
+
MANIFEST.in
|
|
4
|
+
README.md
|
|
5
|
+
pyproject.toml
|
|
6
|
+
tvtui.py
|
|
7
|
+
assets/logo.png
|
|
8
|
+
assets/terminal-iptv.png
|
|
9
|
+
tvtui.egg-info/PKG-INFO
|
|
10
|
+
tvtui.egg-info/SOURCES.txt
|
|
11
|
+
tvtui.egg-info/dependency_links.txt
|
|
12
|
+
tvtui.egg-info/entry_points.txt
|
|
13
|
+
tvtui.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tvtui
|