Files
Time-Series-Analysis/venv/lib/python3.11/site-packages/holidays/financial/brasil_bolsa_balcao.py
2025-08-01 04:33:03 -04:00

110 lines
4.8 KiB
Python

# holidays
# --------
# A fast, efficient Python library for generating country, province and state
# specific sets of holidays on the fly. It aims to make determining whether a
# specific date is a holiday as fast and flexible as possible.
#
# Authors: Vacanza Team and individual contributors (see CONTRIBUTORS file)
# dr-prodigy <dr.prodigy.github@gmail.com> (c) 2017-2023
# ryanss <ryanssdev@icloud.com> (c) 2014-2017
# Website: https://github.com/vacanza/holidays
# License: MIT (see LICENSE file)
from gettext import gettext as tr
from holidays.groups import ChristianHolidays, InternationalHolidays
from holidays.holiday_base import HolidayBase
class BrasilBolsaBalcao(HolidayBase, ChristianHolidays, InternationalHolidays):
"""Brasil, Bolsa, Balcão holidays.
References:
* [Decreto n. 155-B, de 14.01.1890](https://web.archive.org/web/20241226133739/https://www2.camara.leg.br/legin/fed/decret/1824-1899/decreto-155-b-14-janeiro-1890-517534-publicacaooriginal-1-pe.html)
* [Decreto n. 19.488, de 15.12.1930](https://web.archive.org/web/20241006041503/http://camara.leg.br/legin/fed/decret/1930-1939/decreto-19488-15-dezembro-1930-508040-republicacao-85201-pe.html)
* [Decreto n. 22.647, de 17.04.1933](https://web.archive.org/web/20220414202918/https://www2.camara.leg.br/legin/fed/decret/1930-1939/decreto-22647-17-abril-1933-558774-publicacaooriginal-80337-pe.html)
* [Lei n. 662, de 6.04.1949](https://web.archive.org/web/20240913060643/https://www2.camara.leg.br/legin/fed/lei/1940-1949/lei-662-6-abril-1949-347136-publicacaooriginal-1-pl.html)
* [Lei n. 6.802, de 30.06.1980](https://web.archive.org/web/20250206215621/http://www.planalto.gov.br/ccivil_03/leis/L6802.htm)
* [Resolução n. 2.516, de 29.06.1998](https://web.archive.org/web/20250428203302/https://www.bcb.gov.br/pre/normativos/res/1998/pdf/res_2516_v2_P.pdf)
* [Lei n. 14.759, de 21.12.2023](https://web.archive.org/web/20250402234552/https://www2.camara.leg.br/legin/fed/lei/2023/lei-14759-21-dezembro-2023-795091-publicacaooriginal-170522-pl.html)
Historical data:
* [Feriados ANBIMA 2001-2099](https://web.archive.org/web/20241209033536/https://www.anbima.com.br/feriados/)
* [Calendario de negociação B3](https://web.archive.org/web/20250126154858/https://www.b3.com.br/pt_br/solucoes/plataformas/puma-trading-system/para-participantes-e-traders/calendario-de-negociacao/feriados/)
"""
market = "BVMF"
default_language = "pt_BR"
supported_languages = ("en_US", "pt_BR", "uk")
# Decreto n. 155-B, de 14.01.1890
# Curiously enough, 1890 is also the year of foundation of the
# São Paulo Stock Exchange, which would later become the B3.
start_year = 1890
def __init__(self, *args, **kwargs) -> None:
ChristianHolidays.__init__(self)
InternationalHolidays.__init__(self)
super().__init__(*args, **kwargs)
def _populate_public_holidays(self):
# Universal Fraternization Day.
self._add_new_years_day(tr("Confraternização Universal"))
# Carnival.
carnival_name = tr("Carnaval")
self._add_carnival_monday(carnival_name)
self._add_carnival_tuesday(carnival_name)
# Resolução n. 2.516, de 29.06.1998
if self._year <= 1999:
# Holy Thursday.
self._add_holy_thursday(tr("Quinta-feira Santa"))
# Good Friday.
self._add_good_friday(tr("Sexta-feira Santa"))
# Tiradentes' Day was revoked by president Getúlio Vargas in
# december of 1930, through Decreto n. 19.488, but reinstated
# by the same president in 1933, through Decreto n. 22.647.
if self._year not in {1931, 1932}:
# Tiradentes' Day.
self._add_holiday_apr_21(tr("Tiradentes"))
if self._year >= 1925:
# Worker's Day.
self._add_labor_day(tr("Dia do Trabalhador"))
# Corpus Christi.
self._add_corpus_christi_day(tr("Corpus Christi"))
# Independence Day.
self._add_holiday_sep_7(tr("Independência do Brasil"))
# Lei n. 6.802, de 30.06.1980
if self._year >= 1980:
# Our Lady of Aparecida.
self._add_holiday_oct_12(tr("Nossa Senhora Aparecida"))
# All Souls' Day.
self._add_all_souls_day(tr("Finados"))
# Republic Proclamation Day.
self._add_holiday_nov_15(tr("Proclamação da República"))
# Lei n. 14.759, de 21.12.2023
if self._year >= 2024:
# National Day of Zumbi and Black Awareness.
self._add_holiday_nov_20(tr("Dia Nacional de Zumbi e da Consciência Negra"))
if self._year >= 1922:
# Christmas Day.
self._add_christmas_day(tr("Natal"))
class BVMF(BrasilBolsaBalcao):
pass
class B3(BrasilBolsaBalcao):
pass