krsite-dl


Namekrsite-dl JSON
Version 1.0.0a1 PyPI version JSON
download
home_pagehttps://github.com/zer0kn0wledge/krsite-dl
SummaryDownload images from korean site and press at the highest quality.
upload_time2024-01-14 09:46:53
maintainer
docs_urlNone
authorzer0kn0wledge
requires_python>=3.7, <4
license
keywords sbs naver naverpost image media downloader scrapper
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            If you like this project, please consider giving it a star! Thanks!

## Table of Contents
* [Guides & Installation](#Guides--Installation)
* [Usage](#usage)
* [Options](#options)
* [Supported Sites](supported.md)
* [Issues](#issues)
* [FAQ](#faq)
* [Disclaimer](#disclaimer)

## Guides & Installation
> [!IMPORTANT]
> 1. Make sure you have `python3` at least version 3.6 installed and executeable in your system's PATH.
>
> 2. Run `pip3 install -r requirements.txt` to install dependencies
> 
> 3. There are some sites that requires selenium. User must have [chrome](https://www.google.com/chrome/) and [chromedriver](https://chromedriver.chromium.org/downloads) installed and executeable. The list of sites can be found [here](#supported-sites).

> [!NOTE]
> To update the script, you need to pull this repository again. You can also run `git pull` if you have git installed.
> Make sure to run another `pip install -r requirements.txt` to install any new dependencies.
> In case you ran into a `chromedriver` error, you need to update your `chromedriver`. You can download the latest chrome driver [here](https://chromedriver.chromium.org/downloads).

## Usage
User can add `krsite-dl.config` file to set default download path. The `krsite-dl.config` file is located in the same directory as the krsite-dl file.
> [!NOTE]
>
> The `krsite-dl.config` file should contain the following:
> ```
> [Settings]
>
> base_dir = /your/path/here
> ```

### Basic Usage
```python3 krsite-dl [OPTIONS] URL [URL...]```

`python3 krsite-dl https://example.com/1/`

`python3 krsite-dl https://example.com/1/ https//example.com/2/`

**Download by specifying the download path**

Alternatively, you can specify the download path by default by using krsite-dl.config file.

```python3 krsite-dl https://example.com -d ~/Pictures/```


**Downloading from multiple sites in a text file**

```python3 krsite-dl -a ~/Pictures/list.txt -d ~/Pictures```

### Selecting an image to download

**This will prompt you a list of images to download**

```python3 krsite-dl https://example.com -s```


## Options
```
-a                        Text file containing site urls
-d                        The destination path for the downloaded file (unnecessary if you have `krsite-dl.config` unless you want to override the default download path)
--no-windows-filenames    (default=False) krsite-dl will keep the original filenames of the images. This includes filenames that are not allowed in Windows OS.
-s                        Select which images to download from the list of images gathered from each url. You probably not wanna use this if you're downloading multiple site URLs at once cause it will prompt you for each url.
```

## Issues
> [!NOTE]
> Please make an issue if you encounter any problems or just want to get more sites supported.
>
> Site Name: www.example.com
>
> Site URL (preferably the post page): www.example.com/post/1234

## FAQ
#### Q: Why is the download speed so slow?
A: The download speed is limited by the site itself and your internet connection. You can try to use a VPN to get a better speed if necessary to avoid overseas rate limit.

#### Q: Can I set a default download path?
A: Yes, you can set a default download path by editing the config.ini file. The config.ini file is located in the same directory as the krsite-dl file. You can also set the default download path by using the -d option.

#### Q: Can I download images from multiple sites at once?
A: Yes, you can download images from multiple sites at once just by entering sites you want to download in one single command. Alternatively you can use the `-a` option if you wanna provide a text file containing site urls. 

#### Q: Can I download images from a site that is not listed above?
A: No, you can make request for the site to be supported. Make an issues and then feature request.


# Disclaimer

This project is intended solely for the purpose of easily obtaining images from Korean websites where the images are publicly available and not behind any paywall or login. Any commercial use of this project is strictly prohibited. By using this project, you agree that you are responsible for your own actions. The author of this project is not responsible for any misuse of the information provided by this project.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/zer0kn0wledge/krsite-dl",
    "name": "krsite-dl",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7, <4",
    "maintainer_email": "",
    "keywords": "sbs,naver,naverpost,image,media,downloader,scrapper",
    "author": "zer0kn0wledge",
    "author_email": "neptunemist@proton.me",
    "download_url": "https://files.pythonhosted.org/packages/6a/93/240488893b35a64834816e735eb4677d19ecb9788170ce791ba091e3e3c2/krsite-dl-1.0.0a1.tar.gz",
    "platform": null,
    "description": "If you like this project, please consider giving it a star! Thanks!\n\n## Table of Contents\n* [Guides & Installation](#Guides--Installation)\n* [Usage](#usage)\n* [Options](#options)\n* [Supported Sites](supported.md)\n* [Issues](#issues)\n* [FAQ](#faq)\n* [Disclaimer](#disclaimer)\n\n## Guides & Installation\n> [!IMPORTANT]\n> 1. Make sure you have `python3` at least version 3.6 installed and executeable in your system's PATH.\n>\n> 2. Run `pip3 install -r requirements.txt` to install dependencies\n> \n> 3. There are some sites that requires selenium. User must have [chrome](https://www.google.com/chrome/) and [chromedriver](https://chromedriver.chromium.org/downloads) installed and executeable. The list of sites can be found [here](#supported-sites).\n\n> [!NOTE]\n> To update the script, you need to pull this repository again. You can also run `git pull` if you have git installed.\n> Make sure to run another `pip install -r requirements.txt` to install any new dependencies.\n> In case you ran into a `chromedriver` error, you need to update your `chromedriver`. You can download the latest chrome driver [here](https://chromedriver.chromium.org/downloads).\n\n## Usage\nUser can add `krsite-dl.config` file to set default download path. The `krsite-dl.config` file is located in the same directory as the krsite-dl file.\n> [!NOTE]\n>\n> The `krsite-dl.config` file should contain the following:\n> ```\n> [Settings]\n>\n> base_dir = /your/path/here\n> ```\n\n### Basic Usage\n```python3 krsite-dl [OPTIONS] URL [URL...]```\n\n`python3 krsite-dl https://example.com/1/`\n\n`python3 krsite-dl https://example.com/1/ https//example.com/2/`\n\n**Download by specifying the download path**\n\nAlternatively, you can specify the download path by default by using krsite-dl.config file.\n\n```python3 krsite-dl https://example.com -d ~/Pictures/```\n\n\n**Downloading from multiple sites in a text file**\n\n```python3 krsite-dl -a ~/Pictures/list.txt -d ~/Pictures```\n\n### Selecting an image to download\n\n**This will prompt you a list of images to download**\n\n```python3 krsite-dl https://example.com -s```\n\n\n## Options\n```\n-a                        Text file containing site urls\n-d                        The destination path for the downloaded file (unnecessary if you have `krsite-dl.config` unless you want to override the default download path)\n--no-windows-filenames    (default=False) krsite-dl will keep the original filenames of the images. This includes filenames that are not allowed in Windows OS.\n-s                        Select which images to download from the list of images gathered from each url. You probably not wanna use this if you're downloading multiple site URLs at once cause it will prompt you for each url.\n```\n\n## Issues\n> [!NOTE]\n> Please make an issue if you encounter any problems or just want to get more sites supported.\n>\n> Site Name: www.example.com\n>\n> Site URL (preferably the post page): www.example.com/post/1234\n\n## FAQ\n#### Q: Why is the download speed so slow?\nA: The download speed is limited by the site itself and your internet connection. You can try to use a VPN to get a better speed if necessary to avoid overseas rate limit.\n\n#### Q: Can I set a default download path?\nA: Yes, you can set a default download path by editing the config.ini file. The config.ini file is located in the same directory as the krsite-dl file. You can also set the default download path by using the -d option.\n\n#### Q: Can I download images from multiple sites at once?\nA: Yes, you can download images from multiple sites at once just by entering sites you want to download in one single command. Alternatively you can use the `-a` option if you wanna provide a text file containing site urls. \n\n#### Q: Can I download images from a site that is not listed above?\nA: No, you can make request for the site to be supported. Make an issues and then feature request.\n\n\n# Disclaimer\n\nThis project is intended solely for the purpose of easily obtaining images from Korean websites where the images are publicly available and not behind any paywall or login. Any commercial use of this project is strictly prohibited. By using this project, you agree that you are responsible for your own actions. The author of this project is not responsible for any misuse of the information provided by this project.\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Download images from korean site and press at the highest quality.",
    "version": "1.0.0a1",
    "project_urls": {
        "Bug Reports": "https://github.com/zer0kn0wledge/krsite-dl/issues",
        "Funding": "https://donate.pypi.org",
        "Homepage": "https://github.com/zer0kn0wledge/krsite-dl",
        "Say Thanks!": "http://saythanks.io/to/example",
        "Source": "https://github.com/zer0kn0wledge/krsite-dl"
    },
    "split_keywords": [
        "sbs",
        "naver",
        "naverpost",
        "image",
        "media",
        "downloader",
        "scrapper"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c571201dc5576d53f6a983c91d0964daeb0d8f6032e7ad8278d1dbb2c3b8377b",
                "md5": "6c9057f95b9f7111c3149a096483d458",
                "sha256": "732fb6b348f00d7a39fa40b28a85cbed3ca3786fb51fc04d7e5e9ddda0380891"
            },
            "downloads": -1,
            "filename": "krsite_dl-1.0.0a1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "6c9057f95b9f7111c3149a096483d458",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7, <4",
            "size": 18765,
            "upload_time": "2024-01-14T09:45:27",
            "upload_time_iso_8601": "2024-01-14T09:45:27.360025Z",
            "url": "https://files.pythonhosted.org/packages/c5/71/201dc5576d53f6a983c91d0964daeb0d8f6032e7ad8278d1dbb2c3b8377b/krsite_dl-1.0.0a1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a93240488893b35a64834816e735eb4677d19ecb9788170ce791ba091e3e3c2",
                "md5": "4acf8c7e3c13e0bd263ac2391f1bf4d8",
                "sha256": "8ba35934abad6c758583a18c601769c93df857fb6d47252d4ee9c4660bcbca3c"
            },
            "downloads": -1,
            "filename": "krsite-dl-1.0.0a1.tar.gz",
            "has_sig": false,
            "md5_digest": "4acf8c7e3c13e0bd263ac2391f1bf4d8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7, <4",
            "size": 18869,
            "upload_time": "2024-01-14T09:46:53",
            "upload_time_iso_8601": "2024-01-14T09:46:53.423092Z",
            "url": "https://files.pythonhosted.org/packages/6a/93/240488893b35a64834816e735eb4677d19ecb9788170ce791ba091e3e3c2/krsite-dl-1.0.0a1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-14 09:46:53",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "zer0kn0wledge",
    "github_project": "krsite-dl",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "krsite-dl"
}
        
Elapsed time: 0.16848s