Metadata-Version: 2.4
Name: igbyte
Version: 0.1.6
Summary: A lightweight Python package providing handy Instagram utilities including search profile by user id,sending reset on accs by Ankush
Author: AnkuCode
Project-URL: Homepage, https://t.me/TryByte
Requires-Python: >=3.7
Description-Content-Type: text/markdown


# igbyte 🚀

**igbyte** is a lightweight Python package that provides practical Instagram utilities, including:

- Fetching public Instagram user information via user ID / username
- Extracting reel metadata (caption, hashtags, video link)  
- Resetting Instagram accounts using Web or Android APIs  
- initiate Instagram webSignup request

---

## 📦 Installation

Install using pip:

```bash
pip install igbyte
```

---

## 🛠 Features & Usage

### 1️⃣ Fetch Instagram Profile Info

```python
from igbyte import iguid_info

# Replace with a real user ID
user_info = iguid_info("3954561043")
print(user_info)
```

---

### 2️⃣ Reset Instagram Account

#### Available Reset Methods:
1. **Web API → `igresetv1`**  
2. **Android API → `igresetv2`**

```python
from igbyte import igresetv1, igresetv2

# Web API reset
reset_web = igresetv1("ankucode")
print(reset_web)

# Android API reset
reset_android = igresetv2("ankucode")
print(reset_android)
```
---

### -- Fetch Instagram Profile Info by Username
```python
from igbyte import infoig

# Replace with a real username
username_info = infoig("ankucode")
print(username_info)
```

---

### -- Generate Instagram Cookies

```python
from igbyte import gen_igcookie

print(gen_igcookie)
```
---
## --Initiate web Signup Request
```python
from igbyte import initiate_signup

response = initiate_signup(
    username="your_username",
    email="your_email@example.com"
)

print(response)

```

## 📧 Contact & Author

**Author:** AnkuCode

**Email:** ankucode@gmail.com

**Telegram:** [@ankucode](https://t.me/ankucode)

**GITHUB:** [@ankuucode](https://github.com/ankuucode)

**Get Module Update:** [@IGByte](https://t.me/IgByte)
