Questions tagged [kivy]
Kivy is an open source Python library for rapid development of applications equipped with novel user interfaces, such as multi-touch apps.
17 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
3
votes
1
answer
601
views
KivyPlayer - first Kivy app
So I have decided to learn Kivy Framework. Did two small apps containing mainly just labels (so that doesn't count) and decided I am going to do a simple music player. Nothing fancy just to learn ...
1
vote
0
answers
119
views
Rhyming dictionary
I made a kivy app to find the rhyming words for a word entered by the user. It displays all the rhyming words as OneLineListItems in a kivy ...
2
votes
2
answers
669
views
easy to use control panel for minecraft rcon
I wrote a small program that connects to a minecraft rcon and provides an easy to use control panel.
It is written in python 3.9 and uses the kivy module for the GUI.
What could I improve in the code? ...
2
votes
1
answer
448
views
Scrolling background in kivy
I'm drawing a background into kivy, and then wrap and place a transparent image on top of it. Each second I move the location of the transparent a little bit.
...
3
votes
0
answers
787
views
Simple Kivy App for Bootstrap Algorithm
I have a very simlpe app built using Kivy, for performing bootstrap algorithm (statistics). We must input some samples in the form x1,x2,...,xn (these will be ...
2
votes
0
answers
1k
views
Simple Flappy Bird Clone using Kivy (with very minimum physics)
This is a very simple clone of Flappy Bird using Kivy, to be used for programming class for teens. The game consists of 3 classes: Bird, ...
9
votes
1
answer
530
views
Music Tag Editor written in Python Kivy using Mutagen
I've been working on a Python script which is an MP3 Tag editor. I need someone to go through my script and tell me whether I have written it correctly (following correct coding style) and where I can ...
5
votes
2
answers
1k
views
Calculator - Kivy Order of Operations
I decided to make a simple calculator, but then I decided I want to make an advanced calculator. Before I achieve that though, I settled for a calculator capable of order of operations.
...
7
votes
1
answer
840
views
Life Counter for Magic the Gathering
This is a life counter that I am using together with my friends for card games (Magic the Gathering).
For those who know the game, it is actually designed for 1vs1 Commander.
It provides you with the ...
8
votes
1
answer
650
views
Game of life in kivy python
I coded a simulator of the Game Of Life by Conway. I made using Kivy, so that it has a graphical interface.
Any suggestion on how to improve its pythonism or performance would be highly appreciated.
...
user avatar
user138619
3
votes
1
answer
2k
views
Tic Tac Toe with Python and Kivy
Accomplishment: Tic Tac Toe game with Python & Kivy
I have created a simple tic tac toe game with a random bot logic (really random after a user selects a mark). Next step would be to insert the ...
2
votes
0
answers
147
views
Kivy language code of my Vehicle Details app
So I've written my first android app in kivy.
This app takes a Vehicle License Number as input from the user and submits it to a sites and shows the results from the site.
The complete Source Code ...
3
votes
0
answers
685
views
Scraping links from the first page of Google using Kivy
I'm making a scraper/web crawler using Kivy when I run the code it works but I'm not sure if what I'm doing is Pythonic because all the language I can find is about using the Kivy library. I'm unsure ...
7
votes
1
answer
2k
views
Small Kivy application
I've written a small app using the kivy framework, which aims at reviewing your times tables. My major concern is about making this app easier to improve in the future. That is, how to organize the ...
4
votes
1
answer
576
views
Draw line that expands over time
This is a simple practice app that draws a line, and the line 'balloons' up for a second.
This code shows some issues I tend to have a little too often, where I end up defining functions inside of ...