Skip to content

EvandroLG/pyrallelize

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pyrallelize

Build Status

Simple solution to make parallel download with Python

Why?

Sometimes we need to download a lot of files and by default Python runs all procedurally, what can take long time for end. The library is a solution to that problem, pyrallelize downloads all files in parallel using multiprocessing.

Install

To install pyrallelize, simply:

$ pip install pyrallelize

How does it work?

Follow an example:

  from pyrallelize import pyrallelize

  pyrallelize([
    'http://example.com/image-1.jpg',
    'http://example.com/image-2.jpg',
    'http://example.com/image-3.jpg',
    'http://example.com/image-4.jpg',
    'http://example.com/image-5.jpg'
  ])

Parameters

  • url_list list
  • directory str

Contributing

Install Dependencies

$ make install_dependencies

Running tests

$ make test

About

Simple solution to make parallel download with Python

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published