Compare commits

..

3 Commits

Author SHA1 Message Date
Doc
73a9d7addd README.md aktualisiert 2023-12-26 17:37:54 +01:00
Doc
b4c61ce848 Added dependency instructions to readme 2023-12-17 11:38:28 +01:00
Doc
a7d8ef8b21 Removed unnecessery imports 2023-12-17 11:34:02 +01:00
3 changed files with 19 additions and 10 deletions

18
README.md Normal file
View File

@@ -0,0 +1,18 @@
# Scraperchan
A simple program to scrape 4Chan Threads for Images and Videos
Install dependencies:
```shell
git clone https://git.protron.dev/Doc/scraperchan.git
cd scraperchan
pip install -r requirements.txt
```
Usage:
```shell
python scraperchan -u <Thread URL> -o <Local target directory>
```

View File

@@ -1,9 +0,0 @@
# Scraperchan
A simple program to scrape 4Chan Threads for Images (videos aren't supporter yet)
usage:
```shell
python scraperchan -u <Thread URL> -o <Local target directory>
```

View File

@@ -1,4 +1,4 @@
import requests, json, time, argparse, sys, os, logging import requests, json, time, argparse, sys, os
from PIL import Image from PIL import Image
from io import BytesIO from io import BytesIO