AndreiDrang/python3-anticaptcha

View on GitHub

Showing 22 of 23 total issues

File control.py has 514 lines of code (exceeds 250 allowed). Consider refactoring.
Open

from typing import Optional

from .core.base import BaseCaptcha
from .core.enum import CaptchaTypeEnm, ControlPostfixEnm

Severity: Major
Found in src/python3_anticaptcha/control.py - About 1 day to fix

    File SquareNetTextTask.py has 314 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    import os
    import time
    import base64
    import asyncio
    import hashlib
    Severity: Minor
    Found in src/python3_anticaptcha/SquareNetTextTask.py - About 3 hrs to fix

      File ImageToTextTask.py has 306 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      import os
      import time
      import base64
      import asyncio
      import hashlib
      Severity: Minor
      Found in src/python3_anticaptcha/ImageToTextTask.py - About 3 hrs to fix

        Function captcha_handler has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
        Open

            def captcha_handler(
                self,
                captcha_link: str = None,
                captcha_file: str = None,
                captcha_base64: str = None,
        Severity: Minor
        Found in src/python3_anticaptcha/ImageToTextTask.py - About 1 hr to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function _get_result has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
        Open

            def _get_result(self) -> GetTaskResultResponseSer:
                """
                Method send SYNC `getTaskResult` request to service and wait for result
                """
                # initial waiting
        Severity: Minor
        Found in src/python3_anticaptcha/core/base.py - About 1 hr to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function captcha_handler has 8 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            def captcha_handler(
        Severity: Major
        Found in src/python3_anticaptcha/SquareNetTextTask.py - About 1 hr to fix

          Function get_sync_result has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

          def get_sync_result(result_payload: dict, sleep_time: int, **kwargs) -> dict:
              # create a session
              session = requests.Session()
              # set the number of attempts to connect to the server in case of error
              session.mount("http://", HTTPAdapter(max_retries=5))
          Severity: Minor
          Found in src/python3_anticaptcha/get_answer.py - About 45 mins to fix

          Cognitive Complexity

          Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

          A method's cognitive complexity is based on a few simple rules:

          • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
          • Code is considered more complex for each "break in the linear flow of the code"
          • Code is considered more complex when "flow breaking structures are nested"

          Further reading

          Function __init__ has 6 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              def __init__(
          Severity: Minor
          Found in src/python3_anticaptcha/GeeTestTask.py - About 45 mins to fix

            Function __init__ has 6 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                def __init__(
            Severity: Minor
            Found in src/python3_anticaptcha/ImageToTextTask.py - About 45 mins to fix

              Avoid deeply nested control flow statements.
              Open

                                          if task_result_data.errorId == 0:
                                              if task_result_data.status == ResponseStatusEnm.processing:
                                                  time.sleep(self.__sleep_time)
                                              else:
                                                  task_result_data.taskId = self._get_result_params.taskId
              Severity: Major
              Found in src/python3_anticaptcha/core/base.py - About 45 mins to fix

                Avoid deeply nested control flow statements.
                Open

                                    if json_result["status"] == "processing":
                                        await asyncio.sleep(sleep_time)
                                    # otherwise return response
                                    else:
                                        json_result.update({"taskId": result_payload["taskId"]})
                Severity: Major
                Found in src/python3_anticaptcha/get_answer.py - About 45 mins to fix

                  Function __init__ has 6 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                      def __init__(
                  Severity: Minor
                  Found in src/python3_anticaptcha/GeeTestTask.py - About 45 mins to fix

                    Function captcha_handler has 5 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                        def captcha_handler(
                    Severity: Minor
                    Found in src/python3_anticaptcha/ReCaptchaV3TaskProxyless.py - About 35 mins to fix

                      Function __init__ has 5 arguments (exceeds 4 allowed). Consider refactoring.
                      Open

                          def __init__(
                      Severity: Minor
                      Found in src/python3_anticaptcha/GeeTestTaskProxyless.py - About 35 mins to fix

                        Function __init__ has 5 arguments (exceeds 4 allowed). Consider refactoring.
                        Open

                            def __init__(
                        Severity: Minor
                        Found in src/python3_anticaptcha/ImageToTextTask.py - About 35 mins to fix

                          Function captcha_handler has 5 arguments (exceeds 4 allowed). Consider refactoring.
                          Open

                              def captcha_handler(
                          Severity: Minor
                          Found in src/python3_anticaptcha/ImageToTextTask.py - About 35 mins to fix

                            Function __init__ has 5 arguments (exceeds 4 allowed). Consider refactoring.
                            Open

                                def __init__(
                            Severity: Minor
                            Found in src/python3_anticaptcha/GeeTestTaskProxyless.py - About 35 mins to fix

                              Function __init__ has 5 arguments (exceeds 4 allowed). Consider refactoring.
                              Open

                                  def __init__(
                              Severity: Minor
                              Found in src/python3_anticaptcha/SquareNetTextTask.py - About 35 mins to fix

                                Function __init__ has 5 arguments (exceeds 4 allowed). Consider refactoring.
                                Open

                                    def __init__(
                                Severity: Minor
                                Found in src/python3_anticaptcha/CustomCaptchaTask.py - About 35 mins to fix

                                  Function __init__ has 5 arguments (exceeds 4 allowed). Consider refactoring.
                                  Open

                                      def __init__(
                                  Severity: Minor
                                  Found in src/python3_anticaptcha/CustomCaptchaTask.py - About 35 mins to fix
                                    Severity
                                    Category
                                    Status
                                    Source
                                    Language