Prepare 2.3 release

master
Vishnunarayan K I 2018-06-03 18:37:51 +05:30
parent 88d56a93db
commit b921c26ece
2 changed files with 15 additions and 11 deletions

View File

@ -32,26 +32,30 @@ You can install the stable release from PyPI.
$ pip install anime-downloader
```
To install with cloudflare support,
```bash
$ pip install anime-downloader[cloudflare]
```
To install the dev version
```bash
$ pip install -U git+https://github.com/vn-ki/anime-downloader.git
```
*NOTE: You might have to use pip3 depending on your system*
Cloudflare support is currently only available in master. Use the following command to install with cloudflare support.
```bash
pip install -U git+https://github.com/vn-ki/anime-downloader.git#egg=anime-downloader'[cloudflare]'
# To install with cloudflare support
$ pip install -U git+https://github.com/vn-ki/anime-downloader.git#egg=anime-downloader[cloudflare]
```
**IMP**: For cloudflare scraping [cfscrape](https://github.com/Anorov/cloudflare-scrape) is used. It depends on `node-js`. So if you want to use cloudflare, make sure you have node installed.
**IMP**:
- For cloudflare scraping [cfscrape](https://github.com/Anorov/cloudflare-scrape) is used. It depends on `node-js`. So if you want to use cloudflare, make sure you have node installed.
- You might have to use pip3 depending on your system
- If you are using zsh, don't forget to escape `[` and `]` using `\`.
## Usage
Anime downloader has two sub commands, `dl` and `watch`. You can find the documentation in [wiki](https://github.com/vn-ki/anime-downloader/wiki)
- [dl](https://github.com/vn-ki/anime-downloader/wiki/dl-command)
- [watch](https://github.com/vn-ki/anime-downloader/wiki/watch-command)
- [dl](https://github.com/vn-ki/anime-downloader/wiki/dl-command): `dl` can download anime.
- [watch](https://github.com/vn-ki/anime-downloader/wiki/watch-command): `watch` can manage your anime watching. Needs [mpv](https://mpv.io). With `watch` you'll never have to go to any anime sites ever again.
#### Search and download

View File

@ -8,13 +8,13 @@ with open('README.md', 'r') as f:
setup(
name='anime-downloader',
version='2.2',
version='2.3',
author='Vishnunarayan K.I.',
author_email='vishnunarayan6105@gmail.com',
description='Download your favourite anime',
packages=find_packages(),
url='https://github.com/vn-ki/anime-downloader',
download_url='https://github.com/vn-ki/anime-downloader/archive/2.2.tar.gz',
download_url='https://github.com/vn-ki/anime-downloader/archive/2.3.tar.gz',
keywords=['anime', 'downloader', '9anime', 'download', 'kissanime'],
install_requires=[
'beautifulsoup4>=4.6.0',