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.
Files changed (43) hide show
  1. {shadowb-0.2 → shadowb-0.4}/PKG-INFO +2 -3
  2. {shadowb-0.2 → shadowb-0.4}/README.md +1 -1
  3. {shadowb-0.2 → shadowb-0.4}/ShadowB/__init__.py +0 -1
  4. {shadowb-0.2 → shadowb-0.4}/ShadowB/core.py +1 -1
  5. {shadowb-0.2 → shadowb-0.4}/ShadowB.egg-info/PKG-INFO +2 -3
  6. {shadowb-0.2 → shadowb-0.4}/ShadowB.egg-info/SOURCES.txt +0 -1
  7. {shadowb-0.2 → shadowb-0.4}/ShadowB.egg-info/requires.txt +0 -1
  8. {shadowb-0.2 → shadowb-0.4}/pyproject.toml +1 -2
  9. shadowb-0.2/ShadowB/Qrcode/scan.py +0 -26
  10. {shadowb-0.2 → shadowb-0.4}/LICENSE +0 -0
  11. {shadowb-0.2 → shadowb-0.4}/ShadowB/Core/fileorg.py +0 -0
  12. {shadowb-0.2 → shadowb-0.4}/ShadowB/Core/randwords.py +0 -0
  13. {shadowb-0.2 → shadowb-0.4}/ShadowB/GetD/make_cookies.py +0 -0
  14. {shadowb-0.2 → shadowb-0.4}/ShadowB/GetD/my_data.py +0 -0
  15. {shadowb-0.2 → shadowb-0.4}/ShadowB/GetD/my_ip.py +0 -0
  16. {shadowb-0.2 → shadowb-0.4}/ShadowB/GetD/scan.py +0 -0
  17. {shadowb-0.2 → shadowb-0.4}/ShadowB/Image/check_image.py +0 -0
  18. {shadowb-0.2 → shadowb-0.4}/ShadowB/Image/export_metadata.py +0 -0
  19. {shadowb-0.2 → shadowb-0.4}/ShadowB/Image/extr_hidden_files.py +0 -0
  20. {shadowb-0.2 → shadowb-0.4}/ShadowB/Image/extr_hidden_text.py +0 -0
  21. {shadowb-0.2 → shadowb-0.4}/ShadowB/Image/makeFile.py +0 -0
  22. {shadowb-0.2 → shadowb-0.4}/ShadowB/Image/makeText.py +0 -0
  23. {shadowb-0.2 → shadowb-0.4}/ShadowB/Image/remove_metadata.py +0 -0
  24. {shadowb-0.2 → shadowb-0.4}/ShadowB/Mail/make_mail.py +0 -0
  25. {shadowb-0.2 → shadowb-0.4}/ShadowB/Mail/res_msj.py +0 -0
  26. {shadowb-0.2 → shadowb-0.4}/ShadowB/Mail/send_msj.py +0 -0
  27. {shadowb-0.2 → shadowb-0.4}/ShadowB/Qrcode/generate.py +0 -0
  28. {shadowb-0.2 → shadowb-0.4}/ShadowB/Safe/clean.py +0 -0
  29. {shadowb-0.2 → shadowb-0.4}/ShadowB/Safe/cleanText.py +0 -0
  30. {shadowb-0.2 → shadowb-0.4}/ShadowB/Safe/ext.py +0 -0
  31. {shadowb-0.2 → shadowb-0.4}/ShadowB/Safe/filename.py +0 -0
  32. {shadowb-0.2 → shadowb-0.4}/ShadowB/Safe/safeFile.py +0 -0
  33. {shadowb-0.2 → shadowb-0.4}/ShadowB/captcha.py +0 -0
  34. {shadowb-0.2 → shadowb-0.4}/ShadowB/getD.py +0 -0
  35. {shadowb-0.2 → shadowb-0.4}/ShadowB/image.py +0 -0
  36. {shadowb-0.2 → shadowb-0.4}/ShadowB/mail.py +0 -0
  37. {shadowb-0.2 → shadowb-0.4}/ShadowB/passwords.py +0 -0
  38. {shadowb-0.2 → shadowb-0.4}/ShadowB/qrcode.py +0 -0
  39. {shadowb-0.2 → shadowb-0.4}/ShadowB/safe.py +0 -0
  40. {shadowb-0.2 → shadowb-0.4}/ShadowB/search.py +0 -0
  41. {shadowb-0.2 → shadowb-0.4}/ShadowB.egg-info/dependency_links.txt +0 -0
  42. {shadowb-0.2 → shadowb-0.4}/ShadowB.egg-info/top_level.txt +0 -0
  43. {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.2
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
- qrcode.scan_qrcode("qr.png") # -> decoded text (str)
123
+
125
124
  ```
126
125
 
127
126
  ---
@@ -103,7 +103,7 @@ Generate and read QR codes.
103
103
  from ShadowB import qrcode
104
104
 
105
105
  qrcode.generate_qrcode(text, "qr") # create a QR code image
106
- qrcode.scan_qrcode("qr.png") # -> decoded text (str)
106
+
107
107
  ```
108
108
 
109
109
  ---
@@ -39,6 +39,5 @@ from .mail import send_msj
39
39
  from .captcha import generate_captcha
40
40
 
41
41
  from .qrcode import generate_qrcode
42
- from .qrcode import scan_qrcode
43
42
 
44
43
  from .search import search_by_username
@@ -82,7 +82,7 @@ def owner():
82
82
  print("Github : https://github.com/erec2smith")
83
83
 
84
84
  def vr():
85
- print("0.2")
85
+ print("0.4")
86
86
 
87
87
  def team():
88
88
  print("Adem")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ShadowB
3
- Version: 0.2
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
- qrcode.scan_qrcode("qr.png") # -> decoded text (str)
123
+
125
124
  ```
126
125
 
127
126
  ---
@@ -33,7 +33,6 @@ ShadowB/Mail/make_mail.py
33
33
  ShadowB/Mail/res_msj.py
34
34
  ShadowB/Mail/send_msj.py
35
35
  ShadowB/Qrcode/generate.py
36
- ShadowB/Qrcode/scan.py
37
36
  ShadowB/Safe/clean.py
38
37
  ShadowB/Safe/cleanText.py
39
38
  ShadowB/Safe/ext.py
@@ -4,6 +4,5 @@ better_profanity
4
4
  pillow
5
5
  pypdf
6
6
  qrcode
7
- opencv-python
8
7
  stepic
9
8
  browser-cookie3
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "ShadowB"
7
- version = "0.2"
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