Metadata-Version: 2.4
Name: Chillax
Version: 0.0.8
Summary: A Python package for vibecoders.
Author: Gowtham Jegathesan S
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: google-generativeai>=0.5.0
Requires-Dist: python-dotenv>=1.0.0
Dynamic: author
Dynamic: description
Dynamic: description-content-type
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Chillax 💤

**Chillax** is a lightweight Python wrapper for Gemini’s API that lets you call AI directly inside your code.  Whenever you hit a wall and can’t implement logic on the spot, just ask AI and get the answer instantly(vibe coding supremcay).


---

## 🚀 Features

- Simple API configuration
- Extendable for your own chill functions
	- sort, translate, summation, summarize, reverse etc. (You name it)
- Minimal, lightweight, and beginner-friendly

---

## 📦 Installation

```bash
pip install chillax
```

## ⚡Quick Start - Procedure

```python
from chillax import chillax

# Set your Gemini API key
chillax.setAPIKey("your_api_key_here")

# Example of a useful function (extendable)
my_list = [5, 2, 9, 1]
sorted_list = chillax.sort(my_list)
print(sorted_list)

# Example of translation function
sentence = "hello, my name is gowtham"
translated = translateEnglishToSpanish(sentence)
print(translated)
```

## 🤝 Contributing

Contributions are welcome! Feel free to fork, open issues, or submit PRs.

---

## ⭐Naming Convention

To keep things clean and intuitive, **Chillax** uses `camelCase` for function names.  
This makes it easy to read and understand at a glance.  

```python
# Example
Chillax.writeAPoem("English")                            
Chillax.translateFrenchToEnglish("Je suis Inde")                  
```

---
