Metadata-Version: 2.1
Name: InstaWebBot
Version: 0.2.5
Summary: A simple library for managing an Instagram bot using selenium.
Home-page: https://github.com/Julius-W/InstaBot
Author: Julius-W
License: GPL-2.0
Keywords: python,Instagram,bot,automation
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
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: Operating System :: OS Independent
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: selenium


# InstaBot
InstaBot is a Python library that provides some automation for simple tasks on Instagram like following and sending dms on Instagram.

## Installation

You can install the library from the [GitHub repository](https://github.com/Julius-W/InstaBot) or by using pip:

```
pip install InstaBotWeb
```

## Usage

To use the InstaBot class, you can create an instance of the class by passing in your Instagram username and password as parameters:

```py
from instabot import InstaBot
bot = InstaBot('your_username', 'your_password')
```

To login to Instagram with the given username and password use

```py
bot.login()
```

Once you have created an instance of the InstaBot class, you can use its methods to automate some simple tasks on Instagram.

## Functions

Search for a username by using
```py
bot.search(query)
```

After that you can peform various actions on a user profile:

```py
bot.follow()
bot.send_dm(message)
bot.like_picture()
```

It is also possible to get data from the profile:

```py
followers = bot.get_followers()
for follower in followers:
    print(follower)
```


## Future functionality:
- [x] Get follower and following counter
- [x] Get post counter
- [ ] Like different images than just the first image
- [x] Allow commenting on posts
- [ ] Download images
- [x] Send direct messages to user

## LICENSE
InstaBot is licensed under the GNU General Public License v2.0.
