Metadata-Version: 2.1
Name: 4logik-python-rest-client
Version: 1.0.0
Summary: Execute microservice endpoint using HTTP REST
Home-page: https://www.4logik.com/
Author: Eugenia Morales
Author-email: eugeniamorales251@gmail.com
License: MIT
Description: # 4logik python rest client
        Utility package to call an enpoint generated by 4Logik
        
        ## Installation
        Use pip
        
        ```
        pip install 4logik-python-rest-client
        ```
        
        ## How to call a CSV endpoint
        - Locate the input CSV file
        - Identify the URL of the enpoint
        - Identify the name of the data set of the response that contains the results
        
        Example:
        
        ```
        from py4logik_python_rest_client.endpoint_caller import call_csv_endpoint
        input_csv_file = "/home/user1/incomingData.csv"
        endpoint_url = "http://localhost:8080/RiskCalulationProcess"
        dataset_name = "riskResult"
        received_json_data = call_csv_endpoint(ms_url, input_csv_file, dataset_name)
        print(received_json_data)
        ```
Keywords: python project
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
