Metadata-Version: 2.0
Name: instaLooter
Version: 0.1.1
Summary: Another API-less Instagram pictures and videos downloader.
Home-page: http://github.com/althonos/InstaLooter
Author: althonos
Author-email: martin.larralde@ens-cachan.fr
License: GPLv3
Keywords: instagram,download,web,web scraping
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Operating System :: OS Independent
Requires-Dist: beautifulsoup4
Requires-Dist: progressbar2
Requires-Dist: six
Provides-Extra: metadata
Requires-Dist: Pillow; extra == 'metadata'
Requires-Dist: beautifulsoup4; extra == 'metadata'
Requires-Dist: piexif; extra == 'metadata'
Requires-Dist: progressbar2; extra == 'metadata'
Requires-Dist: six; extra == 'metadata'

InstaLooter
===========

InstaLooter is a downloader that can download any picture or video associated
from an Instagram profile. It can be seen as a re-implementation of the now
deprecated `InstaRaider <https://github.com/akurtovic/InstaRaider>`_ developed by
`@akurtovic <https://github.com/akurtovic>`_.

This implementation only requires `BeautifulSoup <https://pypi.python.org/pypi/beautifulsoup4>`_
for html parsing, `six <https://pypi.python.org/pypi/six>`_ for version compatibility, and
`progressbar2 <https://pypi.python.org/pypi/progressbar2>`_ for the output.

Usage
-----

.. code::

    instaLooter [options] username directory


Additional Parameters
^^^^^^^^^^^^^^^^^^^^^

-n NUM_TO_DOWNLOAD
    number of new posts to download (if not specified all posts are downloaded)

-m, --add-metadata
    add date and caption metadata to downloaded pictures

-v, --get-videos
    also download videos

-j JOBS, --jobs JOBS
    the number of parallel threads to use to download files (default is 16)

-q, --quiet
    do not produce any output


Installation
------------

Install with pip:

.. code::

    pip install instaLooter


