Posts by Keiko Mori • 101 points
5 posts
-
0
votes2
answers143
viewsA: Kivy: INVALID PROPERTY NAME
python: import kivy kivy.require("1.11.1") from kivy.app import App from kivy.uix.boxlayout import BoxLayout from kivy.uix.button import Button from kivy.uix.floatlayout import FloatLayout def…
-
1
votes1
answer76
viewsA: How do I use a virtual keyboard in a Kivy or Kivymd application?
I found a configuration that worked using Kivymd: from kivy.config import Config Config.set('kivy', 'keyboard_mode', 'systemandmulti') I just added this and it worked normally. It should also work…
-
1
votes1
answer76
viewsQ: How do I use a virtual keyboard in a Kivy or Kivymd application?
I am developing an application in python with graphical interface made in Kivymd. My question is the following, when I click in some field textinput I want a virtual keyboard to appear so I can…
-
1
votes3
answers146
viewsA: How to use double quotes in a python application by running a subprocess
I was having problems because the information, such network name and password were entries provided by the user, I was able to find a medium for the solution: cmd="echo…
-
6
votes3
answers146
viewsQ: How to use double quotes in a python application by running a subprocess
I’m trying to add a new wifi network via command line in a Raspberry Pi, however when I pass the string containing the data of the Wifi network the quotes that should be between the login name and…