From 56dace81f1e444b673fa58b1beccab6f016cd695 Mon Sep 17 00:00:00 2001 From: RicterZ Date: Sat, 18 May 2019 20:31:18 +0800 Subject: [PATCH] remove readme.md --- README.md | 84 ------------------------------------------------------ README.rst | 4 +-- setup.py | 5 ++-- 3 files changed, 4 insertions(+), 89 deletions(-) delete mode 100644 README.md diff --git a/README.md b/README.md deleted file mode 100644 index ac8aefc..0000000 --- a/README.md +++ /dev/null @@ -1,84 +0,0 @@ -nhentai -======= - _ _ _ _ - _ __ | | | | ___ _ __ | |_ __ _(_) - | '_ \| |_| |/ _ \ '_ \| __/ _` | | - | | | | _ | __/ | | | || (_| | | - |_| |_|_| |_|\___|_| |_|\__\__,_|_| - -あなたも変態。 いいね? -[![Build Status](https://travis-ci.org/RicterZ/nhentai.svg?branch=master)](https://travis-ci.org/RicterZ/nhentai) ![nhentai PyPI Downloads](https://img.shields.io/pypi/dm/nhentai.svg) [![license](https://img.shields.io/cocoapods/l/AFNetworking.svg)](https://github.com/RicterZ/nhentai/blob/master/LICENSE) - - -nHentai is a CLI tool for downloading doujinshi from [nhentai.net](http://nhentai.net). - -### Installation - - git clone https://github.com/RicterZ/nhentai - cd nhentai - python setup.py install - -### Installation (Gentoo) - - layman -fa glicOne - sudo emerge net-misc/nhentai - -### Usage -**IMPORTANT**: To bypass the nhentai frequency limit, you should use `--login` option to log into nhentai.net. - -*The default download folder will be the path where you run the command (CLI path).* - -Download specified doujinshi: -```bash -nhentai --id=123855,123866 -``` - -Download doujinshi with ids specified in a file: -```bash -nhentai --file=doujinshi.txt -``` - -Search a keyword and download the first page: -```bash -nhentai --search="tomori" --page=1 --download -``` - -Download your favourite doujinshi (login required): -```bash -nhentai --login "username:password" --download -``` - -Download by tag name: -```bash -nhentai --tag lolicon --download -``` - -### Options - -+ `-t, --thread`: Download threads, max: 10 -+ `--output`:Output dir of saving doujinshi -+ `--tag`:Download by tag name -+ `--timeout`: Timeout of downloading each image -+ `--proxy`: Use proxy, example: http://127.0.0.1:8080/ -+ `--login`: username:password pair of your nhentai account -+ `--nohtml`: Do not generate HTML -+ `--cbz`: Generate Comic Book CBZ File - -### nHentai Mirror -If you want to use a mirror, you should set up a reverse proxy of `nhentai.net` and `i.nhentai.net`. -For example: - - i.h.loli.club -> i.nhentai.net - h.loli.club -> nhentai.net - -Set `NHENTAI` env var to your nhentai mirror. -```bash -NHENTAI=http://h.loli.club nhentai --id 123456 -``` - -![](./images/search.png) -![](./images/download.png) -![](./images/viewer.png) - -### あなたも変態 -![](./images/image.jpg) diff --git a/README.rst b/README.rst index 80ed14c..091a8d5 100644 --- a/README.rst +++ b/README.rst @@ -118,9 +118,9 @@ Set `NHENTAI` env var to your nhentai mirror. :alt: nhentai :align: center -=========== +============ あなたも変態 -=========== +============ .. image:: ./images/image.jpg?raw=true :alt: nhentai :align: center diff --git a/setup.py b/setup.py index d0f6562..f480537 100644 --- a/setup.py +++ b/setup.py @@ -11,9 +11,8 @@ with open('requirements.txt') as f: def long_description(): - with codecs.open('README.md', 'rb') as f: - if sys.version_info >= (3, 0, 0): - return str(f.read()) + with codecs.open('README.rst', 'r') as f: + return str(f.read()) setup( name='nhentai',