Metadata-Version: 1.0
Name: instafetch
Version: 0.1
Summary: Python package to get instagram data
Home-page: UNKNOWN
Author: Paras Sharmaa
Author-email: mail2paras.s@gmail.com
License: MIT
Description: # Instafetch
        A python package to fetch public data from Instagram.
        
        ## Installation
        ``` bash
        $ pip install instfetch
        ``` 
        
        ## Usage
        + **Search Users:**
            ``` python
            from instafetch import Instafetch
            
            I = Instafetch()
            users  = I.users(<keyword>)
            ```
        
        + **Get user details:**
            ``` python
            I = Instafetch()
            user_detail = I.user(<username>)
            ```
        + **Fetch Hashtags data:**
            ``` python
            I  = Instafetch()
            I.explore(<Hashtag>, page=<no. of pages>) #number of pages to fetch
            
            top_posts = I.top_posts
            all_posts = I.all_posts
            ```
        ## Contributing
        1. Fork it!
        2. Create your feature branch: `git checkout -b <new-feature>`
        3. Commit your changes: `git commit -am 'New Feature added'`
        4. Push to the branch: `git push origin <new-feature>`
        5. Submit a pull request :D
        
        ## Credits
        ****
        ## License
        [MIT]()
Keywords: Instagram API Python
Platform: UNKNOWN
