-
Notifications
You must be signed in to change notification settings - Fork 46
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
1 parent
9afaa63
commit 8df5c31
Showing
7 changed files
with
414 additions
and
45 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,2 +1,4 @@ | ||
PyQt5 | ||
PyInstaller | ||
PyInstaller | ||
beautifulsoup4 | ||
html5lib |
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
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
|
||
class StorageProvider(): | ||
NODE_BATCH_UPDATE_COUNT = 1 | ||
|
||
def __init__(self, url): | ||
self.url = url | ||
self.should_stop = False | ||
|
||
@staticmethod | ||
def is_provider(url): | ||
return False | ||
|
||
def check(self): | ||
return True | ||
|
||
def get_download_url(self, relative_path): | ||
return relative_path | ||
|
||
def hostname(self): | ||
return self.url | ||
|
||
def yield_dirlist(self): | ||
pass | ||
|
||
def get_default_error_message(self): | ||
pass | ||
|
||
def stop(self): | ||
self.should_stop = True | ||
|
Oops, something went wrong.