Skip to content

Commit

Permalink
Merge pull request #5 from ArjunSharda/4-add-github-search-queries-fu…
Browse files Browse the repository at this point in the history
…nction

Add GitHub search queries function
  • Loading branch information
ArjunSharda authored Aug 28, 2022
2 parents 2cb2238 + 28e9d91 commit 8c42371
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
7 changes: 2 additions & 5 deletions Code/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
Change Log

Version 1.1.0:
Version 1.1.1:

+ Added Walmart search query
+ Removed Alibaba search, however if it has popular demand it might be added again
+ Fixed Dictionary bug, apologies for that
+ Added Microsoft Explore
+ Added GitHub
4 changes: 4 additions & 0 deletions Code/Searchor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,7 @@ def ExploreMicrosoft(query):
query_URL = "https://www.microsoft.com/en-us/search/explore?q=" + query
return query_URL

def SearchGitHub(query):
query = query.replace(" ", "+")
query_URL = "https://github.com/search?q=" + query
return query_URL
2 changes: 1 addition & 1 deletion Code/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setup(
name='Searchor',
version='1.1.0',
version='1.1.1',
description='Math package',
long_description=open('README.txt').read() + '\n\n' + open('CHANGELOG.txt').read(),
url='https://github.com/ArjunSharda/Searchor',
Expand Down

0 comments on commit 8c42371

Please sign in to comment.