Metadata-Version: 2.1
Name: easy-icm-runner
Version: 1.3.0
Summary: A wrapper for IBM ICMs Scheduler API Calls
Home-page: https://github.com/equinoxfitness/easy-icm-runner
Author: Bachir El Koussa and Elliott Cordo
Author-email: bgkoussa@gmail.com
License: MIT
Download-URL: https://github.com/equinoxfitness/easy-icm-runner/archive/v_1.2.3.tar.gz
Description: # easy-icm-runner :rocket:
        Simplified Job Execution for IBM ICM v10 using REST APIs
        
        https://developer.ibm.com/api/view/id-689:title-Incentive_Compensation_Management
        
        ## Installation:
        ```
        pip install easy-icm-runner
        ```
        
        ## Usage:
        This project can be used as a module within your custom program, or standalone from the command line.  Below we demonstrate sample usage:
        
        ### Python
        
        The snippet below demonstrates running a job _syncronously_ in python code.  Such a method will be desirable for incorporating an ICM job step into a more complex application, or such tasks as integrating your own secret and configuration management.
        ```python
        from icm_runner import exec_runner
        
        username = 'username'
        password = 'user password'
        model_name = 'some model name'
        process_name = 'some process name'
        api_key = 'some api key'
        
        #execute using api key
        exec_runner(username=username,  model_name=model_name,
                    process_name=process_name, api_key=api_key)
                    
        #execute using username and password
        exec_runner(username=username, password=password, model_name=model_name,
                    process_name=process_name)
        
        ```
        
        ### Command Line
        For those of you who are not budding pythonistas, or just looking for a simple solution to job scheduling we also allow a command line entrypoint.   
        ```text
        $ python -m icm_runner -u "icm username" -p "icm password" -m "model name" -j "process name"
        
        $ python -m icm_runner -m "model name" -j "process name" -a "api key"
        ```
        
Keywords: ICM,API,SCHEDULER,RUNNER,IBM
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
