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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: Qwael
3
- Version: 0.1.0
3
+ Version: 0.1
4
4
  Summary: Easy Coding
5
5
  Home-page:
6
6
  Author: Bedirhan
@@ -5,7 +5,7 @@ from googleapiclient.http import MediaIoBaseDownload, MediaFileUpload, MediaIoBa
5
5
  from PIL import Image, ImageTk
6
6
  import io
7
7
 
8
- class DRİVE():
8
+ class DRİVE:
9
9
 
10
10
  def info():
11
11
  infoc = "Prihops: 0.1"
@@ -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()
@@ -0,0 +1,2 @@
1
+ import DRİVE_OPEN
2
+ import Easy_app
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: Qwael
3
- Version: 0.1.0
3
+ Version: 0.1
4
4
  Summary: Easy Coding
5
5
  Home-page:
6
6
  Author: Bedirhan
@@ -3,3 +3,4 @@ google-api-python-client
3
3
  google-auth-httplib2
4
4
  google-auth-oauthlib
5
5
  Pillow
6
+ kivy
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="Qwael",
5
- version="0.1.0",
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={},
@@ -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
-
@@ -1,2 +0,0 @@
1
- from .DRİVE_OPEN import DRİVE
2
- from .Easy_app import Easy_App
File without changes
File without changes
File without changes
File without changes
File without changes