brdata

module crawlers.valor


class ValorEconomicoCrawler

Crawler for Valor Economico.

Examples:

import brdata
crawler = brdata.ValorEconomicoCrawler()
crawler.get_recommended_wallet_by_month(1, 2022)

method __init__

__init__()

method get_page_soup

get_page_soup(
    month: int,
    year: int,
    enable_cache: bool = True,
    **kwargs
)  BeautifulSoup

get_recommended_wallet(
    start_date: str,
    end_date: str,
    to_pandas: bool = True,
    enable_cache: bool = True
)

Get recommended wallet.

Args:

Returns:


get_recommended_wallet_by_month(
    month: int,
    year: int,
    to_pandas: bool = True,
    enable_cache: bool = True
)  DataFrame

Get recommended wallet for a given month and year.

Args:

Returns:


method get_wallets_from_institutions

get_wallets_from_institutions(
    start_date: str,
    end_date: str,
    to_pandas: bool = True,
    enable_cache: bool = True
)

Get wallets from institutions.

Args:

Returns:


method get_wallets_from_institutions_by_month

get_wallets_from_institutions_by_month(
    month: int,
    year: int,
    to_pandas: bool = True,
    enable_cache: bool = True
)  DataFrame

Get wallets from institutions for a given month and year.

Args:

Returns:


This file was automatically generated via lazydocs.