Metadata-Version: 2.4
Name: intelosv3
Version: 1.0.0
Summary: Prints Analysis and Design of Algorithms (ADA) C lab exam source codes
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Lab Exam Code Viewer

A utility package to quickly access and print source codes for AI, DBMS, and ADA (Algorithms) Lab experiments.

## Installation

```bash
pip install .
```

## Usage

After installation, run any of the following commands in your terminal:

### ADA (Analysis & Design of Algorithms) Lab Code Viewer (v3)
```bash
intelosv3
```
This will open an interactive menu to choose which ADA C experiment's source code you want to print, along with complexities and exam tips.
In Python, you can import and call:
```python
import intelosv3
intelosv3.help()
```

### DBMS Lab Code Viewer (v2)
```bash
intelosv2
```
This will open an interactive menu to choose which DBMS Database's schema, queries, and PK/FK rules you want to view.
In Python:
```python
import intelosv2
intelosv2.help()
```

### AI Lab Code Viewer (v1)
```bash
intelosv1
```
This will open an interactive menu to choose which AI experiment's source code you want to print.
In Python:
```python
import intelosv1
intelosv1.help()
```

