Metadata-Version: 2.4
Name: fiboadvaith
Version: 0.0.2
Summary: thanish shetty is gay for mehul r EKBOTE
Author: Advaith S
Author-email: 4dvaith.s@gmail.com
License: MIT
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: license
Dynamic: summary

# 📘 fiboadvaith

**fiboadvaith** is a lightweight Python module that provides simple math utility functions like generating Fibonacci sequences, computing factorials, and summing integers.

---

## 📦 Installation

Install directly from PyPI using `pip`:

```bash
pip install fiboadvaith
```

---

## 🧠 Functions and Examples

### 🔁 1. `fib(n)`

**Description:**  
Prints the Fibonacci sequence up to the `n`-th term (starting from 0).

**Example:**

```python
from fiboadvaith import fib

fib(7)
# Output:
# 0 1 1 2 3 5 8
```

---

### 🔢 2. `fibeth(n)`

**Description:**  
Returns the `n`-th Fibonacci number (0-based indexing).

**Example:**

```python
from fiboadvaith import fibeth

print(fibeth(6))
# Output: 8
```

---

### 🧮 3. `fact(n)`

**Description:**  
Returns the factorial of `n` (i.e., `n!`).

**Example:**

```python
from fiboadvaith import fact

print(fact(5))
# Output: 120
```

---

### ➕ 4. `summer(n)`

**Description:**  
Returns the sum of all natural numbers from 1 to `n`.

**Example:**

```python
from fiboadvaith import summer

print(summer(5))
# Output: 15
```

---

## ✅ Requirements

- Python 3.6 or higher  
- No external dependencies

---

## 👨‍💻 Author

Made with ❤️ by **Advaith S**

---

## 📄 License

This project is licensed under the MIT License.
