Metadata-Version: 1.0
Name: condorpy
Version: 0.1.4
Summary: A Python wrapper for HTCondor's cli
Home-page: http://ci-water.github.io/condorpy/
Author: Scott Christensen
Author-email: sdc50@byu.net
License: BSD 2-Clause License
Description: ========
        CondorPy
        ========
        :condorpy: Python interface for high throughput computing with HTCondor
        :Version: 0.1.4
        :Author: Scott Christensen
        :Team: CI-WATER
        :Homepage: http://ci-water.github.io/condorpy/
        :License: BSD 2-Clause
        
        Description:
        ============
        Condorpy is a wrapper for the command line interface (cli) of HTCondor and enables creating submitting and monitoring HTCondor jobs from Python. HTCondor must be installed to use condorpy.
        
        Installing:
        ===========
        ::
        
            $ pip install condorpy
        
        
        Code Example:
        =============
        ::
        
            >>> from condorpy import Job, Templates
            >>> job = Job('job_name', Templates.vanilla_transfer_files)
            >>> job.executable = 'job_script'
            >>> jobs.arguments = 'input_1 input_2'
            >>> job.transfer_input_files = 'input_1 input_2'
            >>> job.transfer_output_files = 'output'
            >>> job.submit()
        
        
Keywords: htcondor distributed-computing job-scheduling
Platform: UNKNOWN
