Vinay Lingala
unread,Jul 8, 2025, 5:36:24 AMJul 8Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Arelle-users
Hi Team,
When using the `edgarRenderer` plugin for preview generation, everything works fine with US GAAP 2023 and 2024 taxonomies. However, when switching to the US GAAP 2025 taxonomy, the command completes **without any error**, but the **expected preview files are not generated**.
We are invoking Arelle from Python using:
```python
def run_edgar_validation(input_file, output_dir):
pluginsPath = get_plugins(["EdgarRenderer"])
command = [
"arelleCmdLine",
"-f",
input_file,
"-v",
"--efm",
"--plugins",
pluginsPath,
"--reportFormat",
"HtmlAndXml",
"-r",
output_dir,
]
subprocess.run(command, check=True)