New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
check_pkg.py in NEMO/branches/2020/ticket2377/doc/tools – NEMO

source: NEMO/branches/2020/ticket2377/doc/tools/check_pkg.py @ 12749

Last change on this file since 12749 was 11008, checked in by nicolasmartin, 5 years ago

Fix execution rights on new scripts

  • Property svn:executable set to *
File size: 182 bytes
Line 
1#!/usr/bin/env python
2
3import sys, importlib
4
5for argv in sys.argv[1:]:
6   try:
7      importlib.import_module(argv)
8   except ImportError:
9      print("Package %s is missing in Python" % argv)
10
Note: See TracBrowser for help on using the repository browser.