Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/asiniy/download
Downloads remote file and stores it in the filesystem
https://github.com/asiniy/download
Last synced: 4 days ago
JSON representation
Downloads remote file and stores it in the filesystem
- Host: GitHub
- URL: https://github.com/asiniy/download
- Owner: asiniy
- Created: 2017-07-09T12:18:01.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-10-06T21:27:20.000Z (about 2 years ago)
- Last Synced: 2024-10-04T12:06:58.856Z (about 1 month ago)
- Language: Elixir
- Size: 7.81 KB
- Stars: 33
- Watchers: 4
- Forks: 23
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- freaking_awesome_elixir - Elixir - Download files from the internet easily. (Networking)
- fucking-awesome-elixir - download - Download files from the internet easily. (Networking)
- awesome-elixir - download - Download files from the internet easily. (Networking)
README
# `download`
[![Build Status](https://travis-ci.org/asiniy/download.svg?branch=master)](https://travis-ci.org/asiniy/download)
[![hexdocs](https://img.shields.io/badge/hex-docs-brightgreen.svg)](https://hexdocs.pm/download/Download.html#from/2)
![badge](https://img.shields.io/hexpm/v/download.svg)Simply downloads remote file and stores it in the filesystem.
``` elixir
Download.from(url, options)
```[Documentation](https://hexdocs.pm/download/Download.html#from/2)
## Features
* Small RAM consumption
* Ability to limit downloaded file size
* Uses httpoison## Installation
```elixir
def deps do
[{:download, "~> x.x.x"}]
end
```Into `mix.exs`
``` elixir
def application do
[applications: [:download]]
end
```