kivy

I can't install kivy. python

Before entering python-m pip install kivy, I entered this: python -m pip install --upgrade pip wheel setuptools virtualenv ... pip install docutils pygments pypiwin32 kivy_deps.sdl2 kivy_deps.glew Everything was updated and installed except for kiwi.

Kivy-android app crashes

I am writing a mobile translator in python kivy. I use the Yandex API. When compiled on windows, the application works correc ... (btn) al.add_widget(bl) return al # --- Запуск приложения if __name__ == '__main__': translator().run()

How to make multi-window applications without Builder in Kivy

I want to make a program on Kivy, using several windows, but I would like to do it without the Builder, but I can not underst ... t(button_new_pasword) return boxlayout return program if __name__ == "__main__": PaswordingApp().run()

How to determine the size of android screens on kivy

You can help. I need python Kivy to determine the length and height of the phone's display to adapt applications, since the proportions are known. Is there any way to do this?

python kivy, label, button

Please help me how to make the list output in turn when you click the "Truth or action" button def ActionOrTruth(self, in ... widget(self.label) play = ['Правда', 'Действие'] start = random.choice(play) instance.text = start

The kivy file does not start from the console

Everything was installed exactly in order and correctly on the site kivy.org, but the script with kiwi still does not run fro ... line 62, in core_select_lib fromlist=[modulename], level=0) [CRITICAL] [App ] Unable to get a Window, abort.

Installing kivy and django in python

Which version of python3 can I download the latest version of kivy and django to

Does not display Cyrillic in kivy in utf-8

There are two files, main.py and my. kv. I work in a paycharm. Both files have utf-8. The code is clean, everything is at a ... нвертация .kv файла в windows1251 решила проблему, но теперь вопрос вот в чём. не отразится ли это на чём нибудь в будущем?

python-for-android-prompt with a command for the terminal

I wrote a program for the test from tkinter import * root = Tk() root.config(bg='blue') root.geometry('320x480') root.title( ... very stupid question, but still. Help I use python-for-android for this purpose - https://github.com/kivy/python-for-android

Reference error: weakly-referenced object no longer exists

Made an application in python 3.6 using kivy. In PyCharm and in Linux, it starts and runs. On android, when you click add a r ... t: (.1, 1) background_color: 1, 1, 1, 0 on_press: root.remove_task(root.id); root.parent.remove_widget(root)

TypeError: expected string or bytes-like object error when checking the bcrypt hash in python

Authorization code class Login(Screen): def do_login(self, loginText, passwordText): app = App.get_running_app( ... when logging in, it throws an error: TypeError: expected string or bytes-like object. Sqlite database, hashed using bcrypt.

Is it possible to simulate a smartphone on a PC for development and debugging

Good afternoon. I started studying kivy and found that I couldn't test some features on my computer beforehand. Every time ... things. Is it possible to simulate all these sensors on a computer so that you can debug without dancing with a tambourine?

I can't start the Kiwi

Downloaded python, then -m pip install kivy and cython. pygame not found for the x64 build. I run the example from the tutor ... the result is shown in the screenshot. What is the problem? How to launch this kiwi? Just python files work with a bang.

How all Layouts work in Python Kivy

How many times I look at the official documentation of Kivy, and I can not understand to the end what each Layout is responsi ... er it is on top, or it is on the entire screen if Size_hint is set to 1,1. I tried to play with other Layouts, it's useless.

Kivy installation error

I can't install kivy on my computer, I've never messed with pip before, I'm putting the commands in cmd and it gives error. ... , which is: ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.

How to leave the window with transparent background on Kivy

Hello, I'm trying to make a program that creates a window Without Borders and with the transparent background. The first pa ... ady got: Window.borderless = True But I still couldn't make the background transparent. Does anyone know how to do this?

Python and Kivy: how to select and copy all text from a Text Input

Hello! I'm trying to learn Kivy... 1) I would like to select all text within a Text Input in Kivy. which attribute should ... ar" height: 40 width: 120 top: 95 size_hint: None, None pos_hint: {'center_x': 0.6,}

Buttons with dynamic images with kivy

Problem I have a button with circular image, with the image in 1:1 ratio, and when executing the code (below) the program g ... e_hint: None, None <FloatLayout>: Botao: text:"Botao" pos_hint: {"center_x": .5, "center_y": .5}

How to change an image dynamically on a Kivy label

I want to change an image dynamically on a Kivy label. every time the variable increases a number the label should change the ... canvas.before: Rectangle: pos: self.pos size: self.size

Allowing manipulation In Widget Image in Kivy

I have doubts about how to allow manipulation of an image on a certain screen in Kivy, basically to approximation when doub ... ayout: id: bar Button: text: 'Ir para Patient Screen' on_press: root.manager.current = 'Patient'