aboutsummaryrefslogtreecommitdiff
path: root/source/search.py
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-06-24 21:09:25 +0200
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-06-24 21:09:25 +0200
commit6f800a80e29b3d91f5ea8a355f098c2a02b7013a (patch)
treeb9e9f80909bb05bf9eea27942d7fb9ff77d1a777 /source/search.py
parentUpdated the /management template. (diff)
downloadnewspipe-6f800a80e29b3d91f5ea8a355f098c2a02b7013a.tar.gz
newspipe-6f800a80e29b3d91f5ea8a355f098c2a02b7013a.tar.bz2
newspipe-6f800a80e29b3d91f5ea8a355f098c2a02b7013a.zip
Added index_base view in order to launch the indexing.
Diffstat (limited to 'source/search.py')
-rw-r--r--source/search.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/search.py b/source/search.py
index fd412a7e..218d2436 100644
--- a/source/search.py
+++ b/source/search.py
@@ -75,7 +75,7 @@ def search(term):
if __name__ == "__main__":
# Point of entry in execution mode.
- create_index()
- """results = search("Nothomb")
+ #create_index()
+ results = search("Nothomb")
for article in results:
- print(article)""" \ No newline at end of file
+ print(article) \ No newline at end of file
bgstack15