Qwael 4.0.0.1.7__tar.gz → 4.0.0.2.1__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: Qwael
3
- Version: 4.0.0.1.7
3
+ Version: 4.0.0.2.1
4
4
  Summary: Qwael: İşlevsel ve kolaylaştırılmış Python kütüphanesi
5
5
  Author: Bedirhan
6
6
  Author-email: bedirhan.oytpass@gmail.com
@@ -15,14 +15,19 @@ Classifier: Programming Language :: Python :: 3.9
15
15
  Classifier: Programming Language :: Python :: 3.10
16
16
  Description-Content-Type: text/markdown
17
17
  License-File: LICENSE
18
+ Requires-Dist: torch
19
+ Requires-Dist: diffusers
20
+ Requires-Dist: transformers
21
+ Requires-Dist: accelerate
22
+ Requires-Dist: safetensors
23
+ Requires-Dist: deep-translator
24
+ Requires-Dist: Pillow
25
+ Requires-Dist: requests
26
+ Requires-Dist: tqdm
18
27
  Requires-Dist: google-api-python-client
19
28
  Requires-Dist: google-auth
20
29
  Requires-Dist: google-auth-oauthlib
21
30
  Requires-Dist: google-auth-httplib2
22
- Requires-Dist: Pillow
23
- Requires-Dist: flask
24
- Requires-Dist: pyyaml
25
- Requires-Dist: requests
26
31
  Dynamic: author
27
32
  Dynamic: author-email
28
33
  Dynamic: classifier
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: Qwael
3
- Version: 4.0.0.1.7
3
+ Version: 4.0.0.2.1
4
4
  Summary: Qwael: İşlevsel ve kolaylaştırılmış Python kütüphanesi
5
5
  Author: Bedirhan
6
6
  Author-email: bedirhan.oytpass@gmail.com
@@ -15,14 +15,19 @@ Classifier: Programming Language :: Python :: 3.9
15
15
  Classifier: Programming Language :: Python :: 3.10
16
16
  Description-Content-Type: text/markdown
17
17
  License-File: LICENSE
18
+ Requires-Dist: torch
19
+ Requires-Dist: diffusers
20
+ Requires-Dist: transformers
21
+ Requires-Dist: accelerate
22
+ Requires-Dist: safetensors
23
+ Requires-Dist: deep-translator
24
+ Requires-Dist: Pillow
25
+ Requires-Dist: requests
26
+ Requires-Dist: tqdm
18
27
  Requires-Dist: google-api-python-client
19
28
  Requires-Dist: google-auth
20
29
  Requires-Dist: google-auth-oauthlib
21
30
  Requires-Dist: google-auth-httplib2
22
- Requires-Dist: Pillow
23
- Requires-Dist: flask
24
- Requires-Dist: pyyaml
25
- Requires-Dist: requests
26
31
  Dynamic: author
27
32
  Dynamic: author-email
28
33
  Dynamic: classifier
@@ -3,7 +3,6 @@ README.md
3
3
  setup.py
4
4
  Qwael/DRİVE.py
5
5
  Qwael/DoIP.py
6
- Qwael/EasyWeb.py
7
6
  Qwael/MultiDB.py
8
7
  Qwael/Multidata.py
9
8
  Qwael/__init__.py
@@ -1,8 +1,13 @@
1
+ torch
2
+ diffusers
3
+ transformers
4
+ accelerate
5
+ safetensors
6
+ deep-translator
7
+ Pillow
8
+ requests
9
+ tqdm
1
10
  google-api-python-client
2
11
  google-auth
3
12
  google-auth-oauthlib
4
13
  google-auth-httplib2
5
- Pillow
6
- flask
7
- pyyaml
8
- requests
@@ -5,17 +5,22 @@ with open("README.md", "r", encoding="utf-8") as f:
5
5
 
6
6
  setup(
7
7
  name="Qwael",
8
- version="4.0.0.1.7",
8
+ version="4.0.0.2.1",
9
9
  packages=find_packages(),
10
10
  install_requires=[
11
+ "torch",
12
+ "diffusers",
13
+ "transformers",
14
+ "accelerate",
15
+ "safetensors",
16
+ "deep-translator",
17
+ "Pillow",
18
+ "requests",
19
+ "tqdm",
11
20
  "google-api-python-client",
12
21
  "google-auth",
13
22
  "google-auth-oauthlib",
14
23
  "google-auth-httplib2",
15
- "Pillow",
16
- "flask",
17
- "pyyaml",
18
- "requests",
19
24
  ],
20
25
  description="Qwael: İşlevsel ve kolaylaştırılmış Python kütüphanesi",
21
26
  long_description=README,
@@ -1,59 +0,0 @@
1
- from flask import Flask
2
- import yaml
3
-
4
- class Web:
5
- def __init__(self, name):
6
- self.app = Flask(name)
7
-
8
- def route(self, path):
9
- return self.app.route(path)
10
-
11
- def run(self):
12
- self.app.run(debug=True)
13
-
14
-
15
- class UI:
16
- @staticmethod
17
- def load_ted(name):
18
- with open(f"{name}.ted", "r", encoding="utf-8") as f:
19
- data = yaml.safe_load(f.read())
20
-
21
- root = data.get("</>")
22
- html = ""
23
-
24
- for widget_name, props in root.items():
25
- if widget_name == "Label":
26
- html += Label(props).render()
27
-
28
- return f"""
29
- <html>
30
- <body style="position:relative;">
31
- {html}
32
- </body>
33
- </html>
34
- """
35
-
36
-
37
- class Label:
38
- def __init__(self, props):
39
- self.text = props.get("text", "")
40
- pos = props.get("pos", {})
41
- size = props.get("size", {})
42
-
43
- self.x = pos.get("x", 0)
44
- self.y = pos.get("y", 0)
45
- self.w = size.get("x", 100)
46
- self.h = size.get("y", 30)
47
-
48
- def render(self):
49
- return f"""
50
- <div style="
51
- position:absolute;
52
- left:{self.x}px;
53
- top:{self.y}px;
54
- width:{self.w}px;
55
- height:{self.h}px;
56
- ">
57
- {self.text}
58
- </div>
59
- """
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