Metadata-Version: 2.1
Name: rfcdl
Version: 1.2.5
Summary: A tool for downloading RFCs in high-speed.
Home-page: https://pypi.python.org/pypi/rfcdl
Author: eikendev
Author-email: raphael@eiken.dev
License: MIT
Keywords: rfc,downloader,cli
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Utilities
Classifier: Environment :: Console
Classifier: Operating System :: POSIX
Requires-Python: >=3
Requires-Dist: aiofiles ; python_version >= "0.3.0"
Requires-Dist: requests ; python_version >= "2.0.0"
Requires-Dist: aiohttp ; python_version >= "3.0.0"

.. image:: https://img.shields.io/travis/eikendev/rfcdl/master
    :alt: Build status
    :target: https://travis-ci.com/github/eikendev/rfcdl/builds/

.. image:: https://img.shields.io/pypi/status/rfcdl
    :alt: Development status
    :target: https://pypi.org/project/rfcdl/

.. image:: https://img.shields.io/pypi/l/rfcdl
    :alt: License
    :target: https://pypi.org/project/rfcdl/

.. image:: https://img.shields.io/pypi/pyversions/rfcdl
    :alt: Python version
    :target: https://pypi.org/project/rfcdl/

.. image:: https://img.shields.io/pypi/v/rfcdl
    :alt: Version
    :target: https://pypi.org/project/rfcdl/

.. image:: https://img.shields.io/pypi/dm/rfcdl
    :alt: Downloads
    :target: https://pypi.org/project/rfcdl/

Usage
=====

This tool can be used to download a large number of `RFC documents <https://www.ietf.org/standards/rfcs/>`_ in a short period of time.
Since I like to keep all RFCs locally on my machine, this is the perfect way to retrieve all the documents and add new ones at a later point in time.

For a quick introduction, let me show how you would use the tool to get started.

.. code:: bash

    rfcdl -d ~/download/rfc/

As can be seen above, you have to specify a directory where all RFC documents will be saved in.
Upon the next invocation of ``rfcdl``, only the RFCs missing in that directory will be downloaded.

If you only want to download a random subset of all RFCs, use the ``--samples`` flag.
This can be used for testing.
For instance, the following will download 20 random RFC documents.

.. code:: bash

    rfcdl -d ~/download/rfc/ --samples 20

Since ``rfcdl`` downloads multiple files in parallel by default, one can specify how many simultaneous downloads are allowed using the ``--limit`` flag.
The following invocation will only download at most ten files in parallel.

.. code:: bash

    rfcdl -d ~/download/rfc/ --limit 10

To explicitly state how many times ``rfcdl`` should download a file upon error, the ``--retries`` flag can be used.
This can be useful in case one expects a bad connection.
This is how you could tell the tool to try to download each file at maximum five times.

.. code:: bash

    rfcdl -d ~/download/rfc/ --retries 5

Installation
============

From PyPI
---------

.. code:: bash

    pip install rfcdl

From Source
-----------

.. code:: bash

    ./setup.py install

Fedora
------

.. code:: bash

    sudo dnf copr enable eikendev/rfcdl
    sudo dnf install python3-rfcdl

Configuration
=============

A configuration file can be saved to ``~/.config/rfcdl/config.ini`` to avoid specifying the path for each invocation.
Of course, ``$XDG_CONFIG_HOME`` can be set to change your configuration path.
Alternatively, the path to the configuration file can be set via the ``--config-file`` argument.

.. code:: ini

    [GENERAL]
    RootDir = ~/download/rfc/

Development
===========

The source code is located on `GitHub <https://github.com/eikendev/rfcdl>`_.
To check out the repository, the following command can be used.

.. code:: bash

    git clone https://github.com/eikendev/rfcdl.git


