Skip to content

Commit 11da723

Browse files
committed
remove ip parameter since it is not supported.
1 parent 5678ff9 commit 11da723

2 files changed

Lines changed: 0 additions & 16 deletions

File tree

domaintools/api.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1427,8 +1427,6 @@ def iphotlist(self, **kwargs) -> FeedsResults:
14271427
14281428
fromBeginning: bool: Requires a sessionID. When used with a new session ID, returns the first hour of data in the time window (rather than the last). Returns an error if the session ID already exists
14291429
1430-
ip: str: Filter for a specific IPv4 address.
1431-
14321430
top: int: Limits the number of results in the response payload. Primarily intended for testing. When you apply this parameter to risk feeds, results are sorted by all_threats_combined_percent (descending).
14331431
"""
14341432
validate_feeds_parameters(kwargs)
@@ -1463,8 +1461,6 @@ def iprisk(self, **kwargs) -> FeedsResults:
14631461
14641462
fromBeginning: bool: Requires a sessionID. When used with a new session ID, returns the first hour of data in the time window (rather than the last). Returns an error if the session ID already exists
14651463
1466-
ip: str: Filter for a specific IPv4 address.
1467-
14681464
top: int: Limits the number of results in the response payload. Primarily intended for testing. When you apply this parameter to risk feeds, results are sorted by all_threats_combined_percent (descending).
14691465
"""
14701466
validate_feeds_parameters(kwargs)

domaintools/cli/commands/feeds.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -622,12 +622,6 @@ def feeds_iphotlist(
622622
"--frombeginning",
623623
help="Requires a sessionID. When used with a new session ID, returns the first hour of data in the time window (rather than the last). Returns an error if the session ID already exists",
624624
),
625-
ip: str = typer.Option(
626-
None,
627-
"-ip",
628-
"--ipaddr",
629-
help="Filter for a specific IPv4 address.",
630-
),
631625
top: int = typer.Option(
632626
None,
633627
"--top",
@@ -708,12 +702,6 @@ def feeds_iprisk(
708702
"--frombeginning",
709703
help="Requires a sessionID. When used with a new session ID, returns the first hour of data in the time window (rather than the last). Returns an error if the session ID already exists",
710704
),
711-
ip: str = typer.Option(
712-
None,
713-
"-ip",
714-
"--ipaddr",
715-
help="Filter for a specific IPv4 address.",
716-
),
717705
top: int = typer.Option(
718706
None,
719707
"--top",

0 commit comments

Comments
 (0)