Metadata-Version: 2.1
Name: pythonat-instalib
Version: 1.1.0
Summary: Read the latest Real Python tutorials
Home-page: UNKNOWN
Author: Pythonat.com / dotslashhack.io
Author-email: nasser@dotslashhack.io
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
Requires-Dist: os
Requires-Dist: pynput
Requires-Dist: selenium
Requires-Dist: sys
Requires-Dist: time
Requires-Dist: webdriver-manager
Requires-Dist: wget



Author : Eng. Nasser AlOstath
nasser@dotslashhack.io
pythonatinstagramtool, is a simple library/bot developed by The CEO of www.dotslashhack.io for educational perposes as an asset code to an article written in arabic for www.pythonat.com that talks about writing and uploading a user built python package to pypi.org so that it can be installed using pip.

this library is opensource that yields to the MIT license.

for more information, please check www.pythonat.com or www.dotslashhack.io to contact the author

this library is build mainly on top of selenium and webdriver-manager

the webdriver-manager library is usefull because it will automatically find and download the suitable browser webdriver depending on it’s version and OS.

NOTE:

it is always better to keep you instagram credentials in a separate file and import them here


## installation
```
pip install pythonat-instalib
```

## usage

```
# importing username and password of instagram account from a separate auth.py file
from auth import username,password

#creating a bot instace with credentials
bot = Bot("chrome",username,password)

#searching using a keyword
bot.find("#plymouthroadrunner")

# getting images and posts
posts, images = bot.get_posts(10)

# creating a folder of downloaded images
bot.download_pics_from_page(images,"./plymouthroadrunner","Roady")

```

