XML Instance
The xml-instance
module contains all the classes related to XBRL-XML instance files. It contains the attributes Scenario,
Context and Facts.
The main purpose is to extract and classify the data. In the xbrl file, the basic unit is the fact, form by a unique value and its decimals (precision), context and currency.
This facts are grouped by a context. In xbrl files, it is represented with an id, and contains info related to the entity and period where facts belongs to. Also, an attribute named scenario appears related to the context. Its main function is parsing the xml-instance, integrating the dimension of the taxonomy’s variable with the context.
Instance Class
- class xbridge.xml_instance.Instance(path: str | bytes | _ElementTree | None = None)
Bases:
object
Class representing an XBRL XML instance file. Its attributes are the characters contained in the XBRL files. Each property returns one of these attributes.
- Parameters:
path – File path to be used
- property base_currency: str | None
Returns the base currency of the instance file
- property decimals_monetary: int | None
Returns the single value for monetary values in the instance.
- property decimals_percentage: int | None
Returns the single value for percentage values in the instance.
- property entity: str
Returns the entity of the instance file.
- property facts_list_dict: List[Dict[str, Any]] | None
Returns a list of dictionaries with the facts of the instance file.
- property filing_indicators: List[FilingIndicator] | None
Returns the filing indicators of the instance file.
- get_module_code() None
Extracts the module name from the XML instance file.
- get_units() None
Extracts the base currency of the instance
- property identifier_prefix: str
Returns the identifier prefix of the instance file.
- property instance_df: DataFrame | None
Returns a pandas DataFrame with the facts of the instance file.
- property module_code: str | None
Returns the module name of the instance file.
- property module_ref: str | None
Returns the module reference of the instance file.
- property namespaces: Dict[str | None, str]
Returns the namespaces is of the instance file.
- parse() None
Parses the XML file into the library objects.
- property period: str | None
Returns the period of the instance file
- property units: Dict[str, str] | None
Returns the units of the instance file
Scenario Class
- class xbridge.xml_instance.Scenario(scenario_xml: _Element | None = None)
Bases:
object
Class for the scenario of a
Context
. It parses the XML node with the scenario created and gets a value that fits with the scenario created from the XML node.- static get_value(child_scenario: _Element) str
Gets the value for dimension from the XML node with the scenario.
- parse() None
Parses the XML node with the scenario