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()
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
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
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
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
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
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
--
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
;>>> 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
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
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
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
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
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?
>
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
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
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
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
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
À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
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
> 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
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
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
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
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
>
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
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,
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
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
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
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
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
>> >
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
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
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
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
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
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
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
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/
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
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
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
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
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
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
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
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
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
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
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
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
>>
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
>
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
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
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
>> 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
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'
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
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
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
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
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
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
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
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
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
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
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
70 matches
Mail list logo