diff --git a/README.md b/README.md index 34db2aa..781c779 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ -# instaloader +# Instaloader Tool to download pictures (or videos) and captions from Instagram, from a given set -of profiles, from your feed or from all followees of a given profile. +of profiles (even if private), from your feed or from all followees of a given profile. ## Usage @@ -24,6 +24,7 @@ install it: ./setup.py install [--user] ``` (pass `--user` to install it for your user only instead of globally) + instaloader requires [python3-requests](https://pypi.python.org/pypi/requests/), which will be installed automatically by setup.py, if not already installed. diff --git a/instaloader.py b/instaloader.py index 2008f5a..e69c811 100755 --- a/instaloader.py +++ b/instaloader.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 """Tool to download pictures (or videos) and captions from Instagram, from a given set -of profiles, from your feed or from all followees of a given profile.""" +of profiles (even if private), from your feed or from all followees of a given profile.""" import re, json, datetime, shutil, os, time, random, sys, pickle, getpass, tempfile from argparse import ArgumentParser diff --git a/setup.py b/setup.py index 2508c0a..7a356eb 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ import sys from setuptools import setup -if sys.version_info < (3,3): +if sys.version_info < (3, 3): sys.exit('Instaloader requires Python >= 3.3.') setup( @@ -15,7 +15,8 @@ setup( author='Alexander Graf, André Koch-Kramer', author_email='mail@agraf.me, koch-kramer@web.de', description='Tool to download pictures (or videos) and captions from Instagram, from a given ' - 'set of profiles, from your feed or from all followees of a given profile.', + 'set of profiles (even if private), from your feed or from all followees of a ' + 'given profile.', install_requires=['requests>=2.4'], python_requires='>=3.3', entry_points={'console_scripts': ['instaloader=instaloader:main']}, @@ -24,12 +25,15 @@ setup( classifiers=[ 'Development Status :: 5 - Production/Stable', 'Environment :: Console', + 'Intended Audience :: End Users/Desktop', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', - 'Topic :: Internet' + 'Programming Language :: Python :: 3 :: Only', + 'Topic :: Internet', + 'Topic :: Multimedia :: Graphics' ] )