Qwael 0.1.0__tar.gz → 0.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.
- {Qwael-0.1.0 → Qwael-0.1}/PKG-INFO +1 -1
- {Qwael-0.1.0 → Qwael-0.1}/Qwael/DR/304/260VE_OPEN.py +1 -1
- Qwael-0.1/Qwael/Easy_app.py +34 -0
- Qwael-0.1/Qwael/__init__.py +2 -0
- {Qwael-0.1.0 → Qwael-0.1}/Qwael.egg-info/PKG-INFO +1 -1
- {Qwael-0.1.0 → Qwael-0.1}/Qwael.egg-info/requires.txt +1 -0
- {Qwael-0.1.0 → Qwael-0.1}/setup.py +2 -1
- Qwael-0.1.0/Qwael/Easy_app.py +0 -18
- Qwael-0.1.0/Qwael/__init__.py +0 -2
- {Qwael-0.1.0 → Qwael-0.1}/LICENSE +0 -0
- {Qwael-0.1.0 → Qwael-0.1}/Qwael.egg-info/SOURCES.txt +0 -0
- {Qwael-0.1.0 → Qwael-0.1}/Qwael.egg-info/dependency_links.txt +0 -0
- {Qwael-0.1.0 → Qwael-0.1}/Qwael.egg-info/top_level.txt +0 -0
- {Qwael-0.1.0 → Qwael-0.1}/README.md +0 -0
- {Qwael-0.1.0 → Qwael-0.1}/setup.cfg +0 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
from kivy.app import App
|
|
2
|
+
from kivy.uix.label import Label
|
|
3
|
+
from kivy.uix.gridlayout import GridLayout
|
|
4
|
+
from kivy.lang import Builder
|
|
5
|
+
from kivy.uix.widget import Widget
|
|
6
|
+
from kivy.uix.button import Button
|
|
7
|
+
from kivy.uix.boxlayout import BoxLayout
|
|
8
|
+
from kivy.uix.floatlayout import FloatLayout
|
|
9
|
+
|
|
10
|
+
class Easy_App:
|
|
11
|
+
def open(self, add=()):
|
|
12
|
+
if add:
|
|
13
|
+
def Labell(txt="", x=200, y=100, sizing=20):
|
|
14
|
+
class Ekran(FloatLayout):
|
|
15
|
+
def _init_(self, **kwargs):
|
|
16
|
+
super(Ekran, self)._init_(**kwargs)
|
|
17
|
+
layout = BoxLayout(orientation="vertical", padding=(30), spacing=(20))
|
|
18
|
+
|
|
19
|
+
label = Label(text=txt, pos_hint={"x": 0.0, "y": 0.0},
|
|
20
|
+
size_hint=(None, None), size=(x, y),
|
|
21
|
+
font_size=f"{sizing}sp")
|
|
22
|
+
layout.add_widget(label)
|
|
23
|
+
self.add_widget(layout)
|
|
24
|
+
|
|
25
|
+
return Ekran
|
|
26
|
+
|
|
27
|
+
def start_app(self, ekran_class):
|
|
28
|
+
|
|
29
|
+
class Uygulama(App):
|
|
30
|
+
def build(self):
|
|
31
|
+
return ekran_class()
|
|
32
|
+
|
|
33
|
+
if __name__ == "__main__":
|
|
34
|
+
Uygulama().run()
|
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name="Qwael",
|
|
5
|
-
version="0.1
|
|
5
|
+
version="0.1",
|
|
6
6
|
description="Easy Coding",
|
|
7
7
|
long_description=open("README.md", encoding="utf-8").read(),
|
|
8
8
|
long_description_content_type="text/markdown",
|
|
@@ -21,6 +21,7 @@ setup(
|
|
|
21
21
|
'google-auth-httplib2',
|
|
22
22
|
'google-auth-oauthlib',
|
|
23
23
|
'Pillow',
|
|
24
|
+
"kivy",
|
|
24
25
|
],
|
|
25
26
|
keywords=["Google", "coding","Easy"],
|
|
26
27
|
project_urls={},
|
Qwael-0.1.0/Qwael/Easy_app.py
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
from kivy.app import App
|
|
2
|
-
from kivy.uix.label import Label
|
|
3
|
-
from kivy.uix.textinput import TextInput
|
|
4
|
-
from kivy.uix.gridlayout import GridLayout
|
|
5
|
-
from kivy.lang import Builder
|
|
6
|
-
from kivy.uix.widget import Widget
|
|
7
|
-
from kivy.uix.button import Button
|
|
8
|
-
from kivy.uix.boxlayout import BoxLayout
|
|
9
|
-
from kivy.uix.floatlayout import FloatLayout
|
|
10
|
-
|
|
11
|
-
class Easy_App:
|
|
12
|
-
def open():
|
|
13
|
-
class uygulama(App):
|
|
14
|
-
def build(self):
|
|
15
|
-
pass
|
|
16
|
-
if __name__ == "__main__":
|
|
17
|
-
uygulama().run()
|
|
18
|
-
|
Qwael-0.1.0/Qwael/__init__.py
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|