Minor tweaks to documentation
This commit is contained in:
parent
1f89dba702
commit
5aff8273b0
@ -32,6 +32,9 @@ will be installed automatically, if it is not already installed.
|
|||||||
How to Automatically Download Pictures from Instagram
|
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
|
.. basic-usage-start
|
||||||
|
|
||||||
To **download all pictures and videos of a profile**, as well as the
|
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
|
.. as-module-intro-end
|
||||||
|
|
||||||
Refer to the
|
Refer to the
|
||||||
`Instaloader Documentation <http://instaloader.readthedocs.io/>`__ for
|
`Instaloader Documentation <https://instaloader.readthedocs.io/>`__ for
|
||||||
more information.
|
more information.
|
||||||
|
|
||||||
Disclaimer
|
Disclaimer
|
||||||
|
15
docs/_templates/links.html
vendored
15
docs/_templates/links.html
vendored
@ -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>
|
<h3>Links</h3>
|
||||||
<ul>
|
<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/issues">Issue Tracker</a></li>
|
||||||
<li><a href="https://github.com/Thammus/instaloader/releases">Version History</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>
|
</ul>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
How to Download Pictures from Instagram
|
Download Pictures from Instagram
|
||||||
---------------------------------------
|
---------------------------------
|
||||||
|
|
||||||
Basic Usage
|
Basic Usage
|
||||||
^^^^^^^^^^^
|
^^^^^^^^^^^
|
||||||
|
@ -1,9 +1,11 @@
|
|||||||
Instaloader
|
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.
|
their captions and other metadata from Instagram.
|
||||||
|
|
||||||
|
With `Python <https://www.python.org/>`__ installed, do:
|
||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
$ pip3 install instaloader
|
$ pip3 install instaloader
|
||||||
|
@ -1302,7 +1302,9 @@ class Instaloader:
|
|||||||
|
|
||||||
def main():
|
def main():
|
||||||
parser = ArgumentParser(description=__doc__, add_help=False,
|
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',
|
g_what = parser.add_argument_group('What to Download',
|
||||||
'Specify a list of profiles or #hashtags. For each of these, Instaloader '
|
'Specify a list of profiles or #hashtags. For each of these, Instaloader '
|
||||||
|
5
setup.py
5
setup.py
@ -31,11 +31,14 @@ keywords = (['instagram', 'instagram-scraper', 'instagram-client', 'instagram-fe
|
|||||||
'pictures', 'instagram-user-photos', 'instagram-photos', 'instagram-metadata', 'instagram-downloader',
|
'pictures', 'instagram-user-photos', 'instagram-photos', 'instagram-metadata', 'instagram-downloader',
|
||||||
'instagram-stories'])
|
'instagram-stories'])
|
||||||
|
|
||||||
|
# NOTE that many of the values defined in this file are duplicated on other places, such as the
|
||||||
|
# documentation.
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='instaloader',
|
name='instaloader',
|
||||||
version=get_version(),
|
version=get_version(),
|
||||||
py_modules=['instaloader'],
|
py_modules=['instaloader'],
|
||||||
url='https://github.com/Thammus/instaloader',
|
url='https://instaloader.readthedocs.io/',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
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',
|
||||||
|
Loading…
Reference in New Issue
Block a user