Metadata-Version: 2.3
Name: pypscloud
Version: 0.0.53
Summary: Common wrappers and tools for the Powerside Cloud API
Project-URL: Homepage, https://github.com/powerstandards/pypscloud
Project-URL: Bug Tracker, https://github.com/powerstandards/pypscloud/issues
Author-email: Louis Marchand <louis.marchand@powerside.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# pypscloud
Common wrappers and tools in Python for the Powerside Cloud API

Environments and credentials can be configure using file pypscloud_cfg.json
[
    {
        "env": "production",
        "user": "your account@company.com",
        "pw": "GreatNews123!",
        "base_url": "https://www.admin.cloud.powerside.com/v1/",
        "data_bucket_upload":"bucked-name",
        "aws_key":"if_you_have_one",
        "aws_secret":"dont_share_it"
    },
    {
        "env": "staging",
        "user": "your_account_in_staging@company.com",
        "pw": "thepassword33456!",
        "base_url": "https://staging.admin.cloud.powerside.com/v1/",
        "data_bucket_upload":"bucked-name",
        "aws_key":"if_you_have_one",
        "aws_secret":"dont_share_it"
    }
]