Data-driven NIFCLOUD SDK for Python
Project description
NIFCLOUD SDK for Python
The NIFCLOUD SDK for Python is data-driven SDK. It works by feeding AWS-SDK-compatible model JSONs to botocore module.
Features
- :heavy_check_mark: Full support for NIFCLOUD Computing / RDB / NAS / ESS / DNS / ObjectStorageService / ServiceActivity / DevOps with GitLab APIs
- :heavy_check_mark: The nifcloud package is the foundation for the NIFCLOUD CLI.
- :heavy_check_mark: AWS-SDK-compatible data-driven architecture
Requirements
- Python 3.7 or later
How to Install
pip install nifcloud
Usage
Write your python program:
from nifcloud import session
client = session.get_session().create_client(
"computing",
region_name="jp-east-1",
nifcloud_access_key_id="<Your NIFCLOUD Access Key ID>",
nifcloud_secret_access_key="<Your NIFCLOUD Secret Access Key>"
)
print(client.describe_instances())
Execute the program:
$ python test.py
Credentials and region name can be also passed via environment variables.
from nifcloud import session
client = session.get_session().create_client("computing")
print(client.describe_instances())
$ export NIFCLOUD_ACCESS_KEY_ID=<Your NIFCLOUD Access Key ID>
$ export NIFCLOUD_SECRET_ACCESS_KEY=<Your NIFCLOUD Secret Access Key>
$ export NIFCLOUD_DEFAULT_REGION=jp-east-1
$ python test.py
See documentation for detail.
License
See LICENSE.txt.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
nifcloud-1.13.0.tar.gz
(117.7 kB
view hashes)
Built Distribution
nifcloud-1.13.0-py2.py3-none-any.whl
(122.9 kB
view hashes)
Close
Hashes for nifcloud-1.13.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c09f07c3f274ab597d788230712f29a7e0fb21ca8eb00bf9e99e918ce3493bfb |
|
MD5 | ce30704e7a7168372883b73646aac605 |
|
BLAKE2b-256 | 04eaf1a8d8e1cdba00f63196f2b97a2d58e7e9f57a7cec5dedbef1857b7e99b2 |