Skip to content

get_industry_standards API

Shadow Ingest / API Reference / Industry
get_industry_standards() -> list[str]

Returns the available industry classification standards exposed by the current environment.

Typical values include standards such as sws, citics, citics_2019, or gildata.

Before You Run This Example

Copy-Paste Example

import shadow_ingest as si

standards = si.get_industry_standards()
print(standards)

Example Output

[citics, citics_2019, gildata, sws]

When To Use This

Use this helper before get_industry_mapping(...) or get_industry_members(...) when you are not sure which taxonomy names are available on the connected service.