summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/ContentProvider.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-09-14 15:01:49 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-09-14 15:01:49 +0200
commita69081e4aeb47b016c90026f0902348a18d1b3c0 (patch)
tree05edfbe764d25305def18fa33a697e02ee0c41ad /pyload/plugins/ContentProvider.py
parentsome fixes for py 2.5 (diff)
downloadpyload-a69081e4aeb47b016c90026f0902348a18d1b3c0.tar.xz
stub class for content provider
Diffstat (limited to 'pyload/plugins/ContentProvider.py')
-rw-r--r--pyload/plugins/ContentProvider.py34
1 files changed, 34 insertions, 0 deletions
diff --git a/pyload/plugins/ContentProvider.py b/pyload/plugins/ContentProvider.py
new file mode 100644
index 000000000..c30186376
--- /dev/null
+++ b/pyload/plugins/ContentProvider.py
@@ -0,0 +1,34 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+
+###############################################################################
+# Copyright(c) 2008-2013 pyLoad Team
+# http://www.pyload.org
+#
+# This file is part of pyLoad.
+# pyLoad is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# Subjected to the terms and conditions in LICENSE
+#
+# @author: RaNaN
+###############################################################################
+
+
+from Base import Base
+
+class ContentProvider(Base):
+ """
+ Base class to implement services that enables the user to search for content and add it for downloading.
+ """
+
+ def newest(self):
+ """ TODO """
+
+ def search(self, query):
+ """ TODO """
+
+ def suggest(self, query):
+ """ TODO """