1
0
mirror of https://github.com/instaloader/instaloader.git synced 2024-07-15 07:19:13 +02:00

Minor documentation improvements

This commit is contained in:
Alexander Graf 2016-09-19 19:26:59 +02:00
parent 1036fe45b5
commit 1d506b5f95
3 changed files with 11 additions and 6 deletions

View File

@ -1,7 +1,7 @@
# instaloader # Instaloader
Tool to download pictures (or videos) and captions from Instagram, from a given set 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 ## Usage
@ -24,6 +24,7 @@ install it:
./setup.py install [--user] ./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 [python3-requests](https://pypi.python.org/pypi/requests/), which will be instaloader requires [python3-requests](https://pypi.python.org/pypi/requests/), which will be
installed automatically by setup.py, if not already installed. installed automatically by setup.py, if not already installed.

View File

@ -1,7 +1,7 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
"""Tool to download pictures (or videos) and captions from Instagram, from a given set """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 import re, json, datetime, shutil, os, time, random, sys, pickle, getpass, tempfile
from argparse import ArgumentParser from argparse import ArgumentParser

View File

@ -3,7 +3,7 @@
import sys import sys
from setuptools import setup from setuptools import setup
if sys.version_info < (3,3): if sys.version_info < (3, 3):
sys.exit('Instaloader requires Python >= 3.3.') sys.exit('Instaloader requires Python >= 3.3.')
setup( setup(
@ -15,7 +15,8 @@ setup(
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 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'], install_requires=['requests>=2.4'],
python_requires='>=3.3', python_requires='>=3.3',
entry_points={'console_scripts': ['instaloader=instaloader:main']}, entry_points={'console_scripts': ['instaloader=instaloader:main']},
@ -24,12 +25,15 @@ setup(
classifiers=[ classifiers=[
'Development Status :: 5 - Production/Stable', 'Development Status :: 5 - Production/Stable',
'Environment :: Console', 'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License', 'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent', 'Operating System :: OS Independent',
'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6',
'Topic :: Internet' 'Programming Language :: Python :: 3 :: Only',
'Topic :: Internet',
'Topic :: Multimedia :: Graphics'
] ]
) )