We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01751b2 commit 31ef6e5Copy full SHA for 31ef6e5
1 file changed
src/arguments/utility.py
@@ -32,6 +32,11 @@ def __init__(self):
32
self.search_content_url = "https://api.stackexchange.com/"
33
34
def __get_search_url(self, question, tags):
35
+ """
36
+ This function returns the url that contains all the custom
37
+ data provided by the user such as tags and question, which
38
+ can finally be used to get answers
39
40
return f"{self.search_content_url}/2.2/search/advanced?order=desc&sort=relevance&tagged={tags}&title={question}&site=stackoverflow"
41
42
def make_request(self, que, tag: str):
0 commit comments