MultiCloudComparer is a powerful CLI based tool designed to provide real-time cost comparisons for cloud instances across AWS, GCP, and Azure. Effortlessly input instance type, region, and usage hours to instantly retrieve and compare pricing, helping you make informed decisions and optimize your cloud spending.
The Cloud Cost Comparator CLI Tool - MultiCloudComparer is a Python-based command-line interface (CLI) that allows users to compare the costs of using different cloud instances across AWS, GCP, and Azure. The tool fetches cost information from the respective cloud provider pricing APIs and provides a cost comparison based on user inputs such as instance type, region, and usage hours.
- Compare instance costs across AWS, GCP, and Azure
- Fetch real-time pricing information using cloud provider APIs
- Simple and intuitive CLI interface
-
Clone the repository:
git clone https://github.com/abhaypawar/MultiCloudComparer.git cd MultiCloudComparer
-
Create a virtual environment and activate it (optional but recommended):
python -m venv venv source venv/bin/activate # On Windows use `venv\Scripts\activate`
-
Install the required Python packages:
pip install -r requirements.txt
Run the CLI tool with the following command:
python MultiCloudComparer.py --instance-type <INSTANCE_TYPE> --region <REGION> --usage-hours <USAGE_HOURS>
For Example:
python MultiCloudComparer.py --instance-type t2.micro --region us-east-1 --usage-hours 100
Example Output - text
Instance Type: t2.micro
Region: us-east-1
Usage Hours: 100
AWS Cost: $12.00
GCP Cost: $11.50
Azure Cost: $13.00
To contribute to the project, follow these steps:
Fork the repository.
Create a new branch (git checkout -b feature-branch).
Make your changes and commit them (git commit -am 'Add new feature').
Push to the branch (git push origin feature-branch).
Create a new Pull Request.
Contributions are welcome! Please read the CONTRIBUTING.md for details on our code of conduct and the process for submitting pull requests. License
This project is licensed under the Apache 2.0 License - see the LICENSE file for details.
Click for creating the CLI
Requests for handling HTTP requests
For any inquiries or feedback, please contact [asdpawar2024@gmail.com].