Metadata-Version: 2.1
Name: instagram_api1
Version: 0.1
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 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!")
```
