wuddz-m3u


Namewuddz-m3u JSON
Version 1.0.0 PyPI version JSON
download
home_pageNone
SummaryA Cool & Simple Python M3U Playlist Maker/Parser & XPSF To M3U Converter.
upload_time2024-05-07 16:29:14
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseMIT License Copyright (c) 2024 Wuddz-Devs Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords m3u media music playlist re regex video xspf
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <h1 align="center">Wuddz M3U Maker/Parser & XPSF To M3U Converter</h1>

## Description
 - A Cool & Simple Python M3U Playlist Maker/Parser & XPSF To M3U Playlist Converter.

## Prerequisites
 - Python : 3.7

## Installation
Install using [PyPI](https://pypi.org/project/wuddz-m3u):
```
pip install wuddz-m3u
```
Install locally by cloning or downloading and extracting the repo, then cd into 'dist' directory and execute:
```
pip install wuddz_m3u-1.0.0.tar.gz
```
Then to run it, execute the following in the terminal:
```
wudz-m3u
```

### Usage
Parse .m3u Playlist(s) In 'C:\TV' Directory For Billions Season 5 & Create Playlist(s):
```
wudz-m3u -f "C:\TV" -t "Billions S05" -p
```
Parse .m3u Playlist(s) In 'C:\TV' Directory For Group Title Series & Create Playlist(s):
```
wudz-m3u -f "C:\TV" -g "Series" -p
```
Create .m3u Playlist With Titles & Links In Specified Files (*Specify Titles,Links In That Order):
```
wudz-m3u -f "C:\Titles.txt,C:\Links.txt" -c
```
Create .m3u Playlist Series Title 'House' Starting From Season 2 Episode 1, Episodes Per Season 10 With Links In Links.txt File.
```
wudz-m3u -f "C:\Links.txt" -t House -s 2 -a 10
```
Convert 'file.xpsf' XPSF To 'file.m3u' M3U Playlist In C:\Users Directory
```
wudz-m3u -f "C:\file.xpsf" -v -o C:\Users
```

### Library
Convert '/home/ubuntu/Documents/file.xpsf' XPSF Playlist To M3U Playlist In '/home/ubuntu/Desktop' Directory.
```
>>> from wuddz_m3u import m3u
>>> m = m3u.M3U()
>>> m.__convert('/home/ubuntu/Documents/file.xpsf', '/home/ubuntu/Desktop')
```
Parse M3U Playlist File '/home/ubuntu/Documents/sub.m3u' For Series House Of Cards & Create Playlist In '/home/ubuntu/Desktop/TV' Directory.
```
>>> from wuddz_m3u import m3u
>>> playlist = '/home/ubuntu/Documents/sub.m3u'
>>> output = '/home/ubuntu/Desktop/TV'
>>> title = 'House Of Cards'
>>> m = m3u.M3U()
>>> m.__search(playlist,output,t=title)
```

## Contact Info:
 - Email:     wuddz_devs@protonmail.com
 - Github:    https://github.com/wuddz-devs
 - Telegram:  https://t.me/wuddz_devs
 - Youtube:   https://youtube.com/@wuddz-devs
 - Reddit:    https://reddit.com/user/wuddz-devs

### Buy Me A Coffee!!
![Alt Text](https://raw.githubusercontent.com/wuddz-devs/wuddz-devs/main/assets/eth.png)
 - ERC20:    0xbF4d5309Bc633d95B6a8fe60E6AF490F11ed2Dd1

![Alt Text](https://raw.githubusercontent.com/wuddz-devs/wuddz-devs/main/assets/btc.png)
 - BTC:      bc1qa7ssx0e4l6lytqawrnceu6hf5990x4r2uwuead

![Alt Text](https://raw.githubusercontent.com/wuddz-devs/wuddz-devs/main/assets/ltc.png)
 - LTC:      LdbcFiQVUMTfc9eJdc5Gw2nZgyo6WjKCj7

![Alt Text](https://raw.githubusercontent.com/wuddz-devs/wuddz-devs/main/assets/doge.png)
 - DOGE:     DFwLwtcam7n2JreSpq1r2rtkA48Vos5Hgm

![Alt Text](https://raw.githubusercontent.com/wuddz-devs/wuddz-devs/main/assets/tron.png)
 - TRON:     TY6e3dWGpqyn2wUgnA5q63c88PJzfDmQAD

#### Enjoy my awesome creativity!!
#### Peace & Love Always!!

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "wuddz-m3u",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "m3u, media, music, playlist, re, regex, video, xspf",
    "author": null,
    "author_email": "Wuddz-Devs <wuddz_devs@protonmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/74/3a/ff729045093c0c5d17a4611d7550be02c1e6b656f807ee5578b8892f348b/wuddz_m3u-1.0.0.tar.gz",
    "platform": null,
    "description": "<h1 align=\"center\">Wuddz M3U Maker/Parser & XPSF To M3U Converter</h1>\n\n## Description\n - A Cool & Simple Python M3U Playlist Maker/Parser & XPSF To M3U Playlist Converter.\n\n## Prerequisites\n - Python : 3.7\n\n## Installation\nInstall using [PyPI](https://pypi.org/project/wuddz-m3u):\n```\npip install wuddz-m3u\n```\nInstall locally by cloning or downloading and extracting the repo, then cd into 'dist' directory and execute:\n```\npip install wuddz_m3u-1.0.0.tar.gz\n```\nThen to run it, execute the following in the terminal:\n```\nwudz-m3u\n```\n\n### Usage\nParse .m3u Playlist(s) In 'C:\\TV' Directory For Billions Season 5 & Create Playlist(s):\n```\nwudz-m3u -f \"C:\\TV\" -t \"Billions S05\" -p\n```\nParse .m3u Playlist(s) In 'C:\\TV' Directory For Group Title Series & Create Playlist(s):\n```\nwudz-m3u -f \"C:\\TV\" -g \"Series\" -p\n```\nCreate .m3u Playlist With Titles & Links In Specified Files (*Specify Titles,Links In That Order):\n```\nwudz-m3u -f \"C:\\Titles.txt,C:\\Links.txt\" -c\n```\nCreate .m3u Playlist Series Title 'House' Starting From Season 2 Episode 1, Episodes Per Season 10 With Links In Links.txt File.\n```\nwudz-m3u -f \"C:\\Links.txt\" -t House -s 2 -a 10\n```\nConvert 'file.xpsf' XPSF To 'file.m3u' M3U Playlist In C:\\Users Directory\n```\nwudz-m3u -f \"C:\\file.xpsf\" -v -o C:\\Users\n```\n\n### Library\nConvert '/home/ubuntu/Documents/file.xpsf' XPSF Playlist To M3U Playlist In '/home/ubuntu/Desktop' Directory.\n```\n>>> from wuddz_m3u import m3u\n>>> m = m3u.M3U()\n>>> m.__convert('/home/ubuntu/Documents/file.xpsf', '/home/ubuntu/Desktop')\n```\nParse M3U Playlist File '/home/ubuntu/Documents/sub.m3u' For Series House Of Cards & Create Playlist In '/home/ubuntu/Desktop/TV' Directory.\n```\n>>> from wuddz_m3u import m3u\n>>> playlist = '/home/ubuntu/Documents/sub.m3u'\n>>> output = '/home/ubuntu/Desktop/TV'\n>>> title = 'House Of Cards'\n>>> m = m3u.M3U()\n>>> m.__search(playlist,output,t=title)\n```\n\n## Contact Info:\n - Email:     wuddz_devs@protonmail.com\n - Github:    https://github.com/wuddz-devs\n - Telegram:  https://t.me/wuddz_devs\n - Youtube:   https://youtube.com/@wuddz-devs\n - Reddit:    https://reddit.com/user/wuddz-devs\n\n### Buy Me A Coffee!!\n![Alt Text](https://raw.githubusercontent.com/wuddz-devs/wuddz-devs/main/assets/eth.png)\n - ERC20:    0xbF4d5309Bc633d95B6a8fe60E6AF490F11ed2Dd1\n\n![Alt Text](https://raw.githubusercontent.com/wuddz-devs/wuddz-devs/main/assets/btc.png)\n - BTC:      bc1qa7ssx0e4l6lytqawrnceu6hf5990x4r2uwuead\n\n![Alt Text](https://raw.githubusercontent.com/wuddz-devs/wuddz-devs/main/assets/ltc.png)\n - LTC:      LdbcFiQVUMTfc9eJdc5Gw2nZgyo6WjKCj7\n\n![Alt Text](https://raw.githubusercontent.com/wuddz-devs/wuddz-devs/main/assets/doge.png)\n - DOGE:     DFwLwtcam7n2JreSpq1r2rtkA48Vos5Hgm\n\n![Alt Text](https://raw.githubusercontent.com/wuddz-devs/wuddz-devs/main/assets/tron.png)\n - TRON:     TY6e3dWGpqyn2wUgnA5q63c88PJzfDmQAD\n\n#### Enjoy my awesome creativity!!\n#### Peace & Love Always!!\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2024 Wuddz-Devs  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
    "summary": "A Cool & Simple Python M3U Playlist Maker/Parser & XPSF To M3U Converter.",
    "version": "1.0.0",
    "project_urls": {
        "Homepage": "https://github.com/wuddz-devs/wuddz-m3u"
    },
    "split_keywords": [
        "m3u",
        " media",
        " music",
        " playlist",
        " re",
        " regex",
        " video",
        " xspf"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "02fbd82f13a2ca6ef8d35cae7007b4392dc85b212322f22fbd810ccbdd717576",
                "md5": "d570a8493f7191ffb68a4024c2be323c",
                "sha256": "fac8ca7653a4cfb7ad229d9742f20441baf32dae3c79f34fa37b8f3af03ba0a5"
            },
            "downloads": -1,
            "filename": "wuddz_m3u-1.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d570a8493f7191ffb68a4024c2be323c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 7021,
            "upload_time": "2024-05-07T16:29:12",
            "upload_time_iso_8601": "2024-05-07T16:29:12.637733Z",
            "url": "https://files.pythonhosted.org/packages/02/fb/d82f13a2ca6ef8d35cae7007b4392dc85b212322f22fbd810ccbdd717576/wuddz_m3u-1.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "743aff729045093c0c5d17a4611d7550be02c1e6b656f807ee5578b8892f348b",
                "md5": "88950f2b031507d22f27520157d8e885",
                "sha256": "2add515cabbe1c327c68376e907c2767beffbc1fa7356f356313207b94269371"
            },
            "downloads": -1,
            "filename": "wuddz_m3u-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "88950f2b031507d22f27520157d8e885",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 5594,
            "upload_time": "2024-05-07T16:29:14",
            "upload_time_iso_8601": "2024-05-07T16:29:14.663460Z",
            "url": "https://files.pythonhosted.org/packages/74/3a/ff729045093c0c5d17a4611d7550be02c1e6b656f807ee5578b8892f348b/wuddz_m3u-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-07 16:29:14",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "wuddz-devs",
    "github_project": "wuddz-m3u",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "wuddz-m3u"
}
        
Elapsed time: 0.32732s