You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Returns new domains as they are either discovered in domain registration information, observed by our global sensor network, or reported by trusted third parties"""
Copy file name to clipboardExpand all lines: domaintools/base_results.py
+21-16Lines changed: 21 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -77,6 +77,23 @@ def _wait_time(self):
77
77
78
78
returnwait_for
79
79
80
+
def_get_session_params(self):
81
+
parameters=deepcopy(self.kwargs)
82
+
parameters.pop("output_format", None)
83
+
parameters.pop(
84
+
"format", None
85
+
) # For some unknownn reasons, even if "format" is not included in the cli params for feeds endpoint, it is being populated thus we need to remove it. Happens only if using CLI.
) # For some unknownn reasons, even if "format" is not included in the cli params for feeds endpoint, it is being populated thus we need to remove it. Happens only if using CLI.
0 commit comments