From 918e38ff67aa6bb5faf8e6f61830a29f68d2333a Mon Sep 17 00:00:00 2001 From: Mendel Schneerson Date: Mon, 23 Apr 2018 13:22:02 -0400 Subject: [PATCH 1/4] Update README spelling, grammer --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index dc713f8..4dddbdf 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ # Wallhaven-dl ## UPDATE -###The script now comes with a serach functionality, you can now search and download wallpapers from the command line. +###The script now comes with a search functionality, you can now search and download wallpapers from the command line. --------------------------------------------------------------------- -A wallhaven scraper which downloads all the wallpapers form the first page of [alpha.wallhaven.cc](http://alpha.wallhaven.cc/) +A wallhaven scraper which downloads all the wallpapers from the first page of [alpha.wallhaven.cc](http://alpha.wallhaven.cc/) This Script now comes with categories and purity sort support. ###### NOTE- Downloading NSFW images require a [Wallhaven Account](https://alpha.wallhaven.cc/user/create) @@ -18,7 +18,7 @@ This Script now comes with categories and purity sort support. 1. Download the wallhaven-dl.py 2. Move wallhaven-dl.py to the folder in which you want wallpapers to download. 3. run script - 4. It'll ask for option to choose categories or download the latest wallpapers, choose as per desired + 4. It'll ask you to choose a category, download the latest wallpapers or search, choose as per desired. 5. enjoy! ``` $ python3 wallhaven-dl.py From 6402aa20346703d82b8e31044e80fd5af02b7eb1 Mon Sep 17 00:00:00 2001 From: Mendel Schneerson Date: Mon, 23 Apr 2018 13:22:28 -0400 Subject: [PATCH 2/4] Rename requirments.txt to requirements.txt --- requirments.txt => requirements.txt | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename requirments.txt => requirements.txt (100%) diff --git a/requirments.txt b/requirements.txt similarity index 100% rename from requirments.txt rename to requirements.txt From 381f8d49b960bbf93a5d3c65d285d3729e49dbf4 Mon Sep 17 00:00:00 2001 From: Mendel Schneerson Date: Mon, 23 Apr 2018 13:22:56 -0400 Subject: [PATCH 3/4] Update README with requirements file --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4dddbdf..3499944 100644 --- a/README.md +++ b/README.md @@ -27,9 +27,9 @@ $ python3 wallhaven-dl.py ## Dependencies: This project depends on BeautifulSoup, Requests, tqdm, lxml - Your can install install the dependencies using the requirments.txt file and running + Your can install install the dependencies using the requirements.txt file and running ``` - $ pip3 install -r requirments.txt + $ pip3 install -r requirements.txt ``` From 581febebdc874b62e1482a11ec34aa94c807a141 Mon Sep 17 00:00:00 2001 From: Mendel Schneerson Date: Mon, 23 Apr 2018 13:23:29 -0400 Subject: [PATCH 4/4] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 69eddc7..af78503 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM python:3 RUN mkdir -p /Wallhaven-dl/Wallhaven WORKDIR /Wallhaven-dl -COPY requirments.txt ./ +COPY requirements.txt ./ RUN pip install --no-cache-dir -r requirments.txt COPY . .