1
0
mirror of https://github.com/instaloader/instaloader.git synced 2024-11-23 10:42:30 +01:00

Equalify summary in *.py and README.md

This commit is contained in:
Alexander Graf 2016-09-18 16:41:43 +02:00
parent 1ff6dd9d30
commit 508c629d2b
3 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# instaloader
Simple 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.
## Usage

View File

@ -1,6 +1,7 @@
#!/usr/bin/env python3
"""Download pictures and captions from Instagram"""
"""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."""
import re, json, datetime, shutil, os, time, random, sys, pickle, getpass, tempfile
from argparse import ArgumentParser

View File

@ -10,7 +10,8 @@ setup(
license='MIT',
author='Alexander Graf, André Koch-Kramer',
author_email='mail@agraf.me, koch-kramer@web.de',
description='Download pictures and captions from Instagram',
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.',
install_requires=['requests>=2.4'],
python_requires='>=3.3',
entry_points={'console_scripts': ['instaloader=instaloader:main']},