2025-08-07 06:28:34 -04:00
|
|
|
#!/usr/bin/env python3
|
2026-03-11 23:15:07 -04:00
|
|
|
# © 2021-2026 TechnoLibre (http://www.technolibre.ca)
|
2025-08-07 06:28:34 -04:00
|
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
|
|
|
|
|
|
2026-03-13 15:04:14 -04:00
|
|
|
installed_modules = env["ir.module.module"].search(
|
|
|
|
|
[("state", "=", "installed")]
|
|
|
|
|
)
|
2025-08-07 06:28:34 -04:00
|
|
|
|
|
|
|
|
print("Installed modules:")
|
|
|
|
|
|
|
|
|
|
for module in installed_modules:
|
|
|
|
|
print(module.name)
|