Metadata-Version: 2.1
Name: pyDownload
Version: 0.0.1.dev1
Summary: A simple package for multithreaded downloading
Home-page: https://github.com/party98/Python-Parallel-Downloader
Author: Parth Verma
Author-email: v.parth98@gmail.com
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/party98/Python-Parallel-Downloader/issues
Project-URL: Say Thanks!, https://saythanks.io/to/party98
Project-URL: Source, https://github.com/party98/Python-Parallel-Downloader
Description: # PyDownload
        
        This package aims to provide the functionality to download large files from the internet using chunked and multithreaded downloads.
        
        
        ## Usage
        
        ```
        import time
        from pyDownload import Downloader
        
        url = 'https://github.com/party98/Python-Parallel-Downloader/archive/master.zip'
        downloader = Downloader(url=url, filename=filename)
        if downloader.is_running():
            time.sleep(1)
        print('File downloaded to %s' % downloader.get_file_name())
        ```
        
Keywords: downloading multithreaded parallel multithreading multithreaded-downloading download
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
Provides-Extra: dev
Provides-Extra: test
