-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
12 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,19 @@ | ||
from __modules__.header_module import app_header | ||
from __modules__.youtube_search_Module import media_search | ||
from __modules__.youtube_search_Module import media_search | ||
from __modules__.youtube_Media_Downloader import downloadMedia | ||
import asyncio | ||
|
||
|
||
async def media_search(): | ||
media_search() | ||
|
||
async def Download_Media(): | ||
downloadMedia() | ||
|
||
async def main(): | ||
app_header() | ||
await media_search() | ||
|
||
# await media_search() | ||
await downloadMedia() | ||
|
||
if __name__ == '__main__': | ||
asyncio.run(main()) |
Binary file added
BIN
+3.5 KB
... Searcher and Downloader/__modules__/__pycache__/youtube_Media_Downloader.cpython-312.pyc
Binary file not shown.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters