Metadata-Version: 2.1
Name: adp-connectors
Version: 0.0.8
Summary: connection clients for storage and database
Author: Hongfei Tian
Author-email: hongfei.tian@ibm.com
License: UNKNOWN
Keywords: connector,storage,database
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.8, <4
Description-Content-Type: text/markdown
License-File: LICENSE

### Connectors for ADP applications

The current version supports 3 kind of API connections: AWS S3, Box, PostgreSQL.
The required secret file formats are as follows.
- S3 Connector
  ```
  {
    "aws_access_key_id": "",
    "aws_secret_access_key": ""
  }

- Box Connector
  ```
    {
      "boxAppSettings": {
        "clientID": "",
        "clientSecret": "",
        "appAuth": {
          "publicKeyID": "",
          "privateKey": "",
          "passphrase": ""
          }
        },
        "enterpriseID": ""
      }

- Postgresql Connector
  ```
  {
    "host": "",
    "port": 5432,
    "database": "",
    "user": "",
    "password": ""
  }


