Skip to content

Commit

Permalink
Bump version v0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Fazzani committed Dec 23, 2024
1 parent ebd22b5 commit f72ea38
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 8 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
include readme.md
include LICENSE
include requirements.txt
25 changes: 18 additions & 7 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,29 @@ The full filter list is located [here](pliptv/pl_filters)

All filters are configurable by a configuration file. An example of this file is located [here](data/config_playlist.yaml)

## Examples
## Setup

```bash
pip install xplcli
# or docker version
docker run --rm -e "PL=$PL" -v "${PWD}:/data" synker/xpl:latest
# environment variables to define

export AZURE_SYNKER_BLOB_CONTAINER=playlists
export AZURE_SYNKER_BLOB_CNX_STRING=DefaultEndpointsProtocol=https;AccountName={{ACCOUNT}}
export BITLY_ACCESS_TOKEN={{TOKEN}}
export PL=http://www.host-iptv.com/get.php?username={{xxxxxx}}&password={{xxxxxx}}&type=m3u_plus&output=ts
export STRM_OUTPUT_PATH=/mnt/streams
export CONFIG_FILE_PATH=/home/config.yml
export OUTPUT_PATH=/home

pip install --no-input xplcli
# crontab with conda
conda create -n xpl python=3.9
0 5 * * 4 conda activate xpl && pip install --upgrade --no-input xplcli && xpl --export --auto --vod
```

## TODO

- [ ] Enhancing reporting by filter
- [ ] Enhancing tests
- [ ] Enhancing playlist export (gist, azure, etc...)
- [ ] improve reporting by filter
- [ ] improve tests
- [ ] improve playlist export (gist, azure, etc...)
- [ ] Ability to execute an external (remote) filter from url
- [ ] add github action pipeline for code analysis (PR)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setuptools.setup(
name="xplcli",
version="0.1.4",
version="0.1.6",
author="Heni FAZZANI",
author_email="[email protected]",
description="Simple extensible m3u playlist manager cli",
Expand Down

0 comments on commit f72ea38

Please sign in to comment.