-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add Doodstream and SpeedFiles to menu and args
- Loading branch information
1 parent
29ab798
commit 4a79118
Showing
4 changed files
with
15 additions
and
9 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
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
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,2 +1,4 @@ | ||
def doodstream_get_direct_link() -> str: | ||
return "Doodstream support is not implemented yet." | ||
def doodstream_get_direct_link(soup: str) -> str: | ||
# return "Doodstream support is not implemented yet." | ||
print(soup) | ||
return |
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,2 +1,4 @@ | ||
def speedfiles_get_direct_link() -> str: | ||
return "Speedfiles support is not implemented yet." | ||
def speedfiles_get_direct_link(soup) -> str: | ||
# return "Speedfiles support is not implemented yet." | ||
print(soup) | ||
return |