Skip to content

napuzba/zagoload

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

zagoload

zagoload is python package for downloading files.

Version Python License Build Status zagoload PyPI Downloads

zagoload supports:

  • Remote files can be accessible thought HTTP and FTP protocols.
  • The files can be cached locally.

Usage sample:

import zagoload

ff = zagoload.load('http://www.cnn.com')
if ff.valid:
  # if valid, process ff.target is the downloaded file in the file on disk
  print(ff.target)
  # or process ff.text - the content of the file
  print(ff.text)

See more samples at Download Files with zagoload.

Releases

No releases published

Packages

No packages published

Languages