Metadata-Version: 2.1
Name: python-InstagramBusinessAPI
Version: 0.1.1
Summary: Instagram Business API to POST content to Instagram
Home-page: https://github.com/StanNieuwmans/InstagramAPI
Author: Stan Nieuwmans
Author-email: snieuwmans@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: requests

# InstagramAPI
Package for the Instagram Business API - Python


# InstagramAPI - Python Package
A small demo library for a Medium publication about publishing libraries.

### Installation
```
pip install python-InstagramBusinessAPI
```

### Get started
How to post an image to Instagram with this package.

```Python
from InstagramAPI.InstagramBusinessAPI import InstagramBusinessAPI

instagram_api = InstagramBusinessAPI(ig_user_id=IG_USER_ID, access_token=ACCESS_TOKEN)
img_container = instagram_api.ImageContainer("https://www.google.com/url?sa=i&url=https%3A%2F%2Fwww.pinterest.com%2Fpin%2F441563938470171685%2F&psig=AOvVaw1-BpG1NgnVMHPDpdeV6Ute&ust=1670330141317000&source=images&cd=vfe&ved=0CA8QjRxqFwoTCMDF_eW-4vsCFQAAAAAdAAAAABAE", "Test Image")
instagram_api.post_local_container_to_instagram(img_container)
```

