File tree 3 files changed +7
-6
lines changed
3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 1
1
Change Log
2
2
3
- Version 1.1.0 :
3
+ Version 1.1.1 :
4
4
5
- + Added Walmart search query
6
- + Removed Alibaba search, however if it has popular demand it might be added again
7
- + Fixed Dictionary bug, apologies for that
8
- + Added Microsoft Explore
5
+ + Added GitHub
Original file line number Diff line number Diff line change @@ -54,3 +54,7 @@ def ExploreMicrosoft(query):
54
54
query_URL = "https://www.microsoft.com/en-us/search/explore?q=" + query
55
55
return query_URL
56
56
57
+ def SearchGitHub (query ):
58
+ query = query .replace (" " , "+" )
59
+ query_URL = "https://github.com/search?q=" + query
60
+ return query_URL
Original file line number Diff line number Diff line change 12
12
13
13
setup (
14
14
name = 'Searchor' ,
15
- version = '1.1.0 ' ,
15
+ version = '1.1.1 ' ,
16
16
description = 'Math package' ,
17
17
long_description = open ('README.txt' ).read () + '\n \n ' + open ('CHANGELOG.txt' ).read (),
18
18
url = 'https://github.com/ArjunSharda/Searchor' ,
You can’t perform that action at this time.
0 commit comments