Skip to content

Commit c54994f

Browse files
committed
Modified requirements.txt and download.py and Setup number
1 parent c585d9f commit c54994f

File tree

5 files changed

+17
-14
lines changed

5 files changed

+17
-14
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
__pycache__/
33
*.py[cod]
44
*$py.class
5-
5+
/better_bing_image_downloader/dataset
66
# C extensions
77
*.so
88

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ Please do not download or use any image that violates its copyright terms.
2121

2222
```bash
2323
git clone https://github.com/KTS-o7better_bing_image_downloader
24+
python -m venv ./env
25+
source env/bin/activate
2426
cd better_bing_image_downloader
2527
pip install .
2628
```

better_bing_image_downloader/download.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import argparse
44
import logging
55
from pathlib import Path
6-
from bing import Bing
6+
from .bing import Bing
77
from tqdm import tqdm
88
from math import ceil
99

requirements.txt

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,29 @@
1-
better_bing_image_downloader==1.1.0
21
certifi==2024.2.2
32
cffi==1.16.0
43
charset-normalizer==3.3.2
54
cryptography==42.0.2
65
docutils==0.20.1
76
idna==3.6
8-
importlib-metadata==7.0.1
9-
jaraco.classes==3.3.1
7+
importlib_metadata==6.0.0
8+
jaraco.classes==3.4.0
9+
jaraco.context==4.3.0
10+
jaraco.functools==4.0.0
1011
jeepney==0.8.0
11-
keyring==24.3.0
12+
keyring==25.0.0
1213
markdown-it-py==3.0.0
1314
mdurl==0.1.2
1415
more-itertools==10.2.0
15-
nh3==0.2.15
16-
pkginfo==1.9.6
17-
pycparser==2.21
16+
nh3==0.2.17
17+
pkginfo==1.10.0
18+
pycparser==2.22
1819
Pygments==2.17.2
19-
readme-renderer==42.0
20+
readme_renderer==43.0
2021
requests==2.31.0
2122
requests-toolbelt==1.0.0
2223
rfc3986==2.0.0
23-
rich==13.7.0
24+
rich==13.7.1
2425
SecretStorage==3.3.3
2526
tqdm==4.66.2
2627
twine==5.0.0
27-
urllib3==2.2.0
28-
zipp==3.17.0
28+
urllib3==2.2.1
29+
zipp==3.18.1

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="better_bing_image_downloader",
8-
version="1.1.0",
8+
version="1.1.1",
99
author="Krishnatejaswi S",
1010
author_email="shentharkrishnatejaswi@gmail.com",
1111
description="This package is built on top of bing-image-downloader by gaurav singh",

0 commit comments

Comments
 (0)