Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Apiresult #103

Open
wants to merge 27 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ smmap2==2.0.3
urllib3==1.22
pep8==1.7.1
python-decouple==3.1
stackapi
23 changes: 23 additions & 0 deletions search/templates/cosmos/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,30 @@
font-size: 16px !important;
line-height: 1.2 !important;
}
#myDIV {
width: 100%;
padding: 50px 0;
text-align: center;
background-color: floralwhite;
margin-top: 20px;
display: none !important;
}
.ff {
display: block !important;
}
.hd{
display: none !important;
}
</style>
<script>
jQuery(function(){
jQuery('class of view button').click(function(){
jQuery('#myDIV').removeClass(' hd ');
jQuery('#myDIV').addClass(' ff ');


});
</script>
{% block style %}
{% endblock %}

Expand Down
25 changes: 25 additions & 0 deletions search/templates/cosmos/searchresults.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,31 @@ <h4 class="card-title">
aria-haspopup="true" aria-expanded="false">
Solutions
</button>
<div>
<div >
<ul class="sol_tab nav nav-tabs">
<li class="active">
<a href= "#tab1default" style="color: #1b1e21" data-toggle="tab">
<img src="../static/images/wikipedia.png"/>
</a>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please check indentations.

</li>
<li>
<a href="#tab2default" style="color: #1b1e21" data-toggle="tab"><img src="../static/images/stack-overflow.png"/></a>
</li>
</ul>

</div>
<div class="tab-content">
<div class="tab-pane fade in active" id="tab1default">
<p><a href="{{ res_wiki.url }}" target="blank"/>{{ res_wiki.heading }}</p>
</div>
<div class="tab-pane fade" id="tab2default">
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The ids of those dropdown need be difference.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will you please tell about which dropdown you are talking, because as of now there is no dropdown in that script.

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry, what I want to say is collapse, you could try to clicking wiki/stack on second result, then you get it.

{% for x in res_stack %}
<p><a href="{{ x.url }}" target="blank"/>{{ x.title }}</p>
{% endfor %}
</div>

</div>
<div class="dropdown-menu" aria-labelledby="soln">
{% for file in entry.files %}
<a href="https://github.com/OpenGenus/cosmos/blob/master/code/{{ entry.path }}/{{ file }}"
Expand Down
53 changes: 51 additions & 2 deletions search/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
import random
from random import shuffle
import re
from wikiapi import WikiApi
from stackapi import StackAPI

from search.templatetags.calculator import getResult

COSMOS_SEP = '_'
Expand Down Expand Up @@ -100,6 +103,47 @@ def is_file_extension_ignored(file_):
return file_.split('.')[-1] in ['md', 'MD']


def stackoverflow(query):
if query.find(" ")==-1:
query += ' algorithm'

site = StackAPI('stackoverflow')

data = site.fetch('similar', order='desc',sort='relevance', title=query)
# print(data)
list = data['items']
j = 0
result = []
for x in list:
res = {
'title': x['title'],
'url': x['link'],
'qid': x['question_id'],
'view': x['view_count'],
'score': x['score']
}
result.append(res)
j += 1
if j > 5:
break
return result


def wiki(query):
wiki = WikiApi()
wiki_temp=wiki.find(query)
if(len(wiki_temp)!=0):
wiki_res1 = wiki.get_article(wiki_temp[0])
return wiki_res1
else:
wiki_te = wiki.find('Barack Obama')
wiki_res1 = wiki.get_article(wiki_te[0])
wiki_res1.heading = '404_NOT_FOUND'
wiki_res1.url = '#'
return wiki_res1



# Search query
def query(request):
global algo_name, title
Expand All @@ -108,8 +152,11 @@ def query(request):

if '\\' in query:
query = query.replace('\\', '')

res = getResult(query)

stk_res = stackoverflow(query)
wiki_res = wiki(query)

if type(res) == int or type(res) == float:
exprResult = round(res, 3)
title = "Calculator"
Expand Down Expand Up @@ -170,7 +217,9 @@ def query(request):
'recommend': rec[:5],
'query': query,
'result_val': exprResult,
'algo_name': algo_name
'algo_name': algo_name,
'res_stack': stk_res,
'res_wiki': wiki_res
})

elif request.method == 'POST':
Expand Down