diff options
Diffstat (limited to 'Py_Load_File.py')
-rw-r--r-- | Py_Load_File.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Py_Load_File.py b/Py_Load_File.py new file mode 100644 index 000000000..d5427ae24 --- /dev/null +++ b/Py_Load_File.py @@ -0,0 +1,18 @@ +from download_thread import Status + +class PyLoadFile: + """ represents the url or file + """ + def __init__(self, parent, url): + self.parent = parent + self.id = None + self.plugin = None + self.url = url + self.download_folder = "" + self.status = Status() + + def _get_my_plugin(): + plugins = parent.get_avail_plugins() + + +
\ No newline at end of file |