├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── deploy-mkdocs.yml │ ├── docker-develop.yml │ └── docker-release.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── alembic.ini ├── deploy ├── catalogs-compose.yml ├── catalogs.env ├── dev-compose.yml ├── docker-compose.yml ├── example.env ├── manager-compose.yml ├── trakt-compose.yml └── trakt.env ├── docs ├── DOCS_VERSION ├── en │ ├── .pages │ ├── Catalogs │ │ ├── .pages │ │ ├── catalogs.md │ │ ├── docker_install.md │ │ ├── images │ │ │ └── image-jic6p-29-09-2024.jpg │ │ └── prerequis.md │ ├── How-To │ │ ├── .pages │ │ ├── apikey_alldebrid.md │ │ ├── images │ │ │ ├── image-a27gm-26-09-2024.png │ │ │ ├── image-lwthq-26-09-2024.png │ │ │ └── image-n0vw4-26-09-2024.jpg │ │ └── secure_vps.md │ ├── Manager │ │ ├── .pages │ │ ├── images │ │ │ ├── image-1ahs1-29-09-2024(1).png │ │ │ ├── image-5lutq-29-09-2024(1).png │ │ │ ├── image-jix10-29-09-2024.png │ │ │ ├── image-l6pce-29-09-2024.png │ │ │ ├── image-na5z3-29-09-2024.png │ │ │ └── image-qbzjb-29-09-2024.png │ │ ├── manager.md │ │ └── usage.md │ ├── StreamFusion │ │ ├── .pages │ │ ├── config_advanced.md │ │ ├── docker_install.md │ │ ├── images │ │ │ ├── image-4f6s8-26-09-2024(1).png │ │ │ ├── image-58zvg-27-09-2024.png │ │ │ ├── image-5oh3f-27-09-2024(1).png │ │ │ ├── image-a4k3c-26-09-2024(1).png │ │ │ ├── image-dkikt-24-09-2024.png │ │ │ ├── image-dsb3d-27-09-2024(1).png │ │ │ ├── image-k651x-27-09-2024(1).png │ │ │ ├── image-q8eva-27-09-2024(1).png │ │ │ ├── image-snpmu-24-09-2024.png │ │ │ └── logo-stream-fusion.png │ │ ├── post_install.md │ │ ├── prerequis.md │ │ ├── proxy_npm.md │ │ └── streamfusion.md │ ├── Stremio │ │ ├── .pages │ │ ├── addons.md │ │ ├── images │ │ │ ├── image-1rqo9-24-09-2024.png │ │ │ ├── image-oumm4-24-09-2024.png │ │ │ └── image-xe2e9-24-09-2024.png │ │ ├── selfhosted.md │ │ └── stremio.md │ ├── Trakt │ │ ├── .pages │ │ ├── docker_install.md │ │ ├── images │ │ │ └── image-jw175-29-09-2024.png │ │ ├── prerequis.md │ │ └── trakt.md │ ├── index.md │ └── logo-stream-fusion.png ├── fr │ ├── .pages │ ├── Catalogs │ │ ├── .pages │ │ ├── catalogs.md │ │ ├── docker_install.md │ │ ├── images │ │ │ └── image-jic6p-29-09-2024.jpg │ │ └── prerequis.md │ ├── How-To │ │ ├── .pages │ │ ├── apikey_alldebrid.md │ │ ├── images │ │ │ ├── image-a27gm-26-09-2024.png │ │ │ ├── image-lwthq-26-09-2024.png │ │ │ └── image-n0vw4-26-09-2024.jpg │ │ └── secure_vps.md │ ├── Manager │ │ ├── .pages │ │ ├── images │ │ │ ├── image-1ahs1-29-09-2024(1).png │ │ │ ├── image-5lutq-29-09-2024(1).png │ │ │ ├── image-jix10-29-09-2024.png │ │ │ ├── image-l6pce-29-09-2024.png │ │ │ ├── image-na5z3-29-09-2024.png │ │ │ └── image-qbzjb-29-09-2024.png │ │ ├── manager.md │ │ └── usage.md │ ├── StreamFusion │ │ ├── .pages │ │ ├── config_advanced.md │ │ ├── docker_install.md │ │ ├── images │ │ │ ├── dark_logo_streamfusion.png │ │ │ ├── image-4f6s8-26-09-2024(1).png │ │ │ ├── image-58zvg-27-09-2024.png │ │ │ ├── image-5oh3f-27-09-2024(1).png │ │ │ ├── image-a4k3c-26-09-2024(1).png │ │ │ ├── image-dkikt-24-09-2024.png │ │ │ ├── image-dsb3d-27-09-2024(1).png │ │ │ ├── image-k651x-27-09-2024(1).png │ │ │ ├── image-q8eva-27-09-2024(1).png │ │ │ ├── image-snpmu-24-09-2024.png │ │ │ └── logo-stream-fusion.png │ │ ├── post_install.md │ │ ├── prerequis.md │ │ ├── proxy_npm.md │ │ └── streamfusion.md │ ├── Stremio │ │ ├── .pages │ │ ├── addons.md │ │ ├── images │ │ │ ├── image-1rqo9-24-09-2024.png │ │ │ ├── image-oumm4-24-09-2024.png │ │ │ └── image-xe2e9-24-09-2024.png │ │ ├── selfhosted.md │ │ └── stremio.md │ ├── Trakt │ │ ├── .pages │ │ ├── docker_install.md │ │ ├── images │ │ │ └── image-jw175-29-09-2024.png │ │ ├── prerequis.md │ │ └── trakt.md │ ├── index.md │ └── logo-stream-fusion.png └── stylesheets │ └── extra.css ├── entrypoint.sh ├── mkdocs.yml ├── poetry.lock ├── poetry.toml ├── pyproject.toml └── stream_fusion ├── __init__.py ├── __main__.py ├── constants.py ├── gunicorn_runner.py ├── logging_config.py ├── services ├── postgresql │ ├── base.py │ ├── dao │ │ ├── __init__.py │ │ ├── apikey_dao.py │ │ └── torrentitem_dao.py │ ├── dependencies.py │ ├── meta.py │ ├── migrations │ │ ├── __init__.py │ │ ├── env.py │ │ ├── script.py.mako │ │ └── versions │ │ │ ├── 2024-09-20-20-37_df288f2cf1fa.py │ │ │ └── __init__.py │ ├── models │ │ ├── __init__.py │ │ ├── apikey_model.py │ │ └── torrentitem_model.py │ ├── schemas │ │ ├── __init__.py │ │ └── apikey_schemas.py │ └── utils.py ├── rd_conn │ ├── __init__.py │ └── token_manager.py └── redis │ └── redis_config.py ├── settings.py ├── static ├── admin │ ├── api_keys.html │ ├── base.html │ ├── create_api_key.html │ └── login.html ├── config.js ├── dark_logo_streamfusion.png ├── docs │ ├── redoc.standalone.js │ ├── swagger-ui-bundle.js │ └── swagger-ui.css ├── index.html ├── logo-stream-fusion.png ├── logo_anim_stream-fusion-3.gif ├── logo_anim_stream-fusion-3.mp4 ├── stremio-bg.jpg └── videos │ ├── en_download_video.mp4 │ └── fr_download_video.mp4 ├── utils ├── cache │ ├── __init__.py │ ├── cache.py │ ├── cache_base.py │ └── local_redis.py ├── debrid │ ├── __init__.py │ ├── alldebrid.py │ ├── base_debrid.py │ ├── get_debrid_service.py │ ├── premiumize.py │ ├── realdebrid.py │ └── torbox.py ├── detection.py ├── filter │ ├── base_filter.py │ ├── language_filter.py │ ├── max_size_filter.py │ ├── quality_exclusion_filter.py │ ├── results_per_quality_filter.py │ └── title_exclusion_filter.py ├── filter_results.py ├── general.py ├── jackett │ ├── __init__.py │ ├── jackett_indexer.py │ ├── jackett_result.py │ └── jackett_service.py ├── metdata │ ├── cinemeta.py │ ├── metadata_provider_base.py │ └── tmdb.py ├── models │ ├── media.py │ ├── movie.py │ └── series.py ├── parse_config.py ├── parser │ ├── __init__.py │ ├── parser_service.py │ └── parser_utils.py ├── security │ ├── __init__.py │ ├── security_api_key.py │ └── security_secret.py ├── sharewood │ ├── __init__.py │ ├── sharewood_api.py │ ├── sharewood_result.py │ └── sharewood_service.py ├── string_encoding.py ├── torrent │ ├── torrent_item.py │ ├── torrent_service.py │ └── torrent_smart_container.py ├── yggfilx │ ├── __init__.py │ ├── yggflix_api.py │ ├── yggflix_result.py │ └── yggflix_service.py └── zilean │ ├── __init__.py │ ├── zilean_api.py │ ├── zilean_result.py │ └── zilean_service.py ├── version.py └── web ├── __init__.py ├── api ├── __init__.py ├── admin │ ├── __init__.py │ └── views.py ├── auth │ ├── __init__.py │ ├── schemas.py │ └── views.py ├── docs │ ├── __init__.py │ └── views.py ├── monitoring │ ├── __init__.py │ └── views.py └── router.py ├── application.py ├── lifespan.py ├── playback ├── __init__.py ├── router.py └── stream │ ├── __init__.py │ ├── schemas.py │ └── views.py └── root ├── __init__.py ├── catalog ├── __init__.py ├── schemas.py └── views.py ├── config ├── __init__.py ├── schemas.py └── views.py ├── router.py └── search ├── __init__.py ├── schemas.py ├── stremio_parser.py └── views.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/deploy-mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/.github/workflows/deploy-mkdocs.yml -------------------------------------------------------------------------------- /.github/workflows/docker-develop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/.github/workflows/docker-develop.yml -------------------------------------------------------------------------------- /.github/workflows/docker-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/.github/workflows/docker-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/README.md -------------------------------------------------------------------------------- /alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/alembic.ini -------------------------------------------------------------------------------- /deploy/catalogs-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/deploy/catalogs-compose.yml -------------------------------------------------------------------------------- /deploy/catalogs.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/deploy/catalogs.env -------------------------------------------------------------------------------- /deploy/dev-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/deploy/dev-compose.yml -------------------------------------------------------------------------------- /deploy/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/deploy/docker-compose.yml -------------------------------------------------------------------------------- /deploy/example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/deploy/example.env -------------------------------------------------------------------------------- /deploy/manager-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/deploy/manager-compose.yml -------------------------------------------------------------------------------- /deploy/trakt-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/deploy/trakt-compose.yml -------------------------------------------------------------------------------- /deploy/trakt.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/deploy/trakt.env -------------------------------------------------------------------------------- /docs/DOCS_VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/DOCS_VERSION -------------------------------------------------------------------------------- /docs/en/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/.pages -------------------------------------------------------------------------------- /docs/en/Catalogs/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/Catalogs/.pages -------------------------------------------------------------------------------- /docs/en/Catalogs/catalogs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/Catalogs/catalogs.md -------------------------------------------------------------------------------- /docs/en/Catalogs/docker_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/Catalogs/docker_install.md -------------------------------------------------------------------------------- /docs/en/Catalogs/images/image-jic6p-29-09-2024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/Catalogs/images/image-jic6p-29-09-2024.jpg -------------------------------------------------------------------------------- /docs/en/Catalogs/prerequis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/Catalogs/prerequis.md -------------------------------------------------------------------------------- /docs/en/How-To/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/How-To/.pages -------------------------------------------------------------------------------- /docs/en/How-To/apikey_alldebrid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/How-To/apikey_alldebrid.md -------------------------------------------------------------------------------- /docs/en/How-To/images/image-a27gm-26-09-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/How-To/images/image-a27gm-26-09-2024.png -------------------------------------------------------------------------------- /docs/en/How-To/images/image-lwthq-26-09-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/How-To/images/image-lwthq-26-09-2024.png -------------------------------------------------------------------------------- /docs/en/How-To/images/image-n0vw4-26-09-2024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/How-To/images/image-n0vw4-26-09-2024.jpg -------------------------------------------------------------------------------- /docs/en/How-To/secure_vps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/How-To/secure_vps.md -------------------------------------------------------------------------------- /docs/en/Manager/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/Manager/.pages -------------------------------------------------------------------------------- /docs/en/Manager/images/image-1ahs1-29-09-2024(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/Manager/images/image-1ahs1-29-09-2024(1).png -------------------------------------------------------------------------------- /docs/en/Manager/images/image-5lutq-29-09-2024(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/Manager/images/image-5lutq-29-09-2024(1).png -------------------------------------------------------------------------------- /docs/en/Manager/images/image-jix10-29-09-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/Manager/images/image-jix10-29-09-2024.png -------------------------------------------------------------------------------- /docs/en/Manager/images/image-l6pce-29-09-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/Manager/images/image-l6pce-29-09-2024.png -------------------------------------------------------------------------------- /docs/en/Manager/images/image-na5z3-29-09-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/Manager/images/image-na5z3-29-09-2024.png -------------------------------------------------------------------------------- /docs/en/Manager/images/image-qbzjb-29-09-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/Manager/images/image-qbzjb-29-09-2024.png -------------------------------------------------------------------------------- /docs/en/Manager/manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/Manager/manager.md -------------------------------------------------------------------------------- /docs/en/Manager/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/Manager/usage.md -------------------------------------------------------------------------------- /docs/en/StreamFusion/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/StreamFusion/.pages -------------------------------------------------------------------------------- /docs/en/StreamFusion/config_advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/StreamFusion/config_advanced.md -------------------------------------------------------------------------------- /docs/en/StreamFusion/docker_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/StreamFusion/docker_install.md -------------------------------------------------------------------------------- /docs/en/StreamFusion/images/image-4f6s8-26-09-2024(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/StreamFusion/images/image-4f6s8-26-09-2024(1).png -------------------------------------------------------------------------------- /docs/en/StreamFusion/images/image-58zvg-27-09-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/StreamFusion/images/image-58zvg-27-09-2024.png -------------------------------------------------------------------------------- /docs/en/StreamFusion/images/image-5oh3f-27-09-2024(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/StreamFusion/images/image-5oh3f-27-09-2024(1).png -------------------------------------------------------------------------------- /docs/en/StreamFusion/images/image-a4k3c-26-09-2024(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/StreamFusion/images/image-a4k3c-26-09-2024(1).png -------------------------------------------------------------------------------- /docs/en/StreamFusion/images/image-dkikt-24-09-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/StreamFusion/images/image-dkikt-24-09-2024.png -------------------------------------------------------------------------------- /docs/en/StreamFusion/images/image-dsb3d-27-09-2024(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/StreamFusion/images/image-dsb3d-27-09-2024(1).png -------------------------------------------------------------------------------- /docs/en/StreamFusion/images/image-k651x-27-09-2024(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/StreamFusion/images/image-k651x-27-09-2024(1).png -------------------------------------------------------------------------------- /docs/en/StreamFusion/images/image-q8eva-27-09-2024(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/StreamFusion/images/image-q8eva-27-09-2024(1).png -------------------------------------------------------------------------------- /docs/en/StreamFusion/images/image-snpmu-24-09-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/StreamFusion/images/image-snpmu-24-09-2024.png -------------------------------------------------------------------------------- /docs/en/StreamFusion/images/logo-stream-fusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/StreamFusion/images/logo-stream-fusion.png -------------------------------------------------------------------------------- /docs/en/StreamFusion/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/StreamFusion/post_install.md -------------------------------------------------------------------------------- /docs/en/StreamFusion/prerequis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/StreamFusion/prerequis.md -------------------------------------------------------------------------------- /docs/en/StreamFusion/proxy_npm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/StreamFusion/proxy_npm.md -------------------------------------------------------------------------------- /docs/en/StreamFusion/streamfusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/StreamFusion/streamfusion.md -------------------------------------------------------------------------------- /docs/en/Stremio/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/Stremio/.pages -------------------------------------------------------------------------------- /docs/en/Stremio/addons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/Stremio/addons.md -------------------------------------------------------------------------------- /docs/en/Stremio/images/image-1rqo9-24-09-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/Stremio/images/image-1rqo9-24-09-2024.png -------------------------------------------------------------------------------- /docs/en/Stremio/images/image-oumm4-24-09-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/Stremio/images/image-oumm4-24-09-2024.png -------------------------------------------------------------------------------- /docs/en/Stremio/images/image-xe2e9-24-09-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/Stremio/images/image-xe2e9-24-09-2024.png -------------------------------------------------------------------------------- /docs/en/Stremio/selfhosted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/Stremio/selfhosted.md -------------------------------------------------------------------------------- /docs/en/Stremio/stremio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/Stremio/stremio.md -------------------------------------------------------------------------------- /docs/en/Trakt/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/Trakt/.pages -------------------------------------------------------------------------------- /docs/en/Trakt/docker_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/Trakt/docker_install.md -------------------------------------------------------------------------------- /docs/en/Trakt/images/image-jw175-29-09-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/Trakt/images/image-jw175-29-09-2024.png -------------------------------------------------------------------------------- /docs/en/Trakt/prerequis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/Trakt/prerequis.md -------------------------------------------------------------------------------- /docs/en/Trakt/trakt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/Trakt/trakt.md -------------------------------------------------------------------------------- /docs/en/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/index.md -------------------------------------------------------------------------------- /docs/en/logo-stream-fusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/en/logo-stream-fusion.png -------------------------------------------------------------------------------- /docs/fr/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/.pages -------------------------------------------------------------------------------- /docs/fr/Catalogs/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/Catalogs/.pages -------------------------------------------------------------------------------- /docs/fr/Catalogs/catalogs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/Catalogs/catalogs.md -------------------------------------------------------------------------------- /docs/fr/Catalogs/docker_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/Catalogs/docker_install.md -------------------------------------------------------------------------------- /docs/fr/Catalogs/images/image-jic6p-29-09-2024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/Catalogs/images/image-jic6p-29-09-2024.jpg -------------------------------------------------------------------------------- /docs/fr/Catalogs/prerequis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/Catalogs/prerequis.md -------------------------------------------------------------------------------- /docs/fr/How-To/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/How-To/.pages -------------------------------------------------------------------------------- /docs/fr/How-To/apikey_alldebrid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/How-To/apikey_alldebrid.md -------------------------------------------------------------------------------- /docs/fr/How-To/images/image-a27gm-26-09-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/How-To/images/image-a27gm-26-09-2024.png -------------------------------------------------------------------------------- /docs/fr/How-To/images/image-lwthq-26-09-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/How-To/images/image-lwthq-26-09-2024.png -------------------------------------------------------------------------------- /docs/fr/How-To/images/image-n0vw4-26-09-2024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/How-To/images/image-n0vw4-26-09-2024.jpg -------------------------------------------------------------------------------- /docs/fr/How-To/secure_vps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/How-To/secure_vps.md -------------------------------------------------------------------------------- /docs/fr/Manager/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/Manager/.pages -------------------------------------------------------------------------------- /docs/fr/Manager/images/image-1ahs1-29-09-2024(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/Manager/images/image-1ahs1-29-09-2024(1).png -------------------------------------------------------------------------------- /docs/fr/Manager/images/image-5lutq-29-09-2024(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/Manager/images/image-5lutq-29-09-2024(1).png -------------------------------------------------------------------------------- /docs/fr/Manager/images/image-jix10-29-09-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/Manager/images/image-jix10-29-09-2024.png -------------------------------------------------------------------------------- /docs/fr/Manager/images/image-l6pce-29-09-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/Manager/images/image-l6pce-29-09-2024.png -------------------------------------------------------------------------------- /docs/fr/Manager/images/image-na5z3-29-09-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/Manager/images/image-na5z3-29-09-2024.png -------------------------------------------------------------------------------- /docs/fr/Manager/images/image-qbzjb-29-09-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/Manager/images/image-qbzjb-29-09-2024.png -------------------------------------------------------------------------------- /docs/fr/Manager/manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/Manager/manager.md -------------------------------------------------------------------------------- /docs/fr/Manager/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/Manager/usage.md -------------------------------------------------------------------------------- /docs/fr/StreamFusion/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/StreamFusion/.pages -------------------------------------------------------------------------------- /docs/fr/StreamFusion/config_advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/StreamFusion/config_advanced.md -------------------------------------------------------------------------------- /docs/fr/StreamFusion/docker_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/StreamFusion/docker_install.md -------------------------------------------------------------------------------- /docs/fr/StreamFusion/images/dark_logo_streamfusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/StreamFusion/images/dark_logo_streamfusion.png -------------------------------------------------------------------------------- /docs/fr/StreamFusion/images/image-4f6s8-26-09-2024(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/StreamFusion/images/image-4f6s8-26-09-2024(1).png -------------------------------------------------------------------------------- /docs/fr/StreamFusion/images/image-58zvg-27-09-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/StreamFusion/images/image-58zvg-27-09-2024.png -------------------------------------------------------------------------------- /docs/fr/StreamFusion/images/image-5oh3f-27-09-2024(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/StreamFusion/images/image-5oh3f-27-09-2024(1).png -------------------------------------------------------------------------------- /docs/fr/StreamFusion/images/image-a4k3c-26-09-2024(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/StreamFusion/images/image-a4k3c-26-09-2024(1).png -------------------------------------------------------------------------------- /docs/fr/StreamFusion/images/image-dkikt-24-09-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/StreamFusion/images/image-dkikt-24-09-2024.png -------------------------------------------------------------------------------- /docs/fr/StreamFusion/images/image-dsb3d-27-09-2024(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/StreamFusion/images/image-dsb3d-27-09-2024(1).png -------------------------------------------------------------------------------- /docs/fr/StreamFusion/images/image-k651x-27-09-2024(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/StreamFusion/images/image-k651x-27-09-2024(1).png -------------------------------------------------------------------------------- /docs/fr/StreamFusion/images/image-q8eva-27-09-2024(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/StreamFusion/images/image-q8eva-27-09-2024(1).png -------------------------------------------------------------------------------- /docs/fr/StreamFusion/images/image-snpmu-24-09-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/StreamFusion/images/image-snpmu-24-09-2024.png -------------------------------------------------------------------------------- /docs/fr/StreamFusion/images/logo-stream-fusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/StreamFusion/images/logo-stream-fusion.png -------------------------------------------------------------------------------- /docs/fr/StreamFusion/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/StreamFusion/post_install.md -------------------------------------------------------------------------------- /docs/fr/StreamFusion/prerequis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/StreamFusion/prerequis.md -------------------------------------------------------------------------------- /docs/fr/StreamFusion/proxy_npm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/StreamFusion/proxy_npm.md -------------------------------------------------------------------------------- /docs/fr/StreamFusion/streamfusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/StreamFusion/streamfusion.md -------------------------------------------------------------------------------- /docs/fr/Stremio/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/Stremio/.pages -------------------------------------------------------------------------------- /docs/fr/Stremio/addons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/Stremio/addons.md -------------------------------------------------------------------------------- /docs/fr/Stremio/images/image-1rqo9-24-09-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/Stremio/images/image-1rqo9-24-09-2024.png -------------------------------------------------------------------------------- /docs/fr/Stremio/images/image-oumm4-24-09-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/Stremio/images/image-oumm4-24-09-2024.png -------------------------------------------------------------------------------- /docs/fr/Stremio/images/image-xe2e9-24-09-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/Stremio/images/image-xe2e9-24-09-2024.png -------------------------------------------------------------------------------- /docs/fr/Stremio/selfhosted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/Stremio/selfhosted.md -------------------------------------------------------------------------------- /docs/fr/Stremio/stremio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/Stremio/stremio.md -------------------------------------------------------------------------------- /docs/fr/Trakt/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/Trakt/.pages -------------------------------------------------------------------------------- /docs/fr/Trakt/docker_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/Trakt/docker_install.md -------------------------------------------------------------------------------- /docs/fr/Trakt/images/image-jw175-29-09-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/Trakt/images/image-jw175-29-09-2024.png -------------------------------------------------------------------------------- /docs/fr/Trakt/prerequis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/Trakt/prerequis.md -------------------------------------------------------------------------------- /docs/fr/Trakt/trakt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/Trakt/trakt.md -------------------------------------------------------------------------------- /docs/fr/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/index.md -------------------------------------------------------------------------------- /docs/fr/logo-stream-fusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/fr/logo-stream-fusion.png -------------------------------------------------------------------------------- /docs/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/docs/stylesheets/extra.css -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/poetry.lock -------------------------------------------------------------------------------- /poetry.toml: -------------------------------------------------------------------------------- 1 | [virtualenvs] 2 | in-project = false 3 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/pyproject.toml -------------------------------------------------------------------------------- /stream_fusion/__init__.py: -------------------------------------------------------------------------------- 1 | """stream_fusion package.""" 2 | -------------------------------------------------------------------------------- /stream_fusion/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/__main__.py -------------------------------------------------------------------------------- /stream_fusion/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/constants.py -------------------------------------------------------------------------------- /stream_fusion/gunicorn_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/gunicorn_runner.py -------------------------------------------------------------------------------- /stream_fusion/logging_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/logging_config.py -------------------------------------------------------------------------------- /stream_fusion/services/postgresql/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/services/postgresql/base.py -------------------------------------------------------------------------------- /stream_fusion/services/postgresql/dao/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/services/postgresql/dao/__init__.py -------------------------------------------------------------------------------- /stream_fusion/services/postgresql/dao/apikey_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/services/postgresql/dao/apikey_dao.py -------------------------------------------------------------------------------- /stream_fusion/services/postgresql/dao/torrentitem_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/services/postgresql/dao/torrentitem_dao.py -------------------------------------------------------------------------------- /stream_fusion/services/postgresql/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/services/postgresql/dependencies.py -------------------------------------------------------------------------------- /stream_fusion/services/postgresql/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/services/postgresql/meta.py -------------------------------------------------------------------------------- /stream_fusion/services/postgresql/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | """Alembic migrations.""" 2 | -------------------------------------------------------------------------------- /stream_fusion/services/postgresql/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/services/postgresql/migrations/env.py -------------------------------------------------------------------------------- /stream_fusion/services/postgresql/migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/services/postgresql/migrations/script.py.mako -------------------------------------------------------------------------------- /stream_fusion/services/postgresql/migrations/versions/2024-09-20-20-37_df288f2cf1fa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/services/postgresql/migrations/versions/2024-09-20-20-37_df288f2cf1fa.py -------------------------------------------------------------------------------- /stream_fusion/services/postgresql/migrations/versions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stream_fusion/services/postgresql/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/services/postgresql/models/__init__.py -------------------------------------------------------------------------------- /stream_fusion/services/postgresql/models/apikey_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/services/postgresql/models/apikey_model.py -------------------------------------------------------------------------------- /stream_fusion/services/postgresql/models/torrentitem_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/services/postgresql/models/torrentitem_model.py -------------------------------------------------------------------------------- /stream_fusion/services/postgresql/schemas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/services/postgresql/schemas/__init__.py -------------------------------------------------------------------------------- /stream_fusion/services/postgresql/schemas/apikey_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/services/postgresql/schemas/apikey_schemas.py -------------------------------------------------------------------------------- /stream_fusion/services/postgresql/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/services/postgresql/utils.py -------------------------------------------------------------------------------- /stream_fusion/services/rd_conn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/services/rd_conn/__init__.py -------------------------------------------------------------------------------- /stream_fusion/services/rd_conn/token_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/services/rd_conn/token_manager.py -------------------------------------------------------------------------------- /stream_fusion/services/redis/redis_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/services/redis/redis_config.py -------------------------------------------------------------------------------- /stream_fusion/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/settings.py -------------------------------------------------------------------------------- /stream_fusion/static/admin/api_keys.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/static/admin/api_keys.html -------------------------------------------------------------------------------- /stream_fusion/static/admin/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/static/admin/base.html -------------------------------------------------------------------------------- /stream_fusion/static/admin/create_api_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/static/admin/create_api_key.html -------------------------------------------------------------------------------- /stream_fusion/static/admin/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/static/admin/login.html -------------------------------------------------------------------------------- /stream_fusion/static/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/static/config.js -------------------------------------------------------------------------------- /stream_fusion/static/dark_logo_streamfusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/static/dark_logo_streamfusion.png -------------------------------------------------------------------------------- /stream_fusion/static/docs/redoc.standalone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/static/docs/redoc.standalone.js -------------------------------------------------------------------------------- /stream_fusion/static/docs/swagger-ui-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/static/docs/swagger-ui-bundle.js -------------------------------------------------------------------------------- /stream_fusion/static/docs/swagger-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/static/docs/swagger-ui.css -------------------------------------------------------------------------------- /stream_fusion/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/static/index.html -------------------------------------------------------------------------------- /stream_fusion/static/logo-stream-fusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/static/logo-stream-fusion.png -------------------------------------------------------------------------------- /stream_fusion/static/logo_anim_stream-fusion-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/static/logo_anim_stream-fusion-3.gif -------------------------------------------------------------------------------- /stream_fusion/static/logo_anim_stream-fusion-3.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/static/logo_anim_stream-fusion-3.mp4 -------------------------------------------------------------------------------- /stream_fusion/static/stremio-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/static/stremio-bg.jpg -------------------------------------------------------------------------------- /stream_fusion/static/videos/en_download_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/static/videos/en_download_video.mp4 -------------------------------------------------------------------------------- /stream_fusion/static/videos/fr_download_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/static/videos/fr_download_video.mp4 -------------------------------------------------------------------------------- /stream_fusion/utils/cache/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/cache/__init__.py -------------------------------------------------------------------------------- /stream_fusion/utils/cache/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/cache/cache.py -------------------------------------------------------------------------------- /stream_fusion/utils/cache/cache_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/cache/cache_base.py -------------------------------------------------------------------------------- /stream_fusion/utils/cache/local_redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/cache/local_redis.py -------------------------------------------------------------------------------- /stream_fusion/utils/debrid/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/debrid/__init__.py -------------------------------------------------------------------------------- /stream_fusion/utils/debrid/alldebrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/debrid/alldebrid.py -------------------------------------------------------------------------------- /stream_fusion/utils/debrid/base_debrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/debrid/base_debrid.py -------------------------------------------------------------------------------- /stream_fusion/utils/debrid/get_debrid_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/debrid/get_debrid_service.py -------------------------------------------------------------------------------- /stream_fusion/utils/debrid/premiumize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/debrid/premiumize.py -------------------------------------------------------------------------------- /stream_fusion/utils/debrid/realdebrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/debrid/realdebrid.py -------------------------------------------------------------------------------- /stream_fusion/utils/debrid/torbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/debrid/torbox.py -------------------------------------------------------------------------------- /stream_fusion/utils/detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/detection.py -------------------------------------------------------------------------------- /stream_fusion/utils/filter/base_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/filter/base_filter.py -------------------------------------------------------------------------------- /stream_fusion/utils/filter/language_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/filter/language_filter.py -------------------------------------------------------------------------------- /stream_fusion/utils/filter/max_size_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/filter/max_size_filter.py -------------------------------------------------------------------------------- /stream_fusion/utils/filter/quality_exclusion_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/filter/quality_exclusion_filter.py -------------------------------------------------------------------------------- /stream_fusion/utils/filter/results_per_quality_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/filter/results_per_quality_filter.py -------------------------------------------------------------------------------- /stream_fusion/utils/filter/title_exclusion_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/filter/title_exclusion_filter.py -------------------------------------------------------------------------------- /stream_fusion/utils/filter_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/filter_results.py -------------------------------------------------------------------------------- /stream_fusion/utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/general.py -------------------------------------------------------------------------------- /stream_fusion/utils/jackett/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/jackett/__init__.py -------------------------------------------------------------------------------- /stream_fusion/utils/jackett/jackett_indexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/jackett/jackett_indexer.py -------------------------------------------------------------------------------- /stream_fusion/utils/jackett/jackett_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/jackett/jackett_result.py -------------------------------------------------------------------------------- /stream_fusion/utils/jackett/jackett_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/jackett/jackett_service.py -------------------------------------------------------------------------------- /stream_fusion/utils/metdata/cinemeta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/metdata/cinemeta.py -------------------------------------------------------------------------------- /stream_fusion/utils/metdata/metadata_provider_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/metdata/metadata_provider_base.py -------------------------------------------------------------------------------- /stream_fusion/utils/metdata/tmdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/metdata/tmdb.py -------------------------------------------------------------------------------- /stream_fusion/utils/models/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/models/media.py -------------------------------------------------------------------------------- /stream_fusion/utils/models/movie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/models/movie.py -------------------------------------------------------------------------------- /stream_fusion/utils/models/series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/models/series.py -------------------------------------------------------------------------------- /stream_fusion/utils/parse_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/parse_config.py -------------------------------------------------------------------------------- /stream_fusion/utils/parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stream_fusion/utils/parser/parser_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/parser/parser_service.py -------------------------------------------------------------------------------- /stream_fusion/utils/parser/parser_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/parser/parser_utils.py -------------------------------------------------------------------------------- /stream_fusion/utils/security/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/security/__init__.py -------------------------------------------------------------------------------- /stream_fusion/utils/security/security_api_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/security/security_api_key.py -------------------------------------------------------------------------------- /stream_fusion/utils/security/security_secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/security/security_secret.py -------------------------------------------------------------------------------- /stream_fusion/utils/sharewood/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stream_fusion/utils/sharewood/sharewood_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/sharewood/sharewood_api.py -------------------------------------------------------------------------------- /stream_fusion/utils/sharewood/sharewood_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/sharewood/sharewood_result.py -------------------------------------------------------------------------------- /stream_fusion/utils/sharewood/sharewood_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/sharewood/sharewood_service.py -------------------------------------------------------------------------------- /stream_fusion/utils/string_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/string_encoding.py -------------------------------------------------------------------------------- /stream_fusion/utils/torrent/torrent_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/torrent/torrent_item.py -------------------------------------------------------------------------------- /stream_fusion/utils/torrent/torrent_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/torrent/torrent_service.py -------------------------------------------------------------------------------- /stream_fusion/utils/torrent/torrent_smart_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/torrent/torrent_smart_container.py -------------------------------------------------------------------------------- /stream_fusion/utils/yggfilx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/yggfilx/__init__.py -------------------------------------------------------------------------------- /stream_fusion/utils/yggfilx/yggflix_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/yggfilx/yggflix_api.py -------------------------------------------------------------------------------- /stream_fusion/utils/yggfilx/yggflix_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/yggfilx/yggflix_result.py -------------------------------------------------------------------------------- /stream_fusion/utils/yggfilx/yggflix_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/yggfilx/yggflix_service.py -------------------------------------------------------------------------------- /stream_fusion/utils/zilean/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/zilean/__init__.py -------------------------------------------------------------------------------- /stream_fusion/utils/zilean/zilean_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/zilean/zilean_api.py -------------------------------------------------------------------------------- /stream_fusion/utils/zilean/zilean_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/zilean/zilean_result.py -------------------------------------------------------------------------------- /stream_fusion/utils/zilean/zilean_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/utils/zilean/zilean_service.py -------------------------------------------------------------------------------- /stream_fusion/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/version.py -------------------------------------------------------------------------------- /stream_fusion/web/__init__.py: -------------------------------------------------------------------------------- 1 | """WEB API for stream_fusion.""" 2 | -------------------------------------------------------------------------------- /stream_fusion/web/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stream_fusion/web/api/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/web/api/admin/__init__.py -------------------------------------------------------------------------------- /stream_fusion/web/api/admin/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/web/api/admin/views.py -------------------------------------------------------------------------------- /stream_fusion/web/api/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/web/api/auth/__init__.py -------------------------------------------------------------------------------- /stream_fusion/web/api/auth/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/web/api/auth/schemas.py -------------------------------------------------------------------------------- /stream_fusion/web/api/auth/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/web/api/auth/views.py -------------------------------------------------------------------------------- /stream_fusion/web/api/docs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/web/api/docs/__init__.py -------------------------------------------------------------------------------- /stream_fusion/web/api/docs/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/web/api/docs/views.py -------------------------------------------------------------------------------- /stream_fusion/web/api/monitoring/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/web/api/monitoring/__init__.py -------------------------------------------------------------------------------- /stream_fusion/web/api/monitoring/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/web/api/monitoring/views.py -------------------------------------------------------------------------------- /stream_fusion/web/api/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/web/api/router.py -------------------------------------------------------------------------------- /stream_fusion/web/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/web/application.py -------------------------------------------------------------------------------- /stream_fusion/web/lifespan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/web/lifespan.py -------------------------------------------------------------------------------- /stream_fusion/web/playback/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stream_fusion/web/playback/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/web/playback/router.py -------------------------------------------------------------------------------- /stream_fusion/web/playback/stream/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/web/playback/stream/__init__.py -------------------------------------------------------------------------------- /stream_fusion/web/playback/stream/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/web/playback/stream/schemas.py -------------------------------------------------------------------------------- /stream_fusion/web/playback/stream/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/web/playback/stream/views.py -------------------------------------------------------------------------------- /stream_fusion/web/root/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/web/root/__init__.py -------------------------------------------------------------------------------- /stream_fusion/web/root/catalog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/web/root/catalog/__init__.py -------------------------------------------------------------------------------- /stream_fusion/web/root/catalog/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/web/root/catalog/schemas.py -------------------------------------------------------------------------------- /stream_fusion/web/root/catalog/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/web/root/catalog/views.py -------------------------------------------------------------------------------- /stream_fusion/web/root/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/web/root/config/__init__.py -------------------------------------------------------------------------------- /stream_fusion/web/root/config/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/web/root/config/schemas.py -------------------------------------------------------------------------------- /stream_fusion/web/root/config/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/web/root/config/views.py -------------------------------------------------------------------------------- /stream_fusion/web/root/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/web/root/router.py -------------------------------------------------------------------------------- /stream_fusion/web/root/search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/web/root/search/__init__.py -------------------------------------------------------------------------------- /stream_fusion/web/root/search/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/web/root/search/schemas.py -------------------------------------------------------------------------------- /stream_fusion/web/root/search/stremio_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/web/root/search/stremio_parser.py -------------------------------------------------------------------------------- /stream_fusion/web/root/search/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeDrive/stream-fusion/HEAD/stream_fusion/web/root/search/views.py --------------------------------------------------------------------------------