BaptisteZloch/Quant-Invest-Lab

View on GitHub
quant_invest_lab/data_provider.py

Summary

Maintainability
C
7 hrs
Test Coverage

File data_provider.py has 363 lines of code (exceeds 250 allowed). Consider refactoring.
Open

from datetime import datetime
from functools import lru_cache
from typing import Optional, Callable, Literal
import os
import pandas as pd
Severity: Minor
Found in quant_invest_lab/data_provider.py - About 4 hrs to fix

    Function download_history has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
    Open

            def download_history(
                self, symbol: str, since: str, timeframe: Timeframe, jobs: int = -1
            ) -> pd.DataFrame:
                """Download a set of historical data and save it.
                Args:
    Severity: Minor
    Found in quant_invest_lab/data_provider.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

    Consider simplifying this complex logical expression.
    Open

            if base_currency == None and quote_currency == None:
                return symbols
            elif base_currency == None and quote_currency is not None:
                return list(
                    filter(
    Severity: Major
    Found in quant_invest_lab/data_provider.py - About 40 mins to fix

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

      def download_crypto_historical_data(
      Severity: Minor
      Found in quant_invest_lab/data_provider.py - About 35 mins to fix

        There are no issues that match your filters.

        Category
        Status