Metadata-Version: 2.1
Name: InstaToolkit
Version: 0.1.2
Summary: A versatile toolkit for automating Instagram interactions
Home-page: https://github.com/HimashaHerath/InstaToolkit
Author: Himasha Herath
Author-email: himasha626@gmail.com
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Software Development :: Build Tools
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# InstaBot

InstaBot is a simple Python package to automate login to Instagram.

## Installation

You can install InstaBot by cloning this repository and running:

```bash
pip install .
```
OR : 

You can install InstaBot by cloning this repository and running:

```bash
pip install instabot
```

## Usage
To use InstaBot, import the package and create an instance of InstagramBot:
```bash
from instabot import InstagramBot

bot = InstagramBot()
bot.login('your_username', 'your_password')
```

Replace 'your_username' and 'your_password' with your Instagram credentials.

