Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Dominik Nguyen
My Coding Projects
Commits
770f7b11
Commit
770f7b11
authored
Nov 25, 2021
by
BooDonky
Browse files
kivy File extended
parent
a7c1ba50
Changes
3
Hide whitespace changes
Inline
Side-by-side
Python Projects/Hostien Buyer/main.kv
0 → 100644
View file @
770f7b11
<Grid>
GridLayout:
cols: 1
size: root.width, root.height
GridLayout:
rows: 3
Label:
text: "Hostien Buyer"
GridLayout:
cols: 2
rows: 3
Label:
text: "Kleine Hostien: "
TextInput:
multiline: False
Label:
text: "Grosse Hostien: "
TextInput:
multiline: False
Label:
text: "Sonstiges"
TextInput:
multiline: False
GridLayout:
cols: 2
Button:
text: "Abbrechen"
Button:
text: "OK"
\ No newline at end of file
Python Projects/Hostien Buyer/main.py
View file @
770f7b11
import
kivy
from
kivy.app
import
App
from
kivy.uix.gridlayout
import
GridLayout
from
kivy.uix.label
import
Label
from
kivy.uix.button
import
Button
from
kivy.uix.textinput
import
TextInput
from
kivy.uix.widget
import
Widget
class
main
:
class
Grid
(
Widget
)
:
pass
class
Main
(
App
):
def
build
(
self
):
return
Grid
()
if
__name__
==
'__main__'
:
main
()
\ No newline at end of file
Main
().
run
()
\ No newline at end of file
Web Projects/Quiz/webscript.py
0 → 100644
View file @
770f7b11
from
selenium
import
webdriver
driver
=
webdriver
.
Chrome
()
driver
.
get
(
""
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment