ShadowB 0.2__tar.gz → 0.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {shadowb-0.2 → shadowb-0.4}/PKG-INFO +2 -3
- {shadowb-0.2 → shadowb-0.4}/README.md +1 -1
- {shadowb-0.2 → shadowb-0.4}/ShadowB/__init__.py +0 -1
- {shadowb-0.2 → shadowb-0.4}/ShadowB/core.py +1 -1
- {shadowb-0.2 → shadowb-0.4}/ShadowB.egg-info/PKG-INFO +2 -3
- {shadowb-0.2 → shadowb-0.4}/ShadowB.egg-info/SOURCES.txt +0 -1
- {shadowb-0.2 → shadowb-0.4}/ShadowB.egg-info/requires.txt +0 -1
- {shadowb-0.2 → shadowb-0.4}/pyproject.toml +1 -2
- shadowb-0.2/ShadowB/Qrcode/scan.py +0 -26
- {shadowb-0.2 → shadowb-0.4}/LICENSE +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB/Core/fileorg.py +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB/Core/randwords.py +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB/GetD/make_cookies.py +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB/GetD/my_data.py +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB/GetD/my_ip.py +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB/GetD/scan.py +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB/Image/check_image.py +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB/Image/export_metadata.py +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB/Image/extr_hidden_files.py +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB/Image/extr_hidden_text.py +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB/Image/makeFile.py +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB/Image/makeText.py +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB/Image/remove_metadata.py +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB/Mail/make_mail.py +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB/Mail/res_msj.py +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB/Mail/send_msj.py +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB/Qrcode/generate.py +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB/Safe/clean.py +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB/Safe/cleanText.py +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB/Safe/ext.py +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB/Safe/filename.py +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB/Safe/safeFile.py +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB/captcha.py +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB/getD.py +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB/image.py +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB/mail.py +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB/passwords.py +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB/qrcode.py +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB/safe.py +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB/search.py +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB.egg-info/dependency_links.txt +0 -0
- {shadowb-0.2 → shadowb-0.4}/ShadowB.egg-info/top_level.txt +0 -0
- {shadowb-0.2 → shadowb-0.4}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ShadowB
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4
|
|
4
4
|
Summary: ShadowB is an all-in-one Python toolkit that bundles a wide range of everyday utilities — system info, image steganography, temporary email, QR codes, CAPTCHA generation, password tools, file safety checks, and more — into a single, easy-to-import package.
|
|
5
5
|
Author-email: Adem mzoughi <ademzoughi1312@gmail.com>
|
|
6
6
|
Requires-Python: >=3.8
|
|
@@ -12,7 +12,6 @@ Requires-Dist: better_profanity
|
|
|
12
12
|
Requires-Dist: pillow
|
|
13
13
|
Requires-Dist: pypdf
|
|
14
14
|
Requires-Dist: qrcode
|
|
15
|
-
Requires-Dist: opencv-python
|
|
16
15
|
Requires-Dist: stepic
|
|
17
16
|
Requires-Dist: browser-cookie3
|
|
18
17
|
|
|
@@ -121,7 +120,7 @@ Generate and read QR codes.
|
|
|
121
120
|
from ShadowB import qrcode
|
|
122
121
|
|
|
123
122
|
qrcode.generate_qrcode(text, "qr") # create a QR code image
|
|
124
|
-
|
|
123
|
+
|
|
125
124
|
```
|
|
126
125
|
|
|
127
126
|
---
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ShadowB
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4
|
|
4
4
|
Summary: ShadowB is an all-in-one Python toolkit that bundles a wide range of everyday utilities — system info, image steganography, temporary email, QR codes, CAPTCHA generation, password tools, file safety checks, and more — into a single, easy-to-import package.
|
|
5
5
|
Author-email: Adem mzoughi <ademzoughi1312@gmail.com>
|
|
6
6
|
Requires-Python: >=3.8
|
|
@@ -12,7 +12,6 @@ Requires-Dist: better_profanity
|
|
|
12
12
|
Requires-Dist: pillow
|
|
13
13
|
Requires-Dist: pypdf
|
|
14
14
|
Requires-Dist: qrcode
|
|
15
|
-
Requires-Dist: opencv-python
|
|
16
15
|
Requires-Dist: stepic
|
|
17
16
|
Requires-Dist: browser-cookie3
|
|
18
17
|
|
|
@@ -121,7 +120,7 @@ Generate and read QR codes.
|
|
|
121
120
|
from ShadowB import qrcode
|
|
122
121
|
|
|
123
122
|
qrcode.generate_qrcode(text, "qr") # create a QR code image
|
|
124
|
-
|
|
123
|
+
|
|
125
124
|
```
|
|
126
125
|
|
|
127
126
|
---
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "ShadowB"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.4"
|
|
8
8
|
authors = [
|
|
9
9
|
{name = "Adem mzoughi", email = "ademzoughi1312@gmail.com"},
|
|
10
10
|
]
|
|
@@ -16,7 +16,6 @@ dependencies = [
|
|
|
16
16
|
"pillow",
|
|
17
17
|
"pypdf",
|
|
18
18
|
"qrcode",
|
|
19
|
-
"opencv-python",
|
|
20
19
|
"stepic",
|
|
21
20
|
"browser-cookie3"
|
|
22
21
|
]
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import sys
|
|
2
|
-
import os
|
|
3
|
-
|
|
4
|
-
try:
|
|
5
|
-
import cv2
|
|
6
|
-
except ImportError:
|
|
7
|
-
os.system(f"{sys.executable} -m pip install opencv-python")
|
|
8
|
-
import cv2
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
def scan(qrcode_path):
|
|
12
|
-
if not os.path.exists(qrcode_path):
|
|
13
|
-
return None
|
|
14
|
-
|
|
15
|
-
try:
|
|
16
|
-
img = cv2.imread(qrcode_path)
|
|
17
|
-
detector = cv2.QRCodeDetector()
|
|
18
|
-
data, bbox, _ = detector.detectAndDecode(img)
|
|
19
|
-
|
|
20
|
-
if bbox is not None and data:
|
|
21
|
-
return data
|
|
22
|
-
else:
|
|
23
|
-
return None
|
|
24
|
-
|
|
25
|
-
except Exception:
|
|
26
|
-
return None
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|