Metadata-Version: 2.4
Name: modi_does_cc
Version: 0.1.0
Summary: Cloud Computing Lab Reference Library — Docker, Kubernetes, AWS, Ansible, OpenStack
Home-page: https://github.com/yourusername/modi_does_cc
Author: Your Name
Author-email: your@email.com
License: MIT
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: home-page
Dynamic: requires-python

# modi_does_cc — Cloud Computing Lab Reference Library

Ready-to-use lab reference files for Cloud Computing experiments.
Covers Docker, Kubernetes, AWS, Ansible, and OpenStack.

---

## Installation

```bash
pip install modi_does_cc
```

No dependencies — zero pip installs required.

---

## Quick Start

```python
from modi_does_cc import index

# Show all labs + interactive menu
index.main()
```

---

## Generate a `.txt` file

### Interactive (numbered menu):
```python
from modi_does_cc import index
index.main()
# type a number → .txt file created in your current folder
```

### Direct:
```python
from modi_does_cc import index
index.generate('exp1_dockerfile')
index.generate('lab6_aws_s3')
index.generate('lab10_configmap')
```

---

## Available Labs

| Name                  | Description                                      |
|-----------------------|--------------------------------------------------|
| `exp1_dockerfile`     | EXP1  - Dockerfile & Docker Basics               |
| `exp2_dockercompose`  | EXP2  - Docker Compose                           |
| `exp3_ansible`        | EXP3  - Ansible                                  |
| `exp4_kubernetes`     | EXP4  - Kubernetes                               |
| `exp5_aws`            | EXP5  - AWS EC2 Web Server                       |
| `lab6_aws_s3`         | LAB6  - AWS S3                                   |
| `lab7_aws_vpc`        | LAB7  - AWS VPC Frontend & Backend               |
| `lab8_openstack`      | LAB8  - OpenStack                                |
| `lab9_dockerhub`      | LAB9  - Docker Hub & Trivy                       |
| `lab10_configmap`     | LAB10 - Kubernetes ConfigMap, Secret & Ingress   |

---

## License

MIT
