Metadata-Version: 2.1
Name: instagram_api1
Version: 0.3
Summary: مكتبه تخص الانستقرام
Home-page: https://github.com/AL-MHIB
Author: ALMHEB
Author-email: appasqw107@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: requests

## Usage

 الجديد تم اضافه استخراج سيشن انستا 
### Example
```python
from instagram_api1 import try_login


username = input("أدخل اسم المستخدم (username): ").strip()
password = input("أدخل كلمة المرور (password): ").strip()


session_id = try_login(username, password)


if session_id:
    print(f"Session ID: {session_id}")
else:
    print("فشل تسجيل الدخول.")

### Example
اما هنا هذا الكود يخص ريست انستا
```python
from instagram_api1 import InstagramAPI

# Create an instance of the API class
instagram_api = InstagramAPI()

# Get email input from the user
email = input("Enter the email to reset password: ")

# Send a password reset request
result = instagram_api.send_password_reset(email)

# Handle the response
if "error" in result:
    print(f"Error: {result['error']}")
else:
    print("Password reset request sent successfully!")

```
