Search

Search

Help

Page 5 of 10. Showing 97 results (0.01 seconds)

  1. Use_simpleCMD.py

    #!/usr/bin/python # Below are required imports for the script to run import os, sys # The below few lines of code are to determine the OS of the machine that your running…
  2. bootstrap.py

    #!/usr/bin/python ################################################################## # The above lines is dependent upon the location of Python
    Qube / … / JobtypesOct 15, 2014
  3. jobSubmit07.py

    #!/usr/bin/python import sys import os import time import datetime if 'QBDIR' in os.environ: sys.path.append('%s/api/python' % os.environ['QBDIR']); elif os.uname()[0…
    Qube / … / PythonOct 15, 2014
  4. SimpleCmds Location

    The SimpleCmds are stored as Python script files under the simplecmds directory. This directory is dynamically scanned on startup of the QubeGUI whereupon all Python scripts…
    QubeOct 21, 2014
  5. Use the Metered License Server public REST API to retrieve the usage records for your supervisor

    minutes after you perform the initial retrieval of all records, do another retrieval with the "starting id" set to the starting id from the last step. Python Dependencies You can…
    QubeJun 07, 2017
  6. Basic dependencies

    # locations try: import qb except ImportError: if os.environ.get("QBDIR"): qbdir_api = os.path.join(os.environ.get("QBDIR"),"api","python") for api_path…
    QubeOct 13, 2020
  7. Basic_Dependancy.py

    #!/usr/bin/python # Below are required imports for the script to run import os, sys # The below few lines of code are to determine the OS of the machine that your running…
    Qube / … / Basic dependenciesOct 15, 2014
  8. Advanced_Dependancy.py

    #!/usr/bin/python # Below are required imports for the script to run import os, sys # The below few lines of code are to determine the OS of the machine that your running…
    Qube / … / Advanced DependenciesOct 15, 2014
  9. Customizing the Qube GUI

    QubeGUI is essentially a set of Python scripts that calls upon the qb Python API module to interface with the Qube Supervisor. It uses platform-independent wxPython…
    QubeOct 15, 2014
  10. Package_explained.py

    #!/usr/bin/python # Below are required imports for the script to run import os, sys # The below few lines of code are to determine the OS of the machine that your running…