Skip to main content

Overview

The EMISOR class provides constants that identify different types of emitters in BORME sections. These constants represent the categories under which announcements and acts are published in the BORME.

Import

from bormeparser import EMISOR

Constants

Section A - ACTOS_INSCRITOS

ACTOS_INSCRITOS
str
default:"'Actos inscritos'"
Registered acts published in Section A of the BORME
Section A contains all registered acts such as appointments, company constitution, capital changes, and other mercantile registry operations.

Section B - OTROS_ACTOS

OTROS_ACTOS
str
Other acts published in Section B of the BORME
Section B contains other acts published by the Mercantile Registry that don’t fall under registered acts.

Section C Emitters

Section C announcements are organized by type:
BALANCES
str
default:"'BALANCES'"
Balance sheet announcements
CONVOCATORIAS_JUNTAS
str
default:"'CONVOCATORIAS DE JUNTAS'"
Shareholder meeting announcements
ESCISIONES
str
default:"'ESCISIÓN DE EMPRESAS'"
Company demerger announcements
TRANSFORMACIONES
str
default:"'TRANSFORMACIÓN DE EMPRESAS'"
Company transformation announcements
FUSIONES_ABORCIONES
str
default:"'FUSIONES Y ABSORCIONES DE EMPRESAS'"
Merger and acquisition announcements
AUMENTO_CAPITAL
str
default:"'AUMENTO DE CAPITAL'"
Capital increase announcements
REDUCCION_CAPITAL
str
default:"'REDUCCIÓN DE CAPITAL'"
Capital reduction announcements
OTROS_ANUNCIOS_AVISOS_LEGALES
str
default:"'OTROS ANUNCIOS Y AVISOS LEGALES'"
Other announcements and legal notices

Usage Example

The EMISOR constants can be used to identify the type of content in BORME files:
from bormeparser import EMISOR

# Check emitter type for Section A
if emitter == EMISOR.ACTOS_INSCRITOS:
    print("This is a registered acts publication")

# Check emitter type for Section C
if emitter == EMISOR.BALANCES:
    print("This is a balance sheet announcement")
elif emitter == EMISOR.CONVOCATORIAS_JUNTAS:
    print("This is a shareholder meeting announcement")

Emitter Types by Section

SectionEmitter ConstantDescription
AACTOS_INSCRITOSRegistered acts
BOTROS_ACTOSOther published acts
CBALANCESBalance sheets
CCONVOCATORIAS_JUNTASShareholder meetings
CESCISIONESCompany demergers
CTRANSFORMACIONESCompany transformations
CFUSIONES_ABORCIONESMergers and acquisitions
CAUMENTO_CAPITALCapital increases
CREDUCCION_CAPITALCapital reductions
COTROS_ANUNCIOS_AVISOS_LEGALESOther legal notices

See Also

Build docs developers (and LLMs) love