Skip to content

Panchorn/ig-profile-client

Repository files navigation

IG-PROFILE-CLIENT

codecov PyPI Travis

This library is a client to get Instagram profile data (public data).

I have made this for publishing a package to PyPI only!

Usage

Install package by using pip:

pip install -U ig-profile-client

Example

from IgProfileClient import Client

client = Client()
profile = client.get_common_profile("username")

print(profile.__dict__)
print(profile.follower)

Uninstall package

pip uninstall ig-profile-client