PyXtream loads the xtream IPTV content from a provider server. Groups, Channels, Series are all organized in dictionaries. Season and Episodes are retrieved as needed. It includes functions for searching streams and downloading.
This library was originally designed to work with Hypnotix at https://github.com/linuxmint/hypnotix
Installing pyxtream is done using pip3.
pip3 install pyxtream
Optionally, to use the REST Api service, install also Flask via the following command or manually.
pip3 install pyxtream[REST_API]
Integrating in your application is simple. Initialization and loading of IPTV channels and groups is done with the following code.
from pyxtream import XTream
xt = XTream(servername, username, password, url)
if xt.authData != {}:
xt.load_iptv()
else:
print("Could not connect")
Once completed, all the data can be found in xTream.groups, xTream.channels, xTream.movies, xTream.series. Series do not contains the information for all the Seasons and Episodes. Those are loaded separately when needed by calling the following function using a Series object from xTream.series array of dictionaries.
xt.get_series_info_by_id(series_obj)
At this point, the series_obj will have both Seasons and Episodes populated.
If you have installed Flask, the REST Api will be turned ON automatically. At this point, there is no method to turn it off. Maybe in a future version.
Please modify the functional_test.py file with your provider information, then start the application.
python3 functional_test.py
The functional test will allow you to authenticate on startup, load and search streams. If Flask is installed, a simple website will be available at http://localhost:5000 to allow you to search and play streams.
So far there is no ready to use Transport Stream library for playing live stream.
-
This is the library to convert TS to MP4
-
More on above, but same problem. XMLHttpRequest waits until the whole TS file is completely loaded. It does not work for live video streams
-
This below will allow me to process chunks of data
Below are the classes used in the module. They are heavily influenced by the application Hypnotix.
- XTream.Channels
- XTream.Groups
- XTream.Episode
- XTream.Series
- XTream.Season
xTream.groups[{},{},...]
xTream.channels[{},{},...]
xTream.series[{},{},...]
xTream.movies[{},{},...]
- xTream.authenticate()
- xTream.load_iptv()
- XTream.get_series_info_by_id(get_series: dict)
- xTream.search_stream(keyword: str, ignore_case: bool = True, return_type: str = "LIST")
- xTream.download_video(stream_id: int)
- xTream.vodInfoByID(vod_id)
- xTream.liveEpgByStream(stream_id)
- xTream.liveEpgByStreamAndLimit(stream_id, limit)
- xTream.allLiveEpgByStream(stream_id)
- xTream.allEpg()
- Increment the MAJOR version when you make incompatible API changes.
- Increment the MINOR version when you add functionality in a backwards-compatible manner.
- Increment the PATCH version when you make backwards-compatible bug fixes.
Date | Version | Description |
---|---|---|
2023-02-06 | 0.6.0 | - Added methods to change connection header, to turn off reload timer, and to enable/disable Flask debug mode - Added a loop when attempting to connect to the provider - Cleaned up some print lines |
2021-08-19 | 0.5.0 | - Added method to gracefully handle connection errors - Added setting to not load adult content - Added sorting by stream name - Changed the handling of special characters in streams - Changed print formatting - Changed index.html webpage to HTML5 and Bootstrap 5 |
2021-06-19 | 0.4.0 | - Updated to follow PEP8 - Updated Docstrings |
2021-06-19 | 0.3.0 | - Added enhanced Home Page with Search Button and Player - Added case insensitive search - Improved handling of provider missing fields |
2021-06-11 | 0.2.1 | - Fixed bug in the way it reload from cache |
2021-06-08 | 0.2.0 | - Added searching - Added video download - Added REST Api - Fixed cache-path issue |
2021-06-05 | 0.1.2 | - Fixed Server Name |
2021-06-04 | 0.1.1 | - Updated README.md |
2021-06-04 | 0.1.0 | - Initial Release |