Skip to content

Commit c1b93e7

Browse files
author
João Silva
committed
!44 rename package from probely_cli to just probely
1 parent 52871b3 commit c1b93e7

69 files changed

Lines changed: 320 additions & 329 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

examples/call_targets_sdk.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import json
22

3-
from probely_cli import Probely, ProbelyException, list_targets
4-
from probely_cli.exceptions import ProbelyRequestFailed
3+
from probely import Probely, ProbelyException, list_targets
4+
from probely.exceptions import ProbelyRequestFailed
55

66
if __name__ == "__main__":
77

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import argparse
22
import logging
33

4-
from probely_cli import Probely, settings
5-
from probely_cli.exceptions import ProbelyCLIValidation, ProbelyException
4+
from probely import Probely, settings
5+
from probely.exceptions import ProbelyCLIValidation, ProbelyException
66

77
logger = logging.getLogger(__name__)
88

File renamed without changes.
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import logging
22

3-
from probely_cli.cli.commands.apply.schemas import ApplyFileSchema
4-
from probely_cli.cli.common import validate_and_retrieve_yaml_content
5-
from probely_cli.exceptions import ProbelyBadRequest, ProbelyException
6-
from probely_cli.sdk.targets import add_target
3+
from probely.cli.commands.apply.schemas import ApplyFileSchema
4+
from probely.cli.common import validate_and_retrieve_yaml_content
5+
from probely.exceptions import ProbelyBadRequest, ProbelyException
6+
from probely.sdk.targets import add_target
77

88
logger = logging.getLogger(__name__)
99

File renamed without changes.
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import argparse
22

3-
from probely_cli.cli.commands.findings.schemas import FindingsApiFiltersSchema
4-
from probely_cli.cli.common import prepare_filters_for_api
5-
from probely_cli.cli.enums import EntityTypeEnum, OutputEnum
6-
from probely_cli.cli.renderers import OutputRenderer
7-
from probely_cli.exceptions import ProbelyCLIValidation
8-
from probely_cli.sdk.findings import list_findings, retrieve_findings
3+
from probely.cli.commands.findings.schemas import FindingsApiFiltersSchema
4+
from probely.cli.common import prepare_filters_for_api
5+
from probely.cli.enums import EntityTypeEnum, OutputEnum
6+
from probely.cli.renderers import OutputRenderer
7+
from probely.exceptions import ProbelyCLIValidation
8+
from probely.sdk.findings import list_findings, retrieve_findings
99

1010

1111
def findings_get_command_handler(args: argparse.Namespace):

0 commit comments

Comments
 (0)