Metadata-Version: 2.1
Name: cook-client-api
Version: 0.3.3
Summary: Cook Scheduler Client API for Python
Home-page: https://github.com/twosigma/Cook
License: UNKNOWN
Description: # The Cook Scheduler Python Client API
        
        This package defines a client API for Cook Scheduler, allowing Python applications to easily integrate with Cook.
        
        ## Quickstart
        
        The code below shows how to use the client API to connect to a Cook cluster listening on `localhost:12321`, submit a job to the cluster, and query its information.
        
        ```python
        from cookclient import JobClient
        
        client = JobClient('localhost:12321')
        
        uuid = client.submit(command='ls')
        job = client.query(uuid)
        print(str(job))
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
