Metadata-Version: 2.4
Name: moremodule
Version: 0.1.1
Summary: A standalone Python package
Author-email: Itadamfan <vusminhklangcitend72727@gmail.com>
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# 🚀 MoreModule
**The easiest way to automate Windows without installing anything!**

---

## 💡 Why use MoreModule?


- ✅ **Zero Dependencies:** Works with standard Python (no `pip install` needed).
- ✅ **Beginner Friendly:** Scratch-style commands like `glide_mouse()`.
- ✅ **Lightweight:** Uses only built-in Windows `ctypes`.

---

## 🛠️ How to Setup
1. Create a new file named `whateveryoulike.py` in your project folder.
2. Copy and paste the **Full Source Code** (found at the bottom of this page) into that file.
3. In your own script, just type `import moremodule` and start coding!

---

## 📖 Examples & Usage

### 🖱️ Smooth Mouse Glide (Scratch Style)
Move the mouse smoothly over time instead of teleporting!
```python
import moremodule

# Move to X:500, Y:500 over 2 seconds
moremodule.glide_mouse(500, 500, duration=2.0)
```
### 🖱️ Click Mouse
```python
import moremodule

# Click the right button
moremodule.right_click()
# CLick the left button
moremodule.left_click()
```
### Random number!
```python
import moremodule
print(moremodule.randint(1,100))
```
### WAIT TIME:
```python
import moremodule
moremodule.wait(1) # wait 1 second
```
