├── .github └── ISSUE_TEMPLATE │ ├── bug.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── docs ├── CONTRIBUTING.md └── SUPPORT.md ├── m3u-epg-editor-py3.py ├── requirements.txt ├── sample_input_args.json └── screenshots └── files-screenshot-2018-01-23-21.57.28.png /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bebo-dot-dev/m3u-epg-editor/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bebo-dot-dev/m3u-epg-editor/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bebo-dot-dev/m3u-epg-editor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bebo-dot-dev/m3u-epg-editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bebo-dot-dev/m3u-epg-editor/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bebo-dot-dev/m3u-epg-editor/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bebo-dot-dev/m3u-epg-editor/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bebo-dot-dev/m3u-epg-editor/HEAD/docs/SUPPORT.md -------------------------------------------------------------------------------- /m3u-epg-editor-py3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bebo-dot-dev/m3u-epg-editor/HEAD/m3u-epg-editor-py3.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bebo-dot-dev/m3u-epg-editor/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample_input_args.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bebo-dot-dev/m3u-epg-editor/HEAD/sample_input_args.json -------------------------------------------------------------------------------- /screenshots/files-screenshot-2018-01-23-21.57.28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bebo-dot-dev/m3u-epg-editor/HEAD/screenshots/files-screenshot-2018-01-23-21.57.28.png --------------------------------------------------------------------------------