Metadata-Version: 2.1
Name: saptools
Version: 0.2
Summary: Connect python to SAP
Home-page: https://github.com/jorg-j/saptools
Author: jorg-j
Author-email: jorgensen.server@gmail.com
License: MIT
Description: # saptools
        
        Python SAP integration. 
        
        
        ## VBS Conversion
        
        SAPConverter.py takes SAP GUI scripts and converts to drag and drop py.
        
        Run SAPConverter.py open the file for conversion and outfile.py file will contain code you can drag and drop into your project.
        
        For CLI interaction:
        
        ```
        SAPConverter.py -f myInFile.vbs -o myOutFile.py
        ```
        
        -f and -o are optional and each option will fall back to it's default if not used
        
        ## Connection to SAP
        
        saptools.py handles the connection to SAP.
        
        Connection defaults to session 0.
        
        To connect to other sessions of SAP send session number as Argument:
        
        ```
        # Session 0
        session = saptools.SAPConnect()
        
        # Session 1
        session = saptools.SAPConnect(1)
        ```
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
