Metadata-Version: 1.2
Name: requests-downloader
Version: 0.2.2
Summary: Python package to download files
Home-page: https://github.com/hrishikeshrt/requests_downloader
Author: Hrishikesh Terdalkar
Author-email: hrishikeshrt@linuxmail.org
License: GNU General Public License v3
Description: ===================
        requests_downloader
        ===================
        
        
        .. image:: https://img.shields.io/pypi/v/requests_downloader.svg
                :target: https://pypi.python.org/pypi/requests_downloader
        
        .. image:: https://img.shields.io/travis/hrishikeshrt/requests_downloader.svg
                :target: https://travis-ci.com/hrishikeshrt/requests_downloader
        
        .. image:: https://readthedocs.org/projects/requests_downloader/badge/?version=latest
                :target: https://requests_downloader.readthedocs.io/en/latest/?badge=latest
                :alt: Documentation Status
        
        
        .. image:: https://pyup.io/repos/github/hrishikeshrt/requests_downloader/shield.svg
             :target: https://pyup.io/repos/github/hrishikeshrt/requests_downloader/
             :alt: Updates
        
        
        
        Python package to download files
        
        
        * Free software: GNU General Public License v3
        * Documentation: https://requests_downloader.readthedocs.io.
        
        
        Features
        --------
        
        * Hassle-free download using ``requests``
        * Download from Drive, Dropbox, Archive or direct URLs
        * No need to specify a name for the file to be downloaded
        * Command Line Interface to download
        * External ``requests.Session`` object can be passed
        
        Usage
        -----
        
        Get multiple download options (e.g. for ``archive.org`` links)::
        
            from requests_downloader import downloader
            download_urls, default_idx = downloader.handle_url('<url>')
        
        
        Download a file::
        
            from requests_downloader import downloader
            downloader.download('<download_url>')
        
        
        Credits
        -------
        
        This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.
        
        .. _Cookiecutter: https://github.com/audreyr/cookiecutter
        .. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage
        
        
        =======
        History
        =======
        
        0.1.7 (2021-06-07)
        ------------------
        
        * Minor bugfixes and spelling corrections.
        
        0.1.5 (2020-11-03)
        ------------------
        
        * Support for Google Docs (Document, Spreadsheets, Presentations).
        
        0.1.4 (2020-09-07)
        ------------------
        
        * Bugfixes.
        * First Alpha release.
        
        0.1.0 (2020-09-05)
        ------------------
        
        * First release on PyPI.
        
Keywords: requests_downloader
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
