Skip to content

Commit f046d6b

Browse files
committed
v5
1 parent 0989ec1 commit f046d6b

File tree

41 files changed

+62
-88
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+62
-88
lines changed

GUI/searchapp/api/animeunity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212
# External utilities
13-
from StreamingCommunity.Util.config_json import config_manager
13+
from StreamingCommunity.Util import config_manager
1414
from StreamingCommunity.Api.Service.animeunity.util.ScrapeSerie import ScrapeSerieAnime
1515

1616

GUI/searchapp/api/streamingcommunity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212
# External utilities
13-
from StreamingCommunity.Util.config_json import config_manager
13+
from StreamingCommunity.Util import config_manager
1414
from StreamingCommunity.Api.Service.streamingcommunity.util.ScrapeSerie import GetSerieInfo
1515

1616

StreamingCommunity/Api/Player/vixcloud.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
console = Console()
2121

2222

23-
2423
class WindowVideo:
2524
def __init__(self, data: Dict[str, Any]):
2625
self.data = data

StreamingCommunity/Api/Service/altadefinizione/film.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,8 @@
1010

1111

1212
# Internal utilities
13-
from StreamingCommunity.Util.os import os_manager
13+
from StreamingCommunity.Util import os_manager, start_message, config_manager
1414
from StreamingCommunity.Util.http_client import create_client, get_headers
15-
from StreamingCommunity.Util.message import start_message
16-
from StreamingCommunity.Util.config_json import config_manager
1715
from StreamingCommunity.Lib.HLS import HLS_Downloader
1816

1917

StreamingCommunity/Api/Service/altadefinizione/series.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@
1010

1111

1212
# Internal utilities
13-
from StreamingCommunity.Util.message import start_message
14-
from StreamingCommunity.Util.config_json import config_manager
13+
from StreamingCommunity.Util.message import start_message, config_manager
1514
from StreamingCommunity.Lib.HLS import HLS_Downloader
1615

1716

StreamingCommunity/Api/Service/animeunity/serie.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@
1010

1111

1212
# Internal utilities
13-
from StreamingCommunity.Util.os import os_manager
14-
from StreamingCommunity.Util.message import start_message
13+
from StreamingCommunity.Util import os_manager, start_message
1514
from StreamingCommunity.Lib.MP4 import MP4_Downloader
1615

1716

StreamingCommunity/Api/Service/animeworld/film.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88

99

1010
# Internal utilities
11-
from StreamingCommunity.Util.os import os_manager
12-
from StreamingCommunity.Util.message import start_message
11+
from StreamingCommunity.Util import os_manager, start_message
1312
from StreamingCommunity.Lib.MP4 import MP4_Downloader
1413

1514

StreamingCommunity/Api/Service/animeworld/serie.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@
1010

1111

1212
# Internal utilities
13-
from StreamingCommunity.Util.os import os_manager
14-
from StreamingCommunity.Util.message import start_message
13+
from StreamingCommunity.Util import os_manager, start_message
1514
from StreamingCommunity.Lib.MP4 import MP4_Downloader
1615

1716

StreamingCommunity/Api/Service/crunchyroll/film.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,7 @@
99

1010

1111
# Internal utilities
12-
from StreamingCommunity.Util.message import start_message
13-
from StreamingCommunity.Util.config_json import config_manager
14-
from StreamingCommunity.Util.os import os_manager
12+
from StreamingCommunity.Util import config_manager, os_manager, start_message
1513
from StreamingCommunity.Lib.DASH.downloader import DASH_Downloader
1614

1715

StreamingCommunity/Api/Service/crunchyroll/series.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@
1111

1212

1313
# Internal utilities
14-
from StreamingCommunity.Util.os import os_manager
15-
from StreamingCommunity.Util.message import start_message
16-
from StreamingCommunity.Util.config_json import config_manager
14+
from StreamingCommunity.Util import os_manager, config_manager, start_message
1715
from StreamingCommunity.Lib.DASH.downloader import DASH_Downloader
1816

1917

0 commit comments

Comments
 (0)