├── CHANGELOG.md ├── LICENSE ├── README.md ├── a4kStreaming ├── __init__.py ├── api.py ├── core.py ├── explorer.py ├── lib │ ├── __init__.py │ ├── cache.py │ ├── database.py │ ├── debrid.py │ ├── goto.py │ ├── kodi.py │ ├── kodi_listitem.py │ ├── kodi_mock.py │ ├── logger.py │ ├── request.py │ └── utils.py ├── provider.py ├── service.py └── trakt.py ├── addon.xml ├── icon.png ├── main.py ├── main_service.py ├── resources ├── language │ └── resource.language.en_gb │ │ └── strings.po └── settings.xml ├── screenshot-01.jpg ├── screenshot-02.jpg ├── screenshot-03.jpg ├── screenshot-04.jpg ├── screenshot-05.jpg └── screenshot-06.jpg /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/README.md -------------------------------------------------------------------------------- /a4kStreaming/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /a4kStreaming/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/a4kStreaming/api.py -------------------------------------------------------------------------------- /a4kStreaming/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/a4kStreaming/core.py -------------------------------------------------------------------------------- /a4kStreaming/explorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/a4kStreaming/explorer.py -------------------------------------------------------------------------------- /a4kStreaming/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /a4kStreaming/lib/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/a4kStreaming/lib/cache.py -------------------------------------------------------------------------------- /a4kStreaming/lib/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/a4kStreaming/lib/database.py -------------------------------------------------------------------------------- /a4kStreaming/lib/debrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/a4kStreaming/lib/debrid.py -------------------------------------------------------------------------------- /a4kStreaming/lib/goto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/a4kStreaming/lib/goto.py -------------------------------------------------------------------------------- /a4kStreaming/lib/kodi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/a4kStreaming/lib/kodi.py -------------------------------------------------------------------------------- /a4kStreaming/lib/kodi_listitem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/a4kStreaming/lib/kodi_listitem.py -------------------------------------------------------------------------------- /a4kStreaming/lib/kodi_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/a4kStreaming/lib/kodi_mock.py -------------------------------------------------------------------------------- /a4kStreaming/lib/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/a4kStreaming/lib/logger.py -------------------------------------------------------------------------------- /a4kStreaming/lib/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/a4kStreaming/lib/request.py -------------------------------------------------------------------------------- /a4kStreaming/lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/a4kStreaming/lib/utils.py -------------------------------------------------------------------------------- /a4kStreaming/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/a4kStreaming/provider.py -------------------------------------------------------------------------------- /a4kStreaming/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/a4kStreaming/service.py -------------------------------------------------------------------------------- /a4kStreaming/trakt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/a4kStreaming/trakt.py -------------------------------------------------------------------------------- /addon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/addon.xml -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/icon.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/main.py -------------------------------------------------------------------------------- /main_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/main_service.py -------------------------------------------------------------------------------- /resources/language/resource.language.en_gb/strings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/resources/language/resource.language.en_gb/strings.po -------------------------------------------------------------------------------- /resources/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/resources/settings.xml -------------------------------------------------------------------------------- /screenshot-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/screenshot-01.jpg -------------------------------------------------------------------------------- /screenshot-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/screenshot-02.jpg -------------------------------------------------------------------------------- /screenshot-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/screenshot-03.jpg -------------------------------------------------------------------------------- /screenshot-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/screenshot-04.jpg -------------------------------------------------------------------------------- /screenshot-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/screenshot-05.jpg -------------------------------------------------------------------------------- /screenshot-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4k-openproject/a4kStreaming/HEAD/screenshot-06.jpg --------------------------------------------------------------------------------