├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── piptv_pmg ├── __init__.py └── pmg.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schwifty42069/pmg/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schwifty42069/pmg/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include *.txt 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schwifty42069/pmg/HEAD/README.md -------------------------------------------------------------------------------- /piptv_pmg/__init__.py: -------------------------------------------------------------------------------- 1 | name = "pmg" 2 | -------------------------------------------------------------------------------- /piptv_pmg/pmg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schwifty42069/pmg/HEAD/piptv_pmg/pmg.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schwifty42069/pmg/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schwifty42069/pmg/HEAD/setup.py --------------------------------------------------------------------------------