From e5776a46c059bbecdd91b02122b79f712159436d Mon Sep 17 00:00:00 2001 From: Stefan Karner Date: Tue, 7 May 2019 15:44:06 +0200 Subject: [PATCH] Update docstrings in webarchiv.py --- webarchiv.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/webarchiv.py b/webarchiv.py index adb0014..fbbc45b 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 -- GitLab