kivy,,, assigning global variable

2020-12-28 Thread Sadaka Technology
class main(..): def init.: super. button = Button(on_release=self.on_click) def on_click(self,screen,*args) self.clear_widgets() if screen == '2nd': float = 2nd() elif screen == '1st': float = 1st()

Re: Kivy native GUI examples

2019-01-08 Thread Mario R. Osorio
On Monday, January 7, 2019 at 9:52:03 AM UTC-5, Dave wrote: > I need to select a Python GUI. It needs to cover all of the desktops > (Linux, Windows, Apple) and hopefully mobile (Android and Ios). I'm > looking at Kivy, but have yet to find an example app. that has a native

Re: Kivy native GUI examples

2019-01-07 Thread Dave
On 1/7/19 11:14 AM, Thomas Jollans wrote: On 07/01/2019 15.51, Dave wrote: I need to select a Python GUI.  It needs to cover all of the desktops (Linux, Windows, Apple) and hopefully mobile (Android and Ios).  I'm looking at Kivy, but have yet to find an example app. that has a native lo

Re: Kivy native GUI examples

2019-01-07 Thread Thomas Jollans
On 07/01/2019 15.51, Dave wrote: > I need to select a Python GUI.  It needs to cover all of the desktops > (Linux, Windows, Apple) and hopefully mobile (Android and Ios).  I'm > looking at Kivy, but have yet to find an example app. that has a native > looking GUI (Windows, Mac

Re: Kivy native GUI examples

2019-01-07 Thread Thomas Jollans
On 07/01/2019 15.51, Dave wrote: > I need to select a Python GUI.  It needs to cover all of the desktops > (Linux, Windows, Apple) and hopefully mobile (Android and Ios).  I'm > looking at Kivy, but have yet to find an example app. that has a native > looking GUI (Windows, Mac

Kivy native GUI examples

2019-01-07 Thread Dave
I need to select a Python GUI. It needs to cover all of the desktops (Linux, Windows, Apple) and hopefully mobile (Android and Ios). I'm looking at Kivy, but have yet to find an example app. that has a native looking GUI (Windows, Mac, Linux/Gnome/KDE). Is that possible and anyone kn

Re: kivy [quick report]

2018-10-08 Thread m
W dniu 05.10.2018 o 18:43, Stefan Ram pisze: > BTW: For Android, there is a "Bulldozer" (or some such) that > can create an APK. I wonder what the best way to package one's > kivy program to distribute it to Windows users? I use wine + pyinstaller. regards m --

Re: Trying out Kivy

2015-11-14 Thread Michael Torrie
On 11/14/2015 04:51 AM, Cecil Westerhof wrote: > I tried to install v1.8.0 with: > pip3 install -I kivy==1.8.0 Why are you trying to install the non-current version of kivy? Did you install pygame successfully? -- https://mail.python.org/mailman/listinfo/python-list

Re: Trying out Kivy

2015-11-14 Thread bayang
;>>> The replacement for PIL is called Pillow. I'm not sure if it's a > >>>> drop-in replacement or not. If it's not, then you'd have to > >>>> modify Kivy to import from Pillow. Pillow does support Python3. > >>> > >>> After

Re: Trying out Kivy

2015-11-14 Thread Cecil Westerhof
M, Cecil Westerhof wrote: >>>>> I tried to install pygame and PIL with pip3, but that did not >>>>> find anything. >>>> >>>> The replacement for PIL is called Pillow. I'm not sure if it's a >>>> drop-in replacement or n

Re: Trying out Kivy

2015-11-13 Thread bayang
Le 13/11/2015 21:10, Cecil Westerhof a écrit : Purge log fired. Analysing... Purge finished! [INFO ] [Logger ] Record log in /home/cecil/.kivy/logs/kivy_15-11-13_28.txt [INFO ] [Kivy] v1.9.0 [INFO ] [Python ] v3.4.1 (default, May 23 2014

Re: Trying out Kivy

2015-11-13 Thread Cecil Westerhof
ith pip3, but that did not >>>> find anything. >>> >>> The replacement for PIL is called Pillow. I'm not sure if it's a >>> drop-in replacement or not. If it's not, then you'd have to modify >>> Kivy to import from Pillow. Pillow does

Re: Trying out Kivy

2015-11-13 Thread Michael Torrie
lacement for PIL is called Pillow. I'm not sure if it's a >> drop-in replacement or not. If it's not, then you'd have to modify >> Kivy to import from Pillow. Pillow does support Python3. > > After installing Pillow the error about PIL disappeared, but I got

Re: Trying out Kivy

2015-11-13 Thread Cecil Westerhof
rop-in replacement or not. If it's not, then you'd have to modify > Kivy to import from Pillow. Pillow does support Python3. After installing Pillow the error about PIL disappeared, but I got new errors about bcm and x11. >> Is there another way to install those dependencies? >

Re: Trying out Kivy

2015-11-13 Thread bayang
Le 13/11/2015 18:23, Terry Reedy a écrit : On 11/13/2015 11:33 AM, Cecil Westerhof wrote: I tried out the ‘standard’ Kivy application: from kivy.app import App from kivy.uix.button import Button class TestApp(App): def build

Re: Trying out Kivy

2015-11-13 Thread Terry Reedy
On 11/13/2015 11:33 AM, Cecil Westerhof wrote: I tried out the ‘standard’ Kivy application: from kivy.app import App from kivy.uix.button import Button class TestApp(App): def build(self): return Button(text='Hello

Re: Trying out Kivy

2015-11-13 Thread Michael Torrie
On 11/13/2015 09:33 AM, Cecil Westerhof wrote: > I tried to install pygame and PIL with pip3, but that did not find > anything. The replacement for PIL is called Pillow. I'm not sure if it's a drop-in replacement or not. If it's not, then you'd have to modify

Trying out Kivy

2015-11-13 Thread Cecil Westerhof
I tried out the ‘standard’ Kivy application: from kivy.app import App from kivy.uix.button import Button class TestApp(App): def build(self): return Button(text='Hello World') Tes

Re: kivy editable multicolumn list

2015-09-16 Thread Paulo da Silva
t = {str(i): {'text': str(i), 'is_selected': False} > for i in range(100)} > > which I pasted out of http://kivy.org/docs/api-kivy.uix.listview.html > 'Using an Item View Template'. This may have no relation to what you > really want. The exampl

Re: kivy editable multicolumn list

2015-09-16 Thread Paulo da Silva
Às 08:44 de 15-09-2015, David Aldrich escreveu: >> Not sure if this is the place to ask about kivy ... > > Try the kivy users list here: > > https://groups.google.com/forum/#!forum/kivy-users Thanks for the link. -- https://mail.python.org/mailman/listinfo/python-list

Re: kivy editable multicolumn list

2015-09-15 Thread Laura Creighton
In a message of Tue, 15 Sep 2015 03:31:49 +0100, Paulo da Silva writes: >Hi all. >Not sure if this is the place to ask about kivy ... >I apologize if not. > >I am playing with the example here >https://gist.github.com/geojeff/4442405 > >Now I would like to change the backg

RE: kivy editable multicolumn list

2015-09-15 Thread David Aldrich
> Not sure if this is the place to ask about kivy ... Try the kivy users list here: https://groups.google.com/forum/#!forum/kivy-users Best regards David -- https://mail.python.org/mailman/listinfo/python-list

kivy editable multicolumn list

2015-09-14 Thread Paulo da Silva
Hi all. Not sure if this is the place to ask about kivy ... I apologize if not. I am playing with the example here https://gist.github.com/geojeff/4442405 Now I would like to change the background color the editable field. So I added def __init__(self,**kwargs): super

Re: "no module named kivy" import error in ubuntu 14.04

2015-08-17 Thread rurpy--- via Python-list
On 08/17/2015 01:52 AM, Laura Creighton wrote: > In a message of Sun, 16 Aug 2015 22:05:29 -0700, rurpy--- via Python-list > writes: >> So I eventually found the kivy docs on their website where they >> list prerequisite packages for installing kivy on ubuntu. I'll

Re: "no module named kivy" import error in ubuntu 14.04

2015-08-17 Thread Rustom Mody
On Monday, August 17, 2015 at 10:35:48 AM UTC+5:30, rurpy wrote: > I hope someday Python gets a decent packaging/distribution story. You are in august company | The final question was about what he (Guido) hates in Python. "Anything to do | with package distribution", he answered immediately. The

Re: Python Mobile development using kivy

2015-08-17 Thread Laura Creighton
In a message of Mon, 17 Aug 2015 09:35:12 -0700, reetesh nigam writes: >Hi All, > >I am using Python2.7 version, while developing basic app using kivy, I am >getting following error : > >dev@synechron-desktop-156:~/myDev/mobile_app$ cat main.py >from kivy import app >

Python Mobile development using kivy

2015-08-17 Thread reetesh nigam
Hi All, I am using Python2.7 version, while developing basic app using kivy, I am getting following error : dev@synechron-desktop-156:~/myDev/mobile_app$ cat main.py from kivy import app from kivy.app import App from kivy.uix.label import Label class MyApp(App): def build(self

Re: "no module named kivy" import error in ubuntu 14.04

2015-08-17 Thread Laura Creighton
In a message of Sun, 16 Aug 2015 22:05:29 -0700, rurpy--- via Python-list write s: >So I eventually found the kivy docs on their website where they >list prerequisite packages for installing kivy on ubuntu. I'll >translate those to hopefully the equivalent fedora package names,

Re: "no module named kivy" import error in ubuntu 14.04

2015-08-16 Thread Dave Farrance
shiva upreti wrote: >Hi >I am new to linux. I tried various things in attempt to install kivy. I >installed python 2.7.10 Just to make clear what others have said -- replacing Ubuntu 14.04's system Python 2.7.6 is a bad idea and will break stuff, so if you really must have the

Re: "no module named kivy" import error in ubuntu 14.04

2015-08-16 Thread rurpy--- via Python-list
side a virtualenv). It'll chug for a while and > >> then give you what you need. > > > >Umm, actually no... > > > >| ~# pip3 install kivy > >| Downloading/unpacking kivy > >| Downloading Kivy-1.9.0.tar.gz (16.2MB): 16.2MB downloaded > >| Runni

Re: "no module named kivy" import error in ubuntu 14.04

2015-08-16 Thread Laura Creighton
In a message of Sun, 16 Aug 2015 20:19:49 -0700, rurpy--- via Python-list write s: >On Sunday, August 16, 2015 at 8:00:14 PM UTC-6, Chris Angelico wrote: >> On Mon, Aug 17, 2015 at 5:16 AM, shiva upreti >> wrote: >> > I am new to linux. I tried various things in at

Re: "no module named kivy" import error in ubuntu 14.04

2015-08-16 Thread rurpy--- via Python-list
On Sunday, August 16, 2015 at 8:00:14 PM UTC-6, Chris Angelico wrote: > On Mon, Aug 17, 2015 at 5:16 AM, shiva upreti > wrote: > > I am new to linux. I tried various things in attempt to install kivy. I > > installed python 2.7.10 (I think python3 was already installed in

Re: "no module named kivy" import error in ubuntu 14.04

2015-08-16 Thread Chris Angelico
On Mon, Aug 17, 2015 at 12:51 PM, Rustom Mody wrote: > On Monday, August 17, 2015 at 7:30:14 AM UTC+5:30, Chris Angelico wrote: >> On Mon, Aug 17, 2015 at 5:16 AM, shiva upreti wrote: >> > I am new to linux. I tried various things in attempt to install kivy. I >> >

Re: "no module named kivy" import error in ubuntu 14.04

2015-08-16 Thread Rustom Mody
On Monday, August 17, 2015 at 7:30:14 AM UTC+5:30, Chris Angelico wrote: > On Mon, Aug 17, 2015 at 5:16 AM, shiva upreti wrote: > > I am new to linux. I tried various things in attempt to install kivy. I > > installed python 2.7.10 (I think python3 was already installed in ub

Re: "no module named kivy" import error in ubuntu 14.04

2015-08-16 Thread Chris Angelico
On Mon, Aug 17, 2015 at 5:16 AM, shiva upreti wrote: > I am new to linux. I tried various things in attempt to install kivy. I > installed python 2.7.10 (I think python3 was already installed in ubuntu > 14.04). Then i downloaded kivy from > https://pypi.python.org/packages/source

Re: "no module named kivy" import error in ubuntu 14.04

2015-08-16 Thread Laura Creighton
In a message of Sun, 16 Aug 2015 12:16:53 -0700, shiva upreti writes: >I am still getting the error:"ImportError: No module named kivy". > >Any help will be highly appreciated. >Thanks. The preferred way to install kivy with ubuntu is to follow the instructions here

Re: "no module named kivy" import error in ubuntu 14.04

2015-08-16 Thread MRAB
On 2015-08-16 20:16, shiva upreti wrote: Hi I am new to linux. I tried various things in attempt to install kivy. I installed python 2.7.10 (I think python3 was already installed in ubuntu 14.04). Then i downloaded kivy from https://pypi.python.org/packages/source/K/Kivy/Kivy-1.9.0.tar.gz

"no module named kivy" import error in ubuntu 14.04

2015-08-16 Thread shiva upreti
Hi I am new to linux. I tried various things in attempt to install kivy. I installed python 2.7.10 (I think python3 was already installed in ubuntu 14.04). Then i downloaded kivy from https://pypi.python.org/packages/source/K/Kivy/Kivy-1.9.0.tar.gz, extracted it and tried to execute "p

kivy: python on android

2015-01-27 Thread Rustom Mody
Following some posts here I thought I'd try python on android via kivy. Followed the tutorials -- involved a couple of GBs(!!) of downloads using something called buildozer Finally got a hello world running on a phone -- Yay! Now when I try to go from hello world to something a more

Re: kivy secret of mana game

2015-01-24 Thread Larry Martell
On Fri, Jan 23, 2015 at 3:44 PM, wrote: > On Friday, January 23, 2015 at 10:10:08 AM UTC-8, Tony the Tiger wrote: >> On Thu, 22 Jan 2015 17:13:12 +, Automn wrote: >> >> > game >> >> No interest, at all, nada, zilch. zero, nothing. >> >> /Grrr > > Why don't you like fun? I spend 10-12 hours

Re: kivy secret of mana game

2015-01-23 Thread Chris Angelico
On Sat, Jan 24, 2015 at 3:53 PM, Steven D'Aprano wrote: > I had fun once. It was horrible. You probably had it boiled. The proper way to have fun is fried in garlic butter, with a bit of salt. Try having some real home-cooked fresh fun, I think you'll like it. ChrisA -- https://mail.python.org/

Re: kivy secret of mana game

2015-01-23 Thread Steven D'Aprano
sohcahto...@gmail.com wrote: > On Friday, January 23, 2015 at 10:10:08 AM UTC-8, Tony the Tiger wrote: >> On Thu, 22 Jan 2015 17:13:12 +, Automn wrote: >> >> > game >> >> No interest, at all, nada, zilch. zero, nothing. >> >> /Grrr > > Why don't you like fun? I had fun once. It was horr

Re: kivy secret of mana game

2015-01-23 Thread Rustom Mody
On Saturday, January 24, 2015 at 9:36:56 AM UTC+5:30, Rustom Mody wrote: > On Thursday, January 22, 2015 at 10:43:30 PM UTC+5:30, Automn wrote: > > Hello, > > > > I am programming a "Secret of Mana" (Seiken Densetsu) game in kivy, it runs > > on a phone with

Re: kivy secret of mana game

2015-01-23 Thread Rustom Mody
On Thursday, January 22, 2015 at 10:43:30 PM UTC+5:30, Automn wrote: > Hello, > > I am programming a "Secret of Mana" (Seiken Densetsu) game in kivy, it runs > on a phone with kivy launcher. > > Features for now are : movement by swiping, polygon collision and image s

Re: kivy secret of mana game

2015-01-23 Thread sohcahtoa82
On Friday, January 23, 2015 at 10:10:08 AM UTC-8, Tony the Tiger wrote: > On Thu, 22 Jan 2015 17:13:12 +, Automn wrote: > > > game > > No interest, at all, nada, zilch. zero, nothing. > > /Grrr Why don't you like fun? -- https://mail.python.org/mailman/listinfo/python-list

Re: kivy secret of mana game

2015-01-23 Thread Ethan Furman
On 01/22/2015 09:13 AM, Automn wrote: > > I am programming a "Secret of Mana" (Seiken Densetsu) game in kivy, it runs > on a phone with kivy launcher. AWESOME That was a totally fabulous game -- one of the very few I actually played to the end. :) -- ~Ethan~ signat

Re: kivy secret of mana game

2015-01-23 Thread Chris Angelico
On Sat, Jan 24, 2015 at 5:09 AM, Tony the Tiger wrote: > On Thu, 22 Jan 2015 17:13:12 +, Automn wrote: > >> game > > No interest, at all, nada, zilch. zero, nothing. > > /Grrr Then don't bother responding, just skip the thread and move on. The rest of us, who don't have this unnatural avers

Re: kivy secret of mana game

2015-01-23 Thread Automn
On 2015-01-22, Ian Kelly wrote: > On Thu, Jan 22, 2015 at 10:13 AM, Automn wrote: >> The graphics have been licensed for this. > > Really? I'm surprised Square-Enix would even give consideration to > licensing something like this. The graphics have all been purchased. I forgot to tell that the g

Re: kivy secret of mana game

2015-01-22 Thread Ian Kelly
On Thu, Jan 22, 2015 at 10:13 AM, Automn wrote: > The graphics have been licensed for this. Really? I'm surprised Square-Enix would even give consideration to licensing something like this. -- https://mail.python.org/mailman/listinfo/python-list

kivy secret of mana game

2015-01-22 Thread Automn
Hello, I am programming a "Secret of Mana" (Seiken Densetsu) game in kivy, it runs on a phone with kivy launcher. Features for now are : movement by swiping, polygon collision and image state changes with resource handling. The codebase can be found at : https://sourceforge.ne

Re: Kivy Contest 2014

2014-04-15 Thread Chris Angelico
On Tue, Apr 15, 2014 at 5:36 PM, wrote: > I have already enrolled to kivy contest 2014 few days ago. Now theme is out, > How can I know that I have successfully enrolled in kivy contest? > > I didnt get any mail from kivy having confirmation of enrollment. > > According to i

Kivy Contest 2014

2014-04-15 Thread jimish
hey guys, I have already enrolled to kivy contest 2014 few days ago. Now theme is out, How can I know that I have successfully enrolled in kivy contest? I didnt get any mail from kivy having confirmation of enrollment. According to instructions i have read earlier, I wanted to ask that are

Re: Kivy contest 2014

2014-03-19 Thread Alexander Taylor
on: >> >> Hi folks, >> >> Kivy will be holding it's programming contest for 2014 starting April >> 15th. >> >> For details please visit http://kivy.org/#contest >> >> If you are interested in sponsoring the contest, please contact us at >>

Re: Kivy contest 2014

2014-03-19 Thread audiowerk
Hi! Is there already a date when the theme will be announced? Am Sonntag, 16. März 2014 18:42:16 UTC+1 schrieb qua-non: > > Hi folks, > > Kivy will be holding it's programming contest for 2014 starting April 15th. > > For details please visit http://kivy.org/#contest >

Re: kivy

2014-02-05 Thread Dave Angel
Rustom Mody Wrote in message: > On Wednesday, February 5, 2014 1:25:43 AM UTC+5:30, bharath wrote: >> please help im just frustrated after writing a long code and seeing that it >> isn't working.. > > Prior to Kernighan and Ritchie people did tend to write 'a long code' > and then check that i

Re: kivy

2014-02-04 Thread Rustom Mody
On Wednesday, February 5, 2014 1:25:43 AM UTC+5:30, bharath wrote: > please help im just frustrated after writing a long code and seeing that it > isn't working.. Prior to Kernighan and Ritchie people did tend to write 'a long code' and then check that its working (or not). After 'The C program

Re: kivy

2014-02-04 Thread bharath
On Wednesday, February 5, 2014 2:03:58 AM UTC+5:30, Nick Cash wrote: > >> Is kivy listed in the Python search paths (sys.path)? > > > > >yes > > > > To be extra sure, you can start a python interpreter with the commandline > argument -vv, and when yo

RE: kivy

2014-02-04 Thread Nick Cash
>> Is kivy listed in the Python search paths (sys.path)? >yes To be extra sure, you can start a python interpreter with the commandline argument -vv, and when you try to import kivy (or any module) it will show you every file/path it checks when trying to find it. This might help y

Re: kivy

2014-02-04 Thread Gary Herron
On 02/04/2014 11:55 AM, bharath wrote: i installed python 2.7 before and installed suitable kivy.. i have also included the .bat file in the send to option.. but my programs are not at all runnning and giving me error when i run it normally or with the .bat file.. it says that there'

Re: kivy

2014-02-04 Thread bharath
On Wednesday, February 5, 2014 1:51:31 AM UTC+5:30, MRAB wrote: > On 2014-02-04 19:55, bharath wrote: > > > i installed python 2.7 before and installed suitable kivy.. i have > > > also included the .bat file in the send to option.. but my programs > > > are not

Re: kivy

2014-02-04 Thread bharath
On Wednesday, February 5, 2014 1:51:31 AM UTC+5:30, MRAB wrote: > On 2014-02-04 19:55, bharath wrote: > > > i installed python 2.7 before and installed suitable kivy.. i have > > > also included the .bat file in the send to option.. but my programs > > > are not

Re: kivy

2014-02-04 Thread MRAB
On 2014-02-04 19:55, bharath wrote: i installed python 2.7 before and installed suitable kivy.. i have also included the .bat file in the send to option.. but my programs are not at all runnning and giving me error when i run it normally or with the .bat file.. it says that there's no m

kivy

2014-02-04 Thread bharath
i installed python 2.7 before and installed suitable kivy.. i have also included the .bat file in the send to option.. but my programs are not at all runnning and giving me error when i run it normally or with the .bat file.. it says that there's no module named kivy when i import it.. p

Re: Kivy for Python 3.3

2013-07-12 Thread fronagzen
On Friday, July 12, 2013 6:14:46 PM UTC+8, Paul Kölle wrote: > Am 11.07.2013 16:26, schrieb fronag...@gmail.com: > > [scnipp] > > > C:\MinGW\bin\gcc.exe -mdll -O -Wall -IC:\Python33\include > > > -IC:\Python33\include -c kivy\graphics\vertex_instructions.c -o > &g

Re: Kivy for Python 3.3

2013-07-12 Thread Paul Kölle
Am 11.07.2013 16:26, schrieb fronag...@gmail.com: [scnipp] C:\MinGW\bin\gcc.exe -mdll -O -Wall -IC:\Python33\include -IC:\Python33\include -c kivy\graphics\vertex_instructions.c -o build\temp.win32-3.3\Release\kivy\grap hics\vertex_instructions.o In file included from kivy\graphics

Re: Kivy for Python 3.3

2013-07-11 Thread fronagzen
n > > > most of it by now,) and am trying to put together a GUI for it. Kivy > > > looks very nice, particularly with the fact that it's supposed to be > > > compatible with most platforms (including Android, which I would like > > > to be able to us

Re: Kivy for Python 3.3

2013-07-11 Thread Ulrich Eckhardt
Welcome to Python! Am 11.07.2013 11:09, schrieb fronag...@gmail.com: I'm looking to write a program in Python, (and have in fact written most of it by now,) and am trying to put together a GUI for it. Kivy looks very nice, particularly with the fact that it's supposed to be compatible

Re: Kivy for Python 3.3

2013-07-11 Thread Paul Kölle
Am 11.07.2013 11:09, schrieb fronag...@gmail.com: Hello, first time poster here, and general newbie to Python. I'm looking to write a program in Python, (and have in fact written most of it by now,) and am trying to put together a GUI for it. Kivy looks very nice, particularly with the

Re: Kivy for Python 3.3

2013-07-11 Thread Ian Foote
On 11/07/13 10:09, fronag...@gmail.com wrote: Hello, first time poster here, and general newbie to Python. I'm looking to write a program in Python, (and have in fact written most of it by now,) and am trying to put together a GUI for it. Kivy looks very nice, particularly with the fact

Kivy for Python 3.3

2013-07-11 Thread fronagzen
Hello, first time poster here, and general newbie to Python. I'm looking to write a program in Python, (and have in fact written most of it by now,) and am trying to put together a GUI for it. Kivy looks very nice, particularly with the fact that it's supposed to be compatible