Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 1.19 KB

index.md

File metadata and controls

34 lines (23 loc) · 1.19 KB

UrlDownload.jl

UrlDownload.jl is a small package aimed to simplify process of data downloading and postprocessing, without intermediate files storing. Additionally UrlDownload.jl provides progress bar for big files with long download time.

Currently these types of data are supported

  • PIC: image files, such as jpeg, png, bmp etc
  • CSV: files with comma separated values
  • FEATHER
  • JSON

Unsupported file formats can be processed with the help of custom parsers.

Installation

To install UrlDownload either do

using Pkg
Pkg.add("UrlDownload")

or switch to Pkg mode with ] and issue

pkg> add UrlDownload

Note: this package uses many different packages for data processing, which should be installed separately. SO, if you receive message like ERROR: ArgumentError: Package CSV not found in current path, install CSV.jl manually and error will go away. No additional work is needed, since UrlDownload.jl import necessary packages on it's own.

Functions

Modules = [UrlDownload]