Metadata-Version: 2.1
Name: ig-web-api
Version: 1.0.0
Summary: Simple Instagram API.
Home-page: https://github.com/TheDevFromKer/Instagram-API
Author: TheDevFromKer
License: MIT
Description: # Instagram-API
        Simple Instagram API based on web-version
        
        # Example of usage
        ```python
        from ig-web-api import Instagram
        
        a = Instagram()
        a.login('USER', 'PASSWORD')
        
        # Get more info about user
        print(a.user_info_v2('natgeo'))
        
        # Change profile picture
        with open('1.png', 'rb') as f:
            print(a.make_new_post(f.read(), 'That\'s, me!'))
        
        # Some another actions
        print('Follow natgeo:', a.user_action('natgeo', 'follow'))
        print('Saved photo:', a.media_action('B11rEsiHoQp', 'save'))
        print('Liked photo:', a.photo_action('B11rEsiHoQp', 'like'))
        
        ```
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
