Metadata-Version: 2.1
Name: pysap_macro
Version: 0.5.1
Summary: Library to run SAP scripts with Python
Home-page: https://github.com/teusinLS/sapy_script
Author: Mateus Lima Silva
Author-email: mateusls.personal@gmail.com
License: UNKNOWN
Keywords: SAP Script Python
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows :: Windows 7
Classifier: Operating System :: Microsoft :: Windows :: Windows 8
Classifier: Operating System :: Microsoft :: Windows :: Windows 8.1
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: Programming Language :: Python
Description-Content-Type: text/markdown
License-File: LICENSE

# PySAP Macro

Python script to connect with SAP and allow usage of VB scripts

## Getting Started

These instructions will get you a copy of the project up and running on your local machine. You can check my [GitHub](https://github.com/teusinLS/pysap_macro) for further informations.

### Installing

To install this package and all of it's requirements, run the following code on your terminal:

```
pip install pysap_macro
```

## Testing if it is working

You can create a Python file for testing purpose with the following code:

```
from pysap_macro import SAP

class Test:
    def __init__(self):
        self.run()

    def run(self):
        session = SAP.connect_sap(self, connection_name="SAP ENVIRONMENT NAME")

        # your VB code created by SAP below

Test()
```

## Authors

Thanks to [Fkfouri's sapy_script](https://github.com/fkfouri/sapy_script) for creating an amazing library and providing it on Github. This project was created based on his code.

* **Mateus Lima Silva**

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details


