1
0
mirror of https://github.com/instaloader/instaloader.git synced 2024-11-04 09:22:29 +01:00

Release of version 1.0

This commit is contained in:
André Koch-Kramer 2016-07-28 18:30:44 +02:00
parent 651b590cfa
commit f3a52c6f4d
2 changed files with 3 additions and 1 deletions

View File

@ -7,7 +7,7 @@ Simple downloader to fetch all Instagram pictures and captions from a given prof
Ensure having [Python](https://www.python.org/) (at least version 3.3) and Ensure having [Python](https://www.python.org/) (at least version 3.3) and
[python3-requests](https://pypi.python.org/pypi/requests/) installed. [python3-requests](https://pypi.python.org/pypi/requests/) installed.
After having downloaded instaloader.py, you invoke it with After having [downloaded instaloader.py](https://github.com/Thammus/instaloader/releases), you invoke it with
``` ```
./instaloader.py profile [profile ...] ./instaloader.py profile [profile ...]
``` ```

View File

@ -398,6 +398,8 @@ def main():
parser = ArgumentParser(description='Simple downloader to fetch all Instagram pics and '\ parser = ArgumentParser(description='Simple downloader to fetch all Instagram pics and '\
'captions from a given profile') 'captions from a given profile')
parser.add_argument('targets', nargs='+', help='Names of profiles to download') parser.add_argument('targets', nargs='+', help='Names of profiles to download')
parser.add_argument('--version', action='version',
version='1.0')
parser.add_argument('-l', '--login', metavar='login_name', parser.add_argument('-l', '--login', metavar='login_name',
help='Provide login name for your Instagram account') help='Provide login name for your Instagram account')
parser.add_argument('-p', '--password', parser.add_argument('-p', '--password',