From knny.myer at gmail.com Fri Nov 13 01:15:51 2009 From: knny.myer at gmail.com (Kenny Meyer) Date: Thu, 12 Nov 2009 21:15:51 -0300 Subject: [PythonCE] Running PyCe 2.5 on a Linux Platform Message-ID: <4afca537.c701be0a.75f3.ffffb0be@mx.google.com> Hello, Is there a way to get PyCe running on a Red Hat-Platform (Fedora 11)? I've actually downloaded PyCe2.5 Source Package, and installed it in my home directory, but it (logically) doesn't compile PyCe support. I need PyCe on my Linux Box, because I have a mobile device which runs WM5 and I'm programming GUIs with 'ppygui', but 'ppygui' has win32 dependencies, which need to be satisfied.. but you know probably better what I'm speaking of. I just want to use ppygui so I can flexibly debug my programs. I'm just curious /if/ there's any way to realize my idea. Cheers, Kenny Meyer From bkc at murkworks.com Fri Nov 13 02:56:05 2009 From: bkc at murkworks.com (Brad Clements) Date: Thu, 12 Nov 2009 20:56:05 -0500 Subject: [PythonCE] Running PyCe 2.5 on a Linux Platform In-Reply-To: <4afca537.c701be0a.75f3.ffffb0be@mx.google.com> References: <4afca537.c701be0a.75f3.ffffb0be@mx.google.com> Message-ID: <4AFCBCB5.8080208@murkworks.com> The only way I can think of doing this is to run a CE emulator (only available for Windows). I think you might get a 'test' copy of windows as a virtual PC image running on your linux box. MS has some downloads that last a few months. Not sure about where to find a CE emulator these days. I haven't done anything with wince in more than ... 8 years Kenny Meyer wrote: > Hello, > > Is there a way to get PyCe running on a Red Hat-Platform (Fedora 11)? > I've actually downloaded PyCe2.5 Source Package, and installed it in my > home directory, but it (logically) doesn't compile PyCe support. > > I need PyCe on my Linux Box, because I have a mobile device which runs > WM5 and I'm programming GUIs with 'ppygui', but 'ppygui' has win32 > dependencies, which need to be satisfied.. but you know probably better > what I'm speaking of. > > I just want to use ppygui so I can flexibly debug my programs. > > I'm just curious /if/ there's any way to realize my idea. > > Cheers, > Kenny Meyer > _______________________________________________ > PythonCE mailing list > PythonCE at python.org > http://mail.python.org/mailman/listinfo/pythonce > -- Brad Clements, bkc at murkworks.com (315)268-1000 http://www.murkworks.com AOL-IM: BKClements From leandro at professionalit.com.br Fri Nov 13 13:02:12 2009 From: leandro at professionalit.com.br (=?ISO-8859-1?Q?Leandro_=2D_ProfessionalIT_=2D_Solu=E7=F5es_em_Tecnologia_da_?= =?ISO-8859-1?Q?Informa=E7=E3o=2E?=) Date: Fri, 13 Nov 2009 10:02:12 -0200 Subject: [PythonCE] FTP in Windows Mobile 6.1 Message-ID: <325549b40911130402w5cde01b8pc2dd94033df4e5fe@mail.gmail.com> Hello, This is my first post and I'm writing from Brazil. Well, I'm developing a "Sales Force System" with PythonCE and PocketPyGui to a Palm Tre Pro(with Windows Mobile 6.1 Professional, with touch screen support) and in this moment I have two problems: 1) I do a W-Lan(wifi) connection and try send a file to a FTP server. In my test I'm trying execute this code: # ----- Begin ---- import ftplib import os def upload(ftp, file): ext = os.path.splitext(file)[1] if ext in (".txt", ".htm", ".html"): ftp.storlines("STOR " + file, open(file)) else: ftp.storbinary("STOR " + file, open(file, "rb"), 1024) ftp = ftplib.FTP("ftp.myserver.com.br") ftp.login("myuser", "mypassword") upload(ftp, "0011211B.EXP") # ----- End ---- Well, when a execute this code (double-click in the windows explorer of my mobile device) the pythonCE open and try execute the code but it show me many errors(socket erros and a message: "Connection reset by peer"). When a execute this code in my Desktop PC it's run ok. Any Idea of how to resolve this problem or "how to send/put a file in a FTP server with PythonCE" ? 2) How to detect/make a GPRS connection with PythonCE ? There are a example code ? where I can find a sample ? because the "sales man" will operate the system out (in the "street") with a 3G GPRS Connection. PS: Sorry by terrible English. -- Leandro. -------------- next part -------------- An HTML attachment was scrubbed... URL: From leandro at professionalit.com.br Fri Nov 13 13:17:19 2009 From: leandro at professionalit.com.br (=?ISO-8859-1?Q?Leandro_=2D_ProfessionalIT_=2D_Solu=E7=F5es_em_Tecnologia_da_?= =?ISO-8859-1?Q?Informa=E7=E3o=2E?=) Date: Fri, 13 Nov 2009 10:17:19 -0200 Subject: [PythonCE] open internet connection (GPRS) Message-ID: <325549b40911130417o269833fck8052831f5179e91b@mail.gmail.com> Fredy and Luke, Do you can send me a sample code to: 1) Make a FTP PUT(STOR) a file with PythonCE. 2) Make a GPRS Connection with PythonCE. -- Leandro. -------------- next part -------------- An HTML attachment was scrubbed... URL: From radekholypublic at gmail.com Fri Nov 13 18:21:55 2009 From: radekholypublic at gmail.com (=?ISO-8859-1?Q?Radek_Hol=FD?=) Date: Fri, 13 Nov 2009 18:21:55 +0100 Subject: [PythonCE] Is PythonCE still active Message-ID: Hello, is PythonCE still active? Are you planning a new release? Thank you, Radek (I apologize for my English.) From knny.myer at gmail.com Fri Nov 13 23:53:51 2009 From: knny.myer at gmail.com (Kenny Meyer) Date: Fri, 13 Nov 2009 19:53:51 -0300 Subject: [PythonCE] Running PyCe 2.5 on a Linux Platform In-Reply-To: <3a0145150911121952w54906535g76adad58080f23f9@mail.gmail.com> References: <4afca537.c701be0a.75f3.ffffb0be@mx.google.com> <4AFCBCB5.8080208@murkworks.com> <3a0145150911121952w54906535g76adad58080f23f9@mail.gmail.com> Message-ID: <4afde3b5.1402be0a.62a7.2214@mx.google.com> On Fri, 13 Nov 2009 04:52:52 +0100 Alexandre Delattre wrote: > You can also give a try running the ppygui win32 port on top of wine, > it should be able to run and debug simple python/ppygui onto your > linux box. The idea is to install a python distribution in your wine > environment and import the ppygui-win32 library in this attachment > from there. > > Copy the ppygui directory into the Lib dir of your wine python setup > and try run your progams. > > See ya ;) > Alex Hi Alex, Thanks for your answer. It worked out fine! Speed is humble, but OK. It actually works great! Cheers, Kenny From coder_infidel at hotmail.com Sat Nov 14 04:45:40 2009 From: coder_infidel at hotmail.com (Luke Dunstan) Date: Sat, 14 Nov 2009 11:45:40 +0800 Subject: [PythonCE] Is PythonCE still active In-Reply-To: References: Message-ID: No, as far as I know the project is not active. Personally I haven't used a Windows Mobile-based PDA or phone for years (right now I am using Android), so I am not really interested anymore. If anyone wants to work on new releases then I can add them to the project as a developer. Best regards,Luke > Date: Fri, 13 Nov 2009 18:21:55 +0100 > From: radekholypublic at gmail.com > To: pythonce at python.org > Subject: [PythonCE] Is PythonCE still active > > Hello, > is PythonCE still active? Are you planning a new release? > Thank you, Radek > > (I apologize for my English.) > _______________________________________________ > PythonCE mailing list > PythonCE at python.org > http://mail.python.org/mailman/listinfo/pythonce -------------- next part -------------- An HTML attachment was scrubbed... URL: