Metadata-Version: 2.1
Name: pyinsta
Version: 0.2
Summary: This package will help you download your favourite celebrity post and also any of your friend's profile picture.
Home-page: https://github.com/vaish1999/Download-insta-posts
Author: Vaishakh Nargund
Author-email: vaishakh.nargund1999@gmail.com
License: GPL 2.0
Download-URL: https://github.com/vaish1999/Download-insta-posts/archive/v1.1.tar.gz
Description: # Download-insta-posts
        This package will help you download your favourite celebrity post and also any of your friends' profile picture.
        
        Installation:
        
        ```python
        pip install pyinsta
        ```
        
        1. Download your favourite celebrity's n<sup>th</sup> picture of m<sup>th</sup> post as follows:
        
        ```python
        from pyinsta.download import post
        post("username of the celebrity",m,n)
        ```
        
        Output: 
        The picture or video gets saved in the folder called instagram_downloads, which will be loacted in the command running directory.
        Nomenclature of the picture or video saved will be:
        "username_m_n.jpg/.mp4"
        
        2. Download your favourite celebrity's n<sup>th</sup> post which has only a single picture in it, as follows:
        
        ```python
        from pyinsta.download import post
        post("username of the celebrity",n)
        ```
        
        Output: 
        The picture or video gets saved in the folder called instagram_downloads, which will be loacted in the command running directory.
        Nomenclature of the picture or video saved will be:
        "username_n.jpg/.mp4"
        
        3. Download any of your friends' profile picture as follows:
        
        ```python
        from pyinsta.download import profile_pic
        profile_pic("username of the celebrity")
        ```
        
        Output: 
        The profile picture gets saved in the folder called instagram_downloads, which will be loacted in the command running directory.
        Nomenclature of the picture saved will be:
        "username_profile_pic.jpg"
        
        
        
        
Keywords: instagram,download,profile,picture,post,python
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Requires-Python: >=3.7
Description-Content-Type: text/markdown
