1
0
mirror of https://github.com/instaloader/instaloader.git synced 2024-07-07 11:42:38 +02:00

Minor tweaks to documentation

This commit is contained in:
Alexander Graf 2017-08-26 12:42:04 +02:00
parent 1f89dba702
commit 5aff8273b0
6 changed files with 29 additions and 8 deletions

View File

@ -32,6 +32,9 @@ will be installed automatically, if it is not already installed.
How to Automatically Download Pictures from Instagram
-----------------------------------------------------
(This file is only a summary of
`the complete Instaloader Documentation <https://instaloader.readthedocs.io/>`__)
.. basic-usage-start
To **download all pictures and videos of a profile**, as well as the
@ -340,7 +343,7 @@ get the current username of a profile, given this unique ID
.. as-module-intro-end
Refer to the
`Instaloader Documentation <http://instaloader.readthedocs.io/>`__ for
`Instaloader Documentation <https://instaloader.readthedocs.io/>`__ for
more information.
Disclaimer

View File

@ -1,7 +1,18 @@
{% if next %}
<h3>Next</h3>
<ul>
<li class="toctree-l1"><a class="reference internal" href="{{ next.link|e }}">{{ next.title }}</a></li>
</ul>
{% endif %}
<h3>Links</h3>
<ul>
<li><a href="https://github.com/Thammus/instaloader">Instaloader on GitHub</a></li>
<li><a href="https://pypi.python.org/pypi/instaloader">Instaloader on PyPI</a></li>
<li><a href="https://github.com/Thammus/instaloader/issues">Issue Tracker</a></li>
<li><a href="https://github.com/Thammus/instaloader/releases">Version History</a></li>
<li><a href="https://pypi.python.org/pypi/instaloader">Instaloader on PyPI</a></li>
<li><a href="https://github.com/Thammus/instaloader">Instaloader on GitHub</a></li>
</ul>
<ul>
<li>
<a class="github-button" href="https://github.com/Thammus/Instaloader" data-icon="octicon-star" data-size="large" data-show-count="true" aria-label="Star Thammus/Instaloader on GitHub">Star</a>
</li>
</ul>

View File

@ -1,5 +1,5 @@
How to Download Pictures from Instagram
---------------------------------------
Download Pictures from Instagram
---------------------------------
Basic Usage
^^^^^^^^^^^

View File

@ -1,9 +1,11 @@
Instaloader
===========
*Instaloader* is a tool to download pictures (or videos) along with
**Instaloader** is a tool to download pictures (or videos) along with
their captions and other metadata from Instagram.
With `Python <https://www.python.org/>`__ installed, do:
::
$ pip3 install instaloader

View File

@ -1302,7 +1302,9 @@ class Instaloader:
def main():
parser = ArgumentParser(description=__doc__, add_help=False,
epilog="Report issues at https://github.com/Thammus/instaloader/issues.")
epilog="Report issues at https://github.com/Thammus/instaloader/issues. "
"The complete documentation can be found at "
"https://instaloader.readthedocs.io/.")
g_what = parser.add_argument_group('What to Download',
'Specify a list of profiles or #hashtags. For each of these, Instaloader '

View File

@ -31,11 +31,14 @@ keywords = (['instagram', 'instagram-scraper', 'instagram-client', 'instagram-fe
'pictures', 'instagram-user-photos', 'instagram-photos', 'instagram-metadata', 'instagram-downloader',
'instagram-stories'])
# NOTE that many of the values defined in this file are duplicated on other places, such as the
# documentation.
setup(
name='instaloader',
version=get_version(),
py_modules=['instaloader'],
url='https://github.com/Thammus/instaloader',
url='https://instaloader.readthedocs.io/',
license='MIT',
author='Alexander Graf, André Koch-Kramer',
author_email='mail@agraf.me, koch-kramer@web.de',