Merge pull request #8 from benlights/master

few changes - spelling
This commit is contained in:
Saurabh Bhan
2018-04-23 23:08:46 +05:30
committed by GitHub
3 changed files with 6 additions and 6 deletions

View File

@@ -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 . .

View File

@@ -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
@@ -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
```