├── .github ├── ISSUE_TEMPLATE │ └── custom.md └── workflows │ └── macos-build.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Epg.py ├── IPTV-MAC-STALKER-PLAYER.spec ├── LICENSE ├── README.md ├── SECURITY.md ├── STALKER PLAYER.py ├── macos-build.yml ├── requirements.txt └── stalker.py /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyogenus/IPTV-MAC-STALKER-PLAYER-BY-MY-1/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/workflows/macos-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyogenus/IPTV-MAC-STALKER-PLAYER-BY-MY-1/HEAD/.github/workflows/macos-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyogenus/IPTV-MAC-STALKER-PLAYER-BY-MY-1/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyogenus/IPTV-MAC-STALKER-PLAYER-BY-MY-1/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyogenus/IPTV-MAC-STALKER-PLAYER-BY-MY-1/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Epg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyogenus/IPTV-MAC-STALKER-PLAYER-BY-MY-1/HEAD/Epg.py -------------------------------------------------------------------------------- /IPTV-MAC-STALKER-PLAYER.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyogenus/IPTV-MAC-STALKER-PLAYER-BY-MY-1/HEAD/IPTV-MAC-STALKER-PLAYER.spec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyogenus/IPTV-MAC-STALKER-PLAYER-BY-MY-1/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyogenus/IPTV-MAC-STALKER-PLAYER-BY-MY-1/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyogenus/IPTV-MAC-STALKER-PLAYER-BY-MY-1/HEAD/SECURITY.md -------------------------------------------------------------------------------- /STALKER PLAYER.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyogenus/IPTV-MAC-STALKER-PLAYER-BY-MY-1/HEAD/STALKER PLAYER.py -------------------------------------------------------------------------------- /macos-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyogenus/IPTV-MAC-STALKER-PLAYER-BY-MY-1/HEAD/macos-build.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | PyQt6>=6.6 2 | requests>=2.31.0 3 | qdarkstyle>=3.1 4 | pytz>=2023.3 5 | tqdm>=4.66 6 | -------------------------------------------------------------------------------- /stalker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyogenus/IPTV-MAC-STALKER-PLAYER-BY-MY-1/HEAD/stalker.py --------------------------------------------------------------------------------