-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from MrMysterius/12-document-commands-and-argum…
…ents-flags basic readme
- Loading branch information
Showing
1 changed file
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,64 @@ | ||
# Mangasee123 Downloader | ||
|
||
## Prerequisites | ||
|
||
### 7-Zip | ||
|
||
For the Mangasee123 Downloader to work you need to have 7-Zip as Command Line Tool install. | ||
In the way that it is accessible with the command `7z` in the terminal. | ||
|
||
On windows you can download this from the [7-zip.org](https://www.7-zip.org/download.html) download page. Make sure to take `7-Zip Extra: standalone console version` version. (yes, yes you need to have working 7z or something that can work with it installed before). After extracting the archive move the file `7za.exe` to a folder that is in [PATH](https://techpp.com/2021/08/26/set-path-variable-in-windows-guide/) (like `C:\Windows`) or make a folder and add it to [PATH](https://techpp.com/2021/08/26/set-path-variable-in-windows-guide/). Also rename it to `7z.exe` otherwise it will not work. | ||
|
||
## Installation | ||
|
||
Download the corresponding binary from the releases page. | ||
On Windows Drop it somewhere where it will be in a folder already covered by [PATH](https://techpp.com/2021/08/26/set-path-variable-in-windows-guide/) like `C:\Windows` or add it manually to [PATH](https://techpp.com/2021/08/26/set-path-variable-in-windows-guide/). | ||
On Linux make an alias to it or add it to `/bin` or `/usr/bin`. | ||
|
||
## Usage / Commands and Arguments | ||
|
||
Use it through the terminal like this. | ||
|
||
```bash | ||
mangasee-dl <command> [arguments/flags] | ||
``` | ||
|
||
### Search | ||
|
||
The search command will search for "matching" mangas* on Mangasee123 and return a list of the top results. As well as their Index Name used to download. | ||
|
||
Basic Usage: | ||
|
||
```bash | ||
mangasee-dl search <search-term> [flags] | ||
``` | ||
|
||
Example: | ||
|
||
```bash | ||
mangasee-dl search One Piece | ||
|
||
- 1997 One Piece #1077 [ One-Piece ] | ||
- 2014 One Piece Party #3 [ One-Piece-Party ] | ||
- 1997 One Piece - Digital Colored Comics #1004 [ One-Piece-Digital-Colored-Comics ] | ||
``` | ||
|
||
**The Boxed in Name (`[One-Piece]`) that is the Index Name used by other commands like the donwload command.** | ||
|
||
Possible Flags: | ||
|
||
| Flag / Argument | Description | Default | ||
|-|-|-| | ||
| -l / --limit | Sets the limit of the maximum displayed search results | 5 | ||
| -s / --score-threshold | Sets the score threshold for the match rating of the result | 0.05 | ||
| -n / --no-metadata | Disables usages of extra metadata to fancy out the search results (if not disabled makes extra request per manga in the result) | - | ||
|
||
### Download | ||
|
||
The download command will download mangas by their Index Name. | ||
|
||
Basic Usage: | ||
|
||
```bash | ||
mangasee-dl download <manga-index-name> [flags] | ||
``` |