The `icloudservice` class provides a Python interface for interacting with
Project description
icloudservice
icloudservice is a Python library for cloud integration services with AWS and Azure. This library helps streamline cloud service interactions and management.
Features
- Integration with AWS and Azure cloud services.
- Provides easy-to-use methods for interacting with cloud resources.
Installation
You can install icloudservice via pip:
pip install icloudservice
API Reference
icloudservice Module
Provider Class
The Provider class is used to create cloud service clients for AWS and Azure. It provides methods to initialize clients with appropriate credentials and configurations.
Methods:
-
AWS(access_key: str, secret_key: str,region: str = None) -> AWSCloudInitializes an AWS Cloud client with the provided access key and secret key.
Parameters:
access_key(str): AWS access key ID.secret_key(str): AWS secret access key.region(str,optional): The AWS region to use. Default to None.
Returns:
- An instance of the
AWSCloudclass.
-
AZURE(subscription_id) -> AzureCloudInitializes an Azure Cloud client with the provided subscription ID.
Parameters:
subscription_id: Azure subscription ID.
Returns:
- An instance of the
AzureCloudclass.
AWSCloud Class
Provides access to various AWS cloud services.
Methods:
-
S3Service(bucket_name: str,region: str = None)Provides access to AWS S3 service.
Parameters:
bucket_name(str): The name of the S3 bucket.region(str): The region of the S3 bucket to use.Default to None.
Returns:
- An instance of the
S3Serviceclass.
-
EC2Service()Provides access to AWS EC2 service.
Returns:
- An instance of the
EC2Serviceclass.
- An instance of the
-
LambdaService()Provides access to AWS Lambda service.
Returns:
- An instance of the
LambdaServiceclass.
- An instance of the
-
SNSService()Provides access to AWS SNS service.
Returns:
- An instance of the
SNSServiceclass.
- An instance of the
-
SQSService()Provides access to AWS SQS service.
Returns:
- An instance of the
SQSServiceclass.
- An instance of the
AzureCloud Class
Provides access to various Azure cloud services.
Methods:
-
BlobService()Provides access to Azur
Example:
from icloudservice import Provider
# Initialize Provider
provider = Provider()
# Create AWS service client
aws_services = provider.AWS(access_key='your-access-key-id', secret_key='your-secret-access-key')
# Access S3 service
s3_service = aws_services.S3Service('bucket_name')
# Access EC2 service
ec2_service = aws_services.EC2Service()
# Access Lambda service
lambda_service = aws_services.LambdaService()
# Access SNS service
sns_service = aws_services.SNSService()
# Access SQS service
sqs_service = aws_services.SQSService()
from icloudservice import Provider
# Initialize Provider
provider = Provider()
# Create Azure service client
azure_services = provider.AZURE(subscription_id='your-subscription-id')
# Access Azure Blob Storage service
blob_service = azure_services.BlobService()
# Access Azure Virtual Machines service
vm_service = azure_services.VMService()
# Access Azure Functions service
functions_service = azure_services.FunctionsService()
# Access Azure Event Hubs service
event_hubs_service = azure_services.EventHubsService()
# Access Azure Service Bus service
service_bus_service = azure_services.ServiceBusService()
License
This project is licensed under the MIT License - see the LICENSE file for details.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file icloudservice-0.9.3.tar.gz.
File metadata
- Download URL: icloudservice-0.9.3.tar.gz
- Upload date:
- Size: 12.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed3d2838e8291fb891ea79ce791d534e530377942ae26677dfff023d0d90ea82
|
|
| MD5 |
932f633d3e86e9bdc9b389eac7f0e943
|
|
| BLAKE2b-256 |
a7d5932da6d6ae066439da4720c6900a149ecd3fa87cc12ed76f1b0f95239cc8
|
File details
Details for the file icloudservice-0.9.3-py3-none-any.whl.
File metadata
- Download URL: icloudservice-0.9.3-py3-none-any.whl
- Upload date:
- Size: 14.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
736a5fc9792c01873933f9fde547dece47bd5fb67e091d6a5ea8047758aeeaf7
|
|
| MD5 |
e4d8d57d69849914bdbe7827f29384a1
|
|
| BLAKE2b-256 |
584ccc8eb1014566680619eb4167e4e7f47fd86e6eb0b8de4994e33204d25552
|