diff --git a/webarchiv.py b/webarchiv.py index adb00148b31239e2e740a6f31722f9d53c697fa4..fbbc45b9be35ffb393014d84ff8dbed9e85c3f8d 100644 --- a/webarchiv.py +++ b/webarchiv.py @@ -117,14 +117,13 @@ class WebarchivSession: def fulltext_search(self, query_string, from_=None, to_=None): """ Start a fulltext search query in the Webarchive. - The current status of running queries can be read via status_open_queries(). :param query_string: String to search for :param from_: Optional earliest date bound for the search in the format YYYYMM. :param to_: Optional latest date bound for the search in the format YYYYMM. - :return: None + :return: HTTP Response object """ params = {'q': query_string} if from_: @@ -143,14 +142,13 @@ class WebarchivSession: def wayback_search(self, query_string, from_=None, to_=None): """ Start a wayback search query in the Webarchive. - The current status of running queries can be read via status_open_queries(). :param query_string: String to search for :param from_: Optional earliest date bound for the search in the format YYYYMM. :param to_: Optional latest date bound for the search in the format YYYYMM. - :return: None + :return: HTTP Response object """ params = {'q': query_string} if from_: @@ -201,7 +199,6 @@ class WebarchivSession: def domain_name_search(self, query_string, page_=1, pagesize_=100): """ Start a domain name search in the Webarchive. - The current status of running queries can be read via status_open_queries(). :param query_string: String to search for :param page_: The page number parameter works with the page size parameter to control the offset of the records returned in the results. Default value is 1 @@ -225,7 +222,6 @@ class WebarchivSession: def histogram_search(self, query_string, interval_=3, from_=None, to_=None): """ Start a domain name search in the Webarchive. - The current status of running queries can be read via status_open_queries(). :param query_string: String to search for :param page_: The page number parameter works with the page size parameter to control the offset of the records returned in the results. Default value is 1