Minimal updated description

This commit is contained in:
André Koch-Kramer 2016-09-22 19:02:26 +02:00
parent 98c2847afd
commit 50faad0a04
2 changed files with 15 additions and 15 deletions

View File

@ -1,18 +1,15 @@
Instaloader Instaloader
=========== ===========
Tool to download pictures (or videos) and captions from Instagram, from
a given set of profiles (even if private), from your feed or from all
followees of a given profile.
Usage Installation
----- ------------
instaloader is written in Python, thus ensure having instaloader is written in Python, thus ensure having
`Python <https://www.python.org/>`__ (at least version 3.3) installed. `Python <https://www.python.org/>`__ (at least version 3.3) installed.
If you intend to use this tool under Windows, it is highly recommended If you intend to use this tool under Windows, it is recommended
to first install to install
`win-unicode-console <https://pypi.python.org/pypi/win_unicode_console>`__. `win-unicode-console <https://pypi.python.org/pypi/win_unicode_console>`__.
If you have `pip <https://pypi.python.org/pypi/pip>`__ installed, you If you have `pip <https://pypi.python.org/pypi/pip>`__ installed, you
@ -29,15 +26,18 @@ and invoke bundled ``setup.py`` (requiring
:: ::
./setup.py install [--user] python3 setup.py install [--user]
(pass ``--user`` to install it for your user only instead of globally) (pass ``--user`` to install it for your user only instead of globally)
instaloader requires instaloader requires
`python3-requests <https://pypi.python.org/pypi/requests/>`__, which `requests <https://pypi.python.org/pypi/requests>`__, which
will be installed automatically by setup.py, if not already installed. will be installed automatically by setup.py, if not already installed.
Now, to download a set of profiles, do How to automatically download pictures from Instagram
-----------------------------------------------------
To download a set of profiles, do
:: ::
@ -65,7 +65,7 @@ invoke it with
When invoked like this, it also **stores the session cookies** in a file When invoked like this, it also **stores the session cookies** in a file
in ``/tmp``, which will be reused later when ``--login`` is given. So in ``/tmp``, which will be reused later when ``--login`` is given. So
you can download private profiles **non-interactively** when you already you can download private profiles **non-interactively** when you already
have a valid session cookies file. have a valid session cookie file.
If you want to **download all followees of a given profile**, call If you want to **download all followees of a given profile**, call
@ -73,7 +73,7 @@ If you want to **download all followees of a given profile**, call
instaloader --login=your_username @profile instaloader --login=your_username @profile
To **download all the pictures which you have liked**, call To **download all the pictures from your feed which you have liked**, call
:: ::

View File

@ -14,9 +14,9 @@ setup(
license='MIT', license='MIT',
author='Alexander Graf, André Koch-Kramer', author='Alexander Graf, André Koch-Kramer',
author_email='mail@agraf.me, koch-kramer@web.de', author_email='mail@agraf.me, koch-kramer@web.de',
description='Tool to download pictures (or videos) and captions from Instagram, from a given ' description='Tool to download Instagram pictures (or videos) and captions from a given set of '
'set of profiles (even if private), from your feed or from all followees of a ' 'profiles (even if private), from your feed or from all followees of a given '
'given profile.', 'profile.',
long_description=open('README.rst').read(), long_description=open('README.rst').read(),
install_requires=['requests>=2.4'], install_requires=['requests>=2.4'],
python_requires='>=3.3', python_requires='>=3.3',