scottwernervt/cloudstorage

View on GitHub
src/cloudstorage/drivers/google.py

Summary

Maintainability
D
1 day
Test Coverage

File google.py has 407 lines of code (exceeds 250 allowed). Consider refactoring.
Open

"""Google Cloud Storage Driver."""
import base64
import codecs
import logging
import os
Severity: Minor
Found in src/cloudstorage/drivers/google.py - About 5 hrs to fix

    GoogleStorageDriver has 27 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class GoogleStorageDriver(Driver):
        """Driver for interacting with Google Cloud Storage.
    
        The driver will check for `GOOGLE_APPLICATION_CREDENTIALS` environment
        variable before connecting. If not found, the driver will use service
    Severity: Minor
    Found in src/cloudstorage/drivers/google.py - About 3 hrs to fix

      Function generate_container_upload_url has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
      Open

          def generate_container_upload_url(
              self,
              container: Container,
              blob_name: str,
              expires: int = 3600,
      Severity: Minor
      Found in src/cloudstorage/drivers/google.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 generate_container_upload_url has 10 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          def generate_container_upload_url(
      Severity: Major
      Found in src/cloudstorage/drivers/google.py - About 1 hr to fix

        Function upload_blob has 10 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            def upload_blob(
        Severity: Major
        Found in src/cloudstorage/drivers/google.py - About 1 hr to fix

          Function upload_blob has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
          Open

              def upload_blob(
                  self,
                  container: Container,
                  filename: FileLike,
                  blob_name: str = None,
          Severity: Minor
          Found in src/cloudstorage/drivers/google.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 generate_blob_download_url has 5 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              def generate_blob_download_url(
          Severity: Minor
          Found in src/cloudstorage/drivers/google.py - About 35 mins to fix

            There are no issues that match your filters.

            Category
            Status