summaryrefslogtreecommitdiffstats
path: root/Py_Load_File.py
diff options
context:
space:
mode:
Diffstat (limited to 'Py_Load_File.py')
-rw-r--r--Py_Load_File.py28
1 files changed, 0 insertions, 28 deletions
diff --git a/Py_Load_File.py b/Py_Load_File.py
deleted file mode 100644
index 157d51bfd..000000000
--- a/Py_Load_File.py
+++ /dev/null
@@ -1,28 +0,0 @@
-from download_thread import Status
-
-class PyLoadFile:
- """ represents the url or file
- """
- def __init__(self, parent, plugin, url):
- self.parent = parent
- self.id = None
- pluginClass = getattr(plugin, plugin.__name__)
- self.plugin = pluginClass(self)
- self.url = url
- self.filename = "filename"
- self.download_folder = ""
- self.status = Status(self.id)
-
-
- def _get_my_plugin():
- plugins = parent.get_avail_plugins()
-
-
- def prepareDownload(self):
- self.status.exists = self.plugin.file_exists()
- if self.status.exists:
- self.status.filename = self.plugin.get_file_name()
- self.status.waituntil = self.plugin.time_plus_wait
- self.status.url = self.plugin.get_file_url()
- self.status.want_reconnect = self.plugin.want_reconnect
-