Metadata-Version: 1.1
Name: py_instagram_dl
Version: 1.4
Summary: A Python package to download all pictures from an Instagram user profile. 
Home-page: http://www.thepythondjango.com/
Author: Anurag Rana
Author-email: UNKNOWN
License: MIT License
Description-Content-Type: UNKNOWN
Description: =====
        py_instagram_dl
        =====
        
        This python package let you download all the pictures of an instagram user.
        
        
        Quick start
        -----------
        
        - Create a virtual environment. Optional but recommended. You can refer below article.
        
           http://thepythondjango.com/virtual-environment-python-pocket-guide/
        
        - Install dependencies::
        
            pip install beautifulsoup4 bs4 lmxl requests urllib3
        
        - Install the package::
        
            pip install py_instagram_dl
        
        - Use the package in your code. Example below::
        
            import py_instagram_dl as pyigdl
            import sys
        
            try:
                pyigdl.download(sys.argv[1], wait_between_requests=1)
            except Exception as e:
                print(e)
        
        
        - Please visit below link for more details and source code.
        
            http://thepythondjango.com/py-instagram-dl-python-package-download-pictures-instagram-user/
        
        
        .
        
        
        
        
        
        
Keywords: instagram dowloader,instagram scrapper,instagram picture downloads
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
