Metadata-Version: 2.1
Name: infapy
Version: 1.0.5.3
Summary: Automation Tool for informatica Cloud
Home-page: UNKNOWN
Author: Prashanth
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# infapy

infapy is a Python library for automating with informatica cloud.

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install infapy.

```bash
pip install infapy
```

## Usage

```python
import infapy

# Create a File Logger
infapy.setFileLogger(name="myScriptName",level="DEBUG")

# returns 'words'
# below command to use the default profile
infaHandler=infapy.connect()

# Or use a profile to connect
infaHandler=infapy.connect(profile="DEV")

# Example to use the v2 API:
v2=infaHandler.v2()
v2.getActivityLog().getAllActivityLog()

```

## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

## License
[Apache Software License](https://www.apache.org/licenses/LICENSE-2.0)

