Re: python simplejson decoding

2011-03-02 Thread Felipe Vinturini
Hi Arthur, Maybe this link helps you: http://www.doughellmann.com/PyMOTW/json/ I used it to learn JSON. =o) Regards, Felipe. On Wed, Mar 2, 2011 at 11:24 AM, Peter Otten <__pete...@web.de> wrote: > Arthur Mc Coy wrote: > > > Hi all, > > > > > > > > I'm

Re: FW: AYUDA PORFAVOR. HELP ME, PLEASE. SCRIP EXPORT TO .TM

2011-05-09 Thread Felipe Vinturini
On Mon, May 9, 2011 at 6:05 AM, EnyGmA Más Pro wrote: > aYudenme porfavor. Gracias. > > -- > From: jean_p...@hotmail.es > To: python-list@python.org; h...@python.org; > pycolom...@listas.el-directorio.org > Subject: HELP ME, PLEASE. SCRIP EXPORT TO .TM > Date: Mon, 9

Re: Me ayudas? Hi . I need aid in creating script to blender.

2011-05-12 Thread Felipe Vinturini
2011/5/12 Jean Carlos Páez Ramírez > Hello. > > The attached file is script of blender fact in python that .tmb serves to > concern archives (secondly attached file), unloadings to blender and uses > script and concerns the second file that you shipment you see so that it. > Everything can be pu

Re: Me ayudas? Hi . I need aid in creating script to blender.

2011-05-12 Thread Felipe Vinturini
2011/5/12 Jean Carlos Páez Ramírez > To ok there is no problem friend, of all ways thanks, I will see that I > can do, nor in the pages Web of blender they answer to me. > > Thanks friend. > > Regads, > > Jean P. > > -- > From: felipe.vintur...@gmail.com > Date: Thu,

Re: Cursor.fetchall

2011-11-28 Thread Felipe Vinturini
Hi Jayron, Instead of using "Q" to loop over the result, use: "dbcursor". resp = dbcursor.fetchall() I hope it helps. Regards, Felipe. On Mon, Nov 28, 2011 at 9:54 AM, Jayron Soares wrote: > Hi guys! > > I'm stuck at a problem, when I run the follow code: > > http://pastebin.com/4Gd9V325 > >

Re: Is there any way to SSH from Python ?!

2010-12-13 Thread Felipe Vinturini
On Mon, Dec 13, 2010 at 3:11 AM, Darshak Bavishi wrote: > > i am trying from last week but no luck !! > > one thing only found that pexpect it not useful in windows > > pls help out of this > > On Mon, Dec 13, 2010 at 10:39 AM, Chris Rebert wrote: > >> On Sun, Dec 12, 2010 at 9:03 PM, Darshak Bav

Re: process cannot access the file because it is being used by other process

2010-06-21 Thread Felipe Vinturini
On Mon, Jun 21, 2010 at 7:18 AM, shanti bhushan wrote: > On Jun 21, 2:15 pm, Tim Golden wrote: > > On 21/06/2010 09:23, shanti bhushan wrote: > > > > > i am using below code ,it works fine on ordinary python 26 ,but when i > > > use this script in my python testing tool it gives me message "proce

Questions: While And List Comprehension

2010-11-10 Thread Felipe Vinturini
Hi Folks, I am quite new to python and I don't have a lot of experience with it yet. I have two simple questions: 1. Is there a way to limit the number of times a list comprehension will execute? E.g. I want to read from input only 5 values, so I would like something like (the values between # #

Re: Questions: While And List Comprehension

2010-11-11 Thread Felipe Vinturini
On Thu, Nov 11, 2010 at 6:10 AM, Peter Otten <__pete...@web.de> wrote: > James Mills wrote: > > > On Thu, Nov 11, 2010 at 11:01 AM, alex23 wrote: > >> +1 on this approach. Clear and obvious and not reliant on any library > >> modules other than sys. > >> > >> itertools, what WAS I thinking? :) >