Metadata-Version: 2.1
Name: wwsclient
Version: 0.0.0.1
Summary: This script will be expose all workday webservice operations
Home-page: https://github.com/hikmat30ce/Workday-Webservices-Client.git
Author: Hikmat Ullah
Author-email: me@hikmatu.com
License: MIT
Description: # Workday Webservice client
        
        This project will include clients for all the operations defined in Workday Public Webservices (WWS)
        
        ## Installation
        
        Run following comand to install:
        
        ```
        pip install wwsclient
        ```
        
        ## Usage
        
        ```python
        from wwsclient.client import get_client
        from wwsclient.human_resource import get_workers
        
        tenant_host = 'https://wd2-impl-services1.workday.com'
        tenant_id = 'tenantID'
        webservice = 'Human_Resources'
        webservice_version = 'v35.0'
        username = 'Integration System User@tenantID'
        password = 'Password'
        
        
        # get client.py
        client = get_client(tenant_host, tenant_id, webservice, version, username, password)
        request = {
            "Request_References": {
                "Worker_Reference": [{
                    "ID": {
                        "type": "Employee_ID",
                        "_value_1": "12345678"
                    }
                }]
            },
            "Response_Group": {
                "Include_Reference": True,
                "Include_Personal_Information": True,
                "Include_Employment_Information": True
            }
        }
        xslt_code = '''<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wd="urn:com.workday/bsvc" exclude-result-prefixes="xs wd env" version="2.0"><xsl:output method="xml" indent="yes"></xsl:output><xsl:template match="env:Envelope/env:Body"><root><Total_Results><xsl:value-of select="*/wd:Response_Results/wd:Total_Results"/></Total_Results><Total_Pages><xsl:value-of select="*/wd:Response_Results/wd:Total_Pages"/></Total_Pages><Page_Results><xsl:value-of select="*/wd:Response_Results/wd:Page_Results"/></Page_Results><Page><xsl:value-of select="*/wd:Response_Results/wd:Page"/></Page><records><xsl:for-each select="*/wd:Response_Data/wd:Worker"><record><workday_id><xsl:value-of select="wd:Worker_Reference/wd:ID[@wd:type='WID']"/></workday_id><employee_id><xsl:value-of select="wd:Worker_Data/wd:Worker_ID"/></employee_id><formatted_name><xsl:value-of select="wd:Worker_Data/wd:Personal_Data/wd:Name_Data/wd:Legal_Name_Data/wd:Name_Detail_Data/@wd:Formatted_Name"/></formatted_name></record></xsl:for-each></records></root></xsl:template></xsl:stylesheet>'''
        get_workers_result = get_workers(client, request, xslt_code)
        
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Intended Audience :: Other Audience
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
