About sizers..

2006-06-09 Thread Mario Lacunza
2.4.3 wxPython 2.6.1.2Pre -- Saludos / Best regards Mario Lacunza Vásquez Desarrollador de Software - Webmaster Desarrollador 2 Estrellas VS2005 Website: http://mlacunzav.cogia.net Email : mlacunza[AT]gmail[DOT]com Email : mario_lacunza[AT]yahoo[DOT]es Blog

Re: [wxPython-users] [ANN]UliPad 3.3 is released

2006-08-24 Thread Mario Lacunza
Hi,Is possible then you correct the path for download the sources Zip file?? I want to test this tool but I dont could donwload it...Thansk!2006/8/23, limodou < [EMAIL PROTECTED]>:What's it? It's an Editor based on wxPython. NewEdit is the old name, and UliPadis the new name. UliPad uses Mi

Re: [wxPython-users] [ANN]UliPad 3.3 is released

2006-08-24 Thread Mario Lacunza
Sorry, I correct me:Your link in the message not found, but the link in the web site work Ok.Thanks!2006/8/24, Mario Lacunza <[EMAIL PROTECTED] >:Hi,Is possible then you correct the path for download the sources Zip file?? I want to test this tool but I dont could donwload it...Thansk!200

Problems with PyGridTableBase

2006-09-08 Thread Mario Lacunza
ks in advance!! -- Mario Lacunza <[EMAIL PROTECTED]> # -*- coding: utf8 -*-# #Boa:Frame:frmClientes __version__='0.5' __autor__='Mario Lacunza Vasquez <[EMAIL PROTECTED]>' import wx import wx.grid import modGlobals from Conectar import Conectar import errores def c

[Fwd: Problems with PyGridTableBase]

2006-09-09 Thread Mario Lacunza
- Mensaje reenviado De: Mario Lacunza <[EMAIL PROTECTED]> Para: Lista Python Ing Asunto: Problems with PyGridTableBase Fecha: Sat, 09 Sep 2006 00:03:20 -0500 Hello, I attach two files:frmClientes and frmClientesNE. frmClientes charge a Grid with resume Costumers data

Writing python extensions for libburn & libisofs

2006-09-28 Thread mario . danic
Hello, If there is anyone familiar with python C api, and would like to get involved with writing python extensions for above two libs (http://libburn.pykix.org) please contact me. Kind regards, Mario -- http://mail.python.org/mailman/listinfo/python-list

Report options...

2007-03-17 Thread Mario Lacunza
-- Saludos / Best regards Mario Lacunza Vásquez Desarrollador de Software - Webmaster Linux Registered User #439179 Desarrollador 2 Estrellas VS2005 Website: http://mlacunzav[DOT]cogia[DOT]net Email : mlacunza[AT]gmail.com / mario_lacunza[AT]yahoo.es Blog : http

Report options...

2007-03-19 Thread Mario Lacunza
tu Edgy Eft 6.10 > Linux Kernel 2.6.17-11-386 > Gnome 2.16.1 > Python 2.4.4c1 > wxPython 2.8.1.1 Unicode > Python IDE: Ulipad 3.6 > Database: Firebird 2.0 Superserver > > -- > Saludos / Best regards > > Mario Lacunza Vásquez > Desarrollador de Software - Webmaste

Re: Code reformater?

2007-01-20 Thread Mario Wehbrink
o make it right? It may help to look at the settings of your editor. I think Vim (and surely emacs) can help you with that. (look at :help retab, paste, expandtab in (g)Vim) Mario -- Mario Wehbrink -- http://mail.python.org/mailman/listinfo/python-list

Error with OpenOffice

2006-04-19 Thread Mario Lacunza
? Mi configuracion/My config: Ubuntu Breezy 5.10 Linux Kernel 2.6.12-10-386 Python 2.4.2 wxPython 2.6.1.1Pre OpenOffice 2.0.1 -- Saludos / Best regards Mario Lacunza Vásquez Desarrollador de Software - Webmaster Desarrollador 2 Estrellas VS2005 Website: http://mlacunzav.cogia.net Emai

Ann: pyDia2Code

2006-05-03 Thread Mario Lacunza
Hello,This is a GUI program for Dia2Code lib under GPL licence: "Dia2Code basically reads a Dia diagram file that contains an UML class diagram and creates files in the language of choice that contain the bare bones of the classes represented in the diagram...""Generates code for: Ada, C, C+

Is it explicitly specified?

2008-02-03 Thread mario ruggier
strong reasons to not rely on this difference? Would it be maybe a little abusive of what a keyword arg actually is? mario -- http://mail.python.org/mailman/listinfo/python-list

List comprehension - NameError: name '_[1]' is not defined ?

2009-01-15 Thread mario ruggier
Hello, I would like to evaluate list comprehension expressions, from within which I'd like to call a function. For a first level it works fine but for second level it seems to lose the "_[1]" variable it uses internally to accumulate the results. Some sample code is: class GetItemEvaluator(object

Re: List comprehension - NameError: name '_[1]' is not defined ?

2009-01-15 Thread mario ruggier
On Jan 15, 12:29 pm, mario ruggier wrote: > Any ideas why? > > Note, i'd like that the first parameter to ts() is as independent as > possible from the context in expression context, a sort of independent > mini-template. Thus, the i,j enumerate counters would normally not

Re: List comprehension - NameError: name '_[1]' is not defined ?

2009-01-15 Thread mario ruggier
On Jan 15, 1:48 pm, bearophileh...@lycos.com wrote: > mario ruggier, that's a hack that you can forget. Your code can't be > read. Don't use list comps for that purpose. Write code that can be > read. Ya, agree with you whole-heartily, but then so are most optimizations

Re: List comprehension - NameError: name '_[1]' is not defined ?

2009-01-15 Thread mario ruggier
On Jan 15, 2:02 pm, Peter Otten <__pete...@web.de> wrote: > mario ruggier wrote: > > Hello, > > > I would like to evaluate list comprehension expressions, from within > > which I'd like to call a function. For a first level it works fine but > > f

Re: List comprehension - NameError: name '_[1]' is not defined ?

2009-01-15 Thread mario ruggier
offer you a nice dinner (including the beer!) somewhere, maybe at some py conference, but even remotely if that is not feasible... ;-) The upcoming 0.4 release will run on 2.4 thru to 3.0 -- you can have some fun with that one (the current 0.3 runs on 2.5 and 2.6). > -- > Steven Cheers, mario -- http://mail.python.org/mailman/listinfo/python-list

Re: List comprehension - NameError: name '_[1]' is not defined ?

2009-01-15 Thread mario ruggier
The listcomps exploration above was primarily an attempt (unsuccessful) to make this piece of code go a little faster: s = " text %(item)s text " acc = [] for value in iterator: some_dict["item"] = value acc.append(s % evaluator) "".join(acc) The item=value pair is essentially a loop vari

Re: List comprehension - NameError: name '_[1]' is not defined ?

2009-01-15 Thread mario ruggier
On Jan 15, 9:36 pm, Mark Wooding wrote: > mario ruggier writes: > > Some info on its security is at: > >http://evoque.gizmojo.org/usage/restricted/ > > Tell you what, if you find a security hole there (via exposed template > > source on a Domain(restricted=True) s

Re: List comprehension - NameError: name '_[1]' is not defined ?

2009-01-15 Thread mario ruggier
On Jan 15, 10:35 pm, ajaksu wrote: > On Jan 15, 1:56 pm, mario ruggier wrote: > > > As > > I mentioned in another thread, the real application behind all this is > > one of the *few* secure templating systems around. Some info on its > > security is at:http://evoqu

Re: List comprehension - NameError: name '_[1]' is not defined ?

2009-01-15 Thread mario ruggier
On Jan 15, 11:35 pm, Terry Reedy wrote: > Peter Otten wrote: > > List comprehensions delete the helper variable after completion: > > I do not believe they did in 2.4.  Not sure of 2.5.  There is certainly >   a very different implementation in 3.0 and, I think, 2.6.  OP > neglected to mention Pyt

Re: List comprehension - NameError: name '_[1]' is not defined ?

2009-01-15 Thread mario ruggier
On Jan 16, 2:30 am, ajaksu wrote: > On Jan 15, 8:21 pm, mario ruggier wrote: > > > OK! Here's a small script to make it easier... > > Thanks! I think I found a quick way around the restrictions (correct > me if I borked it), but I think you can block this example b

Re: List comprehension - NameError: name '_[1]' is not defined ?

2009-01-16 Thread mario ruggier
On Jan 16, 1:35 pm, ajaksu wrote: > On Jan 16, 5:09 am, mario ruggier wrote: > > > Laboriously doing all these > > checks on each expr eval will be very performance heavy, so I hope to > > be able to limit access to all these more efficiently. Suggestions? > > None

Re: List comprehension - NameError: name '_[1]' is not defined ?

2009-01-17 Thread mario ruggier
On Jan 17, 12:04 am, ajaksu wrote: > On Jan 16, 3:45 pm, mario ruggier wrote: > > > > '(x for x in ()).throw("bork")' > > > What is the potential security risk with this one? > > I don't see a concrete issue, just found it tempting... ra

Re: List comprehension - NameError: name '_[1]' is not defined ?

2009-01-17 Thread mario ruggier
Just to add that a further potential subversion possibility could have been to build the expr in some way from within a template, and then dynamically setting that string as the source of a new template with from_string=True. This is precisely the reason why **from within a template** evoque has ne

Re: List comprehension - NameError: name '_[1]' is not defined ?

2009-01-22 Thread mario ruggier
On Jan 16, 7:17 pm, Paul Rubin <http://phr...@nospam.invalid> wrote: > mario ruggier writes: > > All the above attempts will be blocked this way. Any other disallow- > > sub-strings to add to the list above? > > I think what you are trying to do is fundamentally hop

Re: Ideas to optimize this getitem/eval call?

2009-01-22 Thread mario g
On Sun, Jan 4, 2009 at 6:46 PM, Tino Wildenhain wrote: > mario wrote: >> >> On Jan 3, 7:16 am, Steven D'Aprano > cybersource.com.au> wrote: >> >>> I was about to make a comment about this being a security hole, >> >> Strange that you say th

Re: Emacs vs. Eclipse vs. Vim

2008-11-29 Thread Mario Testinori
other half talked them into it, and gave them the impression that "it was cool" while they were perfectly happy with their current choise (under windows for example, programmers notepad is a very nice editor, imho). Just my 2 cents. -- Mario -- http://mail.python.org/mailman/listinfo/python-list

Re: Emacs vs. Eclipse vs. Vim

2008-11-29 Thread Mario Testinori
>> Don't we have something like a poll to solve this peacefully ? >> cheers, >> Stef > >Polls are just popularity/fan contests. Even Ricky Martin could win one >of those. LOL -- Mario -- http://mail.python.org/mailman/listinfo/python-list

Re: Emacs vs. Eclipse vs. Vim

2008-12-01 Thread Mario Testinori
ui of an ide. After all, an ide is just a frontend to something ... > >Personally I also find high value in picking an editor that can be run >on a command-line terminal connection (e.g. when you're ssh'd into a >remote server), but that may be less important depending on wha

Installation of Py3.0rc1 fails on Mac OS X with bad locale

2008-11-01 Thread Mario Ruggier
lename ValueError: unknown locale: UTF-8 I think this issue is related to the (currently open) "Python fails silently on bad locale" bug: http://bugs.python.org/issue2173 How should this issue be worked around or dealt with? Should users on Mac OS X 10.5 change the default value of LC_CTYPE? To what? mario -- http://mail.python.org/mailman/listinfo/python-list

Re: plot for sale

2008-11-07 Thread Mario Testinori
R COPY >THIS LINKS: http://www.youtube.com/watch?v=k14WAzpANJc >http://groups.google.com/group/propertybg Unless you're breeding pythons there, you're offtopic. -- Mario -- http://mail.python.org/mailman/listinfo/python-list

ValueError: unknown locale: UTF-8

2008-05-31 Thread Mario Ruggier
n.framework/Versions/2.5/lib/ python2.5/locale.py", line 373, in _parse_localename raise ValueError, 'unknown locale: %s' % localename ValueError: unknown locale: UTF-8 >>> This is on open bug or is there more to it? Regards, mario -- http://mail.python.org/mailman/listinfo/python-list

Re: [wxpython-users] ANN: wxPython 2.8.8.0

2008-06-25 Thread Mario Lacunza
Hello Robin, Are available repos for Ubuntu Hardy?? 2008/6/25 Robin Dunn <[EMAIL PROTECTED]>: > Announcing > -- -- Saludos / Best regards Mario Lacunza Consultor de Sistemas - Webmaster Email: mlacunza [AT] gmail [DOT] com Lima - Peru -- http://mail.python.org/mail

Pickle problem

2008-04-18 Thread Mario Ceresa
ata?" print pickle.loads(savedData) ---- Thank you for any help! Mario -- http://mail.python.org/mailman/listinfo/python-list

Re: Pickle problem

2008-04-21 Thread Mario Ceresa
ure optimization is the root of all evil", .... :) Thanks a lot, Mario On Fri, Apr 18, 2008 at 8:00 PM, George Sakkis <[EMAIL PROTECTED]> wrote: > On Apr 18, 11:55 am, "Mario Ceresa" <[EMAIL PROTECTED]> wrote: > > Hello everybody: > > I'd like to u

Re: Object Relational Mappers are evil (a meditation)

2009-10-16 Thread mario ruggier
On Oct 5, 4:25 pm, Aaron Watters wrote: > Occasionally I fantasize about making a non-trivial change > to one of these programs, but I strongly resist going further > than that because the ORM meatgrinder makes it somewhere > between extremely unpleasant and impossible to make any > non-trivial c

Re: Web development with Python 3.1

2009-11-03 Thread mario ruggier
With respect to to original question regarding web frameworks + database and Python 3, all the following have been available for Python 3 since the day Python 3.0 was released: QP, a Web Framework http://pypi.python.org/pypi/qp/ Durus, a Python Object Database (the "default" in qp, for user sessi

Trying to use sets for random selection, but the pop() method returns items in order

2009-07-01 Thread Mario Garcia
Im trying to use sets for doing statistics from a data set. I want to select, 70% random records from a List. I thougth set where a good idea so I tested this way: c = set(range(1000)) for d in range(1000): print c.pop() I was hoping to see a print out of random selected numbers from 1 to 10

Re: Trying to use sets for random selection, but the pop() method returns items in order

2009-07-01 Thread Mario Garcia
ointed out. Conceptually something like this: population = range(100) training = random.sample(population,70) validation = set(population).difference(set(training)) But I think this is more costly Thanks Again Mario -- http://mail.python.org/mailman/listinfo/python-list

Re: Trying to use sets for random selection, but the pop() method returns items in order

2009-07-02 Thread Mario Garcia
pop(), remove from the population a certain number of elements at random. In the docs pop is defined as: Remove and return an arbitrary element from the set. My mistake: arbitrary is not the same as random :( Mario -- http://mail.python.org/mailman/listinfo/python-list

Re: Question on multiple python environments in Apache

2010-10-25 Thread Mario Miri
Why wouldn't you use multiple apache instances? On Fri, Oct 22, 2010 at 11:28 PM, Jeffrey Gaynor wrote: > I have several different versions of a web app that run under Apache. The > issue is that I need to have several different configurations available > under several environments (such as Djang

Re: Land Of Lisp is out

2010-10-28 Thread Mario Miri
Why not? Java language may be dying, but I don't think Java virtual machine is. On Thu, Oct 28, 2010 at 9:59 AM, Lawrence D'Oliveiro wrote: > In message > <3fe80ac4-b595-4bcb-96b9-9138b1ec5...@l17g2000yqe.googlegroups.com>, > TheFlyingDutchman wrote: > > > On Oct 27, 4:55 pm, Lawrence D'Oliveiro

Secure ssl connection with wrap_socket

2011-07-05 Thread Andrea Di Mario
r: urllib2.URLError: It works only with CERT_NONE (the default) but with this option i could access to the service in insicure mode. Have you some suggestions for my service? Thanks. Regards. -- Andrea Di Mario -- http://mail.python.org/mailman/listinfo/python-list

Notifications when process is killed

2011-08-01 Thread Andrea Di Mario
to do this? Thanks, regards. -- Andrea Di Mario -- http://mail.python.org/mailman/listinfo/python-list

Notifications when process is killed

2011-08-01 Thread Andrea Di Mario
Thanks Thomas, it is what i'm looking for. Regards -- Andrea Di Mario -- http://mail.python.org/mailman/listinfo/python-list

Notifications when process is killed

2011-08-02 Thread Andrea Di Mario
e signal > number that caused the termination; you can then log anything you > want. Hi, i understand, i've read that SIGKILL can't catch, but nothing about SIGTERM. If i use SIGCHLD, i will have difficult when parent receive a SIGTERM, or not? Thanks, regards. -- Andrea Di

Re: Is there something like head() and str() of R in python?

2017-11-20 Thread Mario R. Osorio
On Sunday, November 19, 2017 at 2:05:12 PM UTC-5, Peng Yu wrote: > Hi, R has the functions head() and str() to show the brief content of > an object. Is there something similar in python for this purpose? > > For example, I want to inspect the content of the variable "train". > What is the best wa

Re: Python homework

2017-12-07 Thread Mario R. Osorio
On Tuesday, December 5, 2017 at 8:33:52 PM UTC-5, nick martinez wrote: > I have a question on my homework. My homework is to write a program in which > the computer simulates the rolling of a die 50 > times and then prints > (i). the most frequent side of the die > (ii). the average die value o

Re: for info

2018-02-01 Thread Mario R. Osorio
On Wednesday, January 31, 2018 at 10:55:59 AM UTC-5, M.Haroon Ali wrote: > from where we learn python for free of cost. i am begineer in python.plzz > help me And after you're done with the OFFICIAL tutorials; there thousands of excellent free tutorials online. Just do some research. If you're

Re: Can this be easily done in Python?

2016-09-28 Thread Mario R. Osorio
I'm not sure I understand your question, but I 'think' you area talking about executing dynamically chunks of code. If that is the case, there are a couple of ways to do it. These are some links that might interest you: http://stackoverflow.com/questions/3974554/python-how-to-generate-the-code-o

Re: Build desktop application using django

2016-10-16 Thread Mario R. Osorio
On Sunday, October 16, 2016 at 1:42:23 PM UTC-4, Ayush Saluja wrote: > Hello I want to build a desktop application which retrieves data from server > and stores data on server. I have basic experience of python and I dont know > how to build that thing. I agree with Martin's suspicion on you hav

Re: Build desktop application using django

2016-10-17 Thread Mario R. Osorio
On Monday, October 17, 2016 at 1:00:14 PM UTC-4, John Gordon wrote: > In > ayuchitsalu...@gmail.com writes: > > > Hello I want to build a desktop application which retrieves data from > > server and stores data on server. I have basic experience of python and > > I dont know how to build that th

Re: need some kind of "coherence index" for a group of strings

2016-11-03 Thread Mario R. Osorio
I don't know much about these topics but, wouldn't soundex do the job?? On Thursday, November 3, 2016 at 12:18:19 PM UTC-4, Fillmore wrote: > Hi there, apologies for the generic question. Here is my problem let's > say that I have a list of lists of strings. > > list1:#strings are sort of s

Re: The hardest problem in computer science...

2017-01-06 Thread Mario R. Osorio
On Friday, January 6, 2017 at 10:37:40 AM UTC-5, Ethan Furman wrote: > On 01/06/2017 05:03 AM, Steve D'Aprano wrote: > > > what do we call the vertical and horizontal line elements? I want to make > > them configurable, which means the user has to be able to pass an argument > > that specifies the

Re: The hardest problem in computer science...

2017-01-06 Thread Mario R. Osorio
On Friday, January 6, 2017 at 8:45:41 PM UTC-5, Mario R. Osorio wrote: > On Friday, January 6, 2017 at 10:37:40 AM UTC-5, Ethan Furman wrote: > > On 01/06/2017 05:03 AM, Steve D'Aprano wrote: > > > > > what do we call the vertical and horizontal line elemen

Re: Guido van Rossum resigns as Python leader

2018-07-13 Thread Mario R. Osorio
On Friday, July 13, 2018 at 11:16:44 AM UTC-4, Bart wrote: > On 13/07/2018 13:33, Steven D'Aprano wrote: > > On Fri, 13 Jul 2018 11:37:41 +0100, Bart wrote: > > > >> (** Something so radical I've been using them elsewhere since forever.) > > > > And you just can't resist making it about you and y

Re: Moderation and Usenet

2016-04-10 Thread Mario R. Osorio
hmmm...He made an extremely kind comment a couple of days ago. It called my attention because is the first one ever (coming from) ... Now I'm thinking he might have just been sarcastic. And BTW I myself have given a couple of sour responses every now and then. I guess we all have our bad days o

Re: Moderation and Usenet

2016-04-10 Thread Mario R. Osorio
On Sunday, April 10, 2016 at 2:01:00 PM UTC-4, Terry Reedy wrote: > On 4/10/2016 1:05 PM, Ethan Furman wrote: > > > If you see offensive posts from him on the Usenet side please do not > > respond. > > Just a reminder for those who, like me, prefer a newsgroup interface for > python-list: gmane

Re: Fraud

2016-04-16 Thread Mario R. Osorio
Mel: Portuguese for honey Drosis: from Greek hidrōs; to sweat -- https://mail.python.org/mailman/listinfo/python-list

Re: datetime vs Arrow vs Pendulum vs Delorean vs udatetime

2016-08-06 Thread Mario R. Osorio
... so you decided to start the post already hijacked by yourself ... very clever!! On Friday, August 5, 2016 at 8:19:53 PM UTC-4, bream...@gmail.com wrote: > On Friday, August 5, 2016 at 7:15:37 PM UTC+1, DFS wrote: > > On 8/4/2016 6:41 PM, breamore...@gmail.com wrote: > > > Fascinating stuff h

Re: help me in a program in python to implement Railway Reservation System using file handling technique.

2018-11-26 Thread Mario R. Osorio
On Saturday, November 24, 2018 at 1:44:21 AM UTC-5, Chris Angelico wrote: > On Sat, Nov 24, 2018 at 5:36 PM wrote: > > > > hello all, > > please hepl me in the above program. python to implement Railway > > Reservation System using file handling technique. > > > > System should perform below ope

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 > looking GUI (Wind

Re: Recommendations for a novice user.

2019-01-08 Thread Mario R. Osorio
On Wednesday, January 2, 2019 at 1:05:44 PM UTC-5, Hüseyin Ertuğrul wrote: > I don't know the software language at all. What do you recommend to beginners > to learn Python. > What should be the working systematic? How much time should I spend every day > or how much time should I spend on a dail

Re: How do I get a python program to work on my phone?

2019-01-30 Thread Mario R. Osorio
You might want to check this project: https://pybee.org/ I've never used it but it shows promising. BTW, I'm a diabetic myself and I would be very thankful if you could share your application. I'm currently using 2 Android apps: StickBuddy offers a system to keep track of both where you pinch

Re: Python program to phone?

2019-02-05 Thread Mario R. Osorio
Hi there Steve. Did you check BeeWare? (https://pybee.org/) -- https://mail.python.org/mailman/listinfo/python-list

Re: Python program to phone?

2019-02-08 Thread Mario R. Osorio
You will need to have java. BeeWare's VOC tool, a transpiler from python to java, will do all the work for you so you don't even have know anything about java, except installing and setting it up for your environment Dtb/Gby === Mario R. Osorio B.A.S. of Information Technolo

Re: Python program to phone?

2019-02-08 Thread Mario R. Osorio
I am not an expert in BeeWare (I've never used it) but I've read a good portion of their documentation and find it very interesting to say the least. I am looking forward using it in the very near future. On Fri, Feb 8, 2019 at 11:06 AM Mario R. Osorio wrote: > You will need

Re: help plz

2019-05-14 Thread Mario R. Osorio
On Monday, May 13, 2019 at 8:32:38 AM UTC-4, Tristan Cribaro wrote: > [image: image.png]so I have a project I have to work on that is due > tomorrow for a lot of points towards my grade. The issue here is I've been > trying to download Pillow and simple audio for my project and I keep > getting the

Re: Do I need a parser?

2019-07-02 Thread Mario R. Osorio
On Saturday, June 29, 2019 at 8:40:06 AM UTC-4, josé mariano wrote: > Dear all, > > I'm sure that this subject has been addressed many times before on this > forum, but my poor knowledge of English and of computer jargon and concepts > results on not being able to find the answer i'm looking for

Re: Congratulations to @Chris

2019-11-04 Thread Mario R. Osorio
On Thursday, October 24, 2019 at 4:29:59 PM UTC-4, Chris Angelico wrote: > On Fri, Oct 25, 2019 at 7:20 AM DL Neil via Python-list > wrote: > > > > Chris Angelico: [PSF's] 2019 Q2 Community Service Award Winner > > http://pyfound.blogspot.com/2019/10/chris-angelico-2019-q2-community.html > > > > .

Re: A small quiz

2020-01-24 Thread Mario R. Osorio
On Thursday, January 23, 2020 at 3:54:56 AM UTC-5, Z wrote: > what is PLR? PLR: Private Label Rights (https://en.wikipedia.org/wiki/Private_label_rights) -- https://mail.python.org/mailman/listinfo/python-list

Re: IDE recommendation please

2005-10-23 Thread Gian Mario Tagliaretti
ython out of the box. Suggestions for plugins for Eclipse > would also be nice. I use wingIDE and as Alex said before is the best python IDE ever... cheers -- Gian Mario Tagliaretti PyGTK GUI programming http://www.parafernalia.org/pygtk/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Python gui

2005-11-06 Thread Gian Mario Tagliaretti
Philippe C. Martin wrote: > Is wxWidget now part of python ? or will it be ? No, and *I hope* that if another toolkit has to replace Tkinter (will never happen?) will be PyGTK... :) cheers -- Gian Mario Tagliaretti PyGTK GUI programming http://www.parafernalia.org/pygtk/ -- h

Re: I need Motivation

2005-11-06 Thread Gian Mario Tagliaretti
Alex Martelli wrote: > Not without knowing more about your motivations for starting Python in > the first place... Alex, maybe trolling in this list? :) > Alex ciao -- Gian Mario Tagliaretti PyGTK GUI programming http://www.parafernalia.org/pygtk/ -- http://mail.python.org/mailman

Re: pcm format to wav...

2005-11-28 Thread GIan Mario Tagliaretti
On Mon, 28 Nov 2005 18:15:25 +0100, [EMAIL PROTECTED] wrote: > I have WinXP. Bad for you :) > I want to convert my PySonic recorded (raw) pcm format files to wav > files. How can I do it ? You can use -> http://www.pymedia.org/ cheers -- Tagliaretti Gian Mario PyGTK GUI prog

Re: How to make executable file ?

2005-01-02 Thread Gian Mario Tagliaretti
u see the dimension of the files... cheers -- Gian Mario Tagliaretti PyGTK GUI programming http://www.parafernalia.org/pygtk/ -- http://mail.python.org/mailman/listinfo/python-list

Re: [perl-python] 20050121 file reading & writing

2005-01-22 Thread Gian Mario Tagliaretti
wrong > [...] Maybe you didn't get the fact the you won't see a flame starting between python people and perl friends? throw yourself somewhere and... Xah.flush() -- Gian Mario Tagliaretti PyGTK GUI programming http://www.parafernalia.org/pygtk/ -- http://mail.python.org/mailman/listinfo/python-list

Re: [perl-python] 20050124 classes & objects

2005-01-24 Thread Gian Mario Tagliaretti
Chris Mattern wrote: > > It doesn't have OO, but it emulates in software! > Better go with python, which has hardware OO. :-) Chris don't feed the troll -- http://mail.python.org/mailman/listinfo/python-list

Need help with pushing technology ... and a bit more ...

2014-01-27 Thread Mario R. Osorio
u confess a solution once I figure out what are you talking about :) I will really appreciate and and all comments, ideas and recommendations … even epithets! Thanks a lot in advanced! Mario R. Osorio -- https://mail.python.org/mailman/listinfo/python-list

Re: Calculator Problem

2014-02-04 Thread Mario R. Osorio
On Sunday, February 2, 2014 4:16:44 PM UTC-5, Charlie Winn wrote: > Hey Guys i Need Help , When i run this program i get the 'None' Under the > program, see what i mean by just running it , can someone help me fix this > > > > def Addition(): > > print('Addition: What are two your numbers?

Re: me, my arm, my availability ...

2016-01-14 Thread Mario R. Osorio
Just get better Laura... -- https://mail.python.org/mailman/listinfo/python-list

Re: Question about how to do something in BeautifulSoup?

2016-01-22 Thread Mario R. Osorio
I think you'd do better using the pyparsing library On Friday, January 22, 2016 at 9:02:00 AM UTC-5, inhahe wrote: > I hope this is an appropriate mailing list for BeautifulSoup questions, > it's been a long time since I've used python-list and I don't remember if > third-party modules are on to

Re: Make a unique filesystem path, without creating the file

2016-02-15 Thread Mario R. Osorio
I would create a RAM disk (http://www.cyberciti.biz/faq/howto-create-linux-ram-disk-filesystem/), generate all the path/files I want with any, or my own algorithm, run the tests, unmount it, destroy it, be happy ... Whats wrong with that?? AFAIK, RAM disks do not get logged, and even if they do

Re: [Off-topic] Requests author discusses MentalHealthError exception

2016-02-29 Thread Mario R. Osorio
On Saturday, February 27, 2016 at 4:39:12 AM UTC-5, Steven D'Aprano wrote: > The author of Requests, Kenneth Reitz, discusses his recent recovery from a > MentalHealthError exception. > > http://www.kennethreitz.org/essays/mentalhealtherror-an-exception-occurred > > Although the connection to Pyt

Re: The Real-Time Use of Python in Data Science World!

2016-03-04 Thread Mario R. Osorio
On Friday, February 26, 2016 at 2:36:26 PM UTC-5, Anita Goyal wrote: > This course will help you to expertise the usage of Python in Data Science > world. > > Carter your Python Knowledge so that it can be utilized to get the Insights > of Data using Methodologies and Techniques of Data Science.

Re: ANN: Wing IDE 5.1.10 released

2016-03-04 Thread Mario R. Osorio
On Friday, February 26, 2016 at 9:57:21 AM UTC-5, Wingware wrote: > Hi, > > Wingware has released version 5.1.10 of Wing IDE, our cross-platform > integrated development environment for the Python programming language. > > Wing IDE features a professional code editor with vi, emacs, visual > st

Re: Case Statements

2016-03-15 Thread Mario R. Osorio
On Tuesday, March 15, 2016 at 9:55:27 PM UTC-4, jj0ge...@gmail.com wrote: > You have apparently mistaken me for someone who's worried. I don't use > Python, I was just curious as to why a construct that is found, not only to > be useful in 95% of other languages, but is generally considered more

Re: Interpretation

2016-03-26 Thread Mario R. Osorio
On Saturday, March 26, 2016 at 5:59:04 AM UTC-4, Dennis Ngeno wrote: > My programs have never combile, they keep telling me , systax error even > after copy pasting No pun intended, but I hope you are not typing your code like you typed your message. OTOH, python code is not supposed to be compi

Re: Anyone know the solution

2014-10-28 Thread Mario R. Osorio
On Tuesday, October 28, 2014 12:25:13 AM UTC-4, Terry Reedy wrote: > On 10/27/2014 11:10 AM, emmanuel...@gmail.com wrote: > > > THIS IS THE LIST OF BOY NAMES > > Jacob > > ... > > Writing hundreds of unnecessary lines at minimum inconsiderate. Please > don't do it. > > -- > Terry Jan Reedy

Re: Best approach to create humongous amount of files

2015-05-21 Thread Mario R. Osorio
On Wednesday, May 20, 2015 at 2:09:59 PM UTC-4, Denis McMahon wrote: > On Wed, 20 May 2015 17:14:15 +0530, Parul Mogra wrote: > > > Hello everyone, > > My objective is to create large amount of data files (say a million > > *.json files), using a pre-existing template file (*.json). Each file > >

Re:

2015-05-28 Thread Mario R. Osorio
Chris. Este grupo es en Ingles. La verdad no se si existen grupos en español, pero juraria que si. Entiendo que quieres enseñarle python a tu hijo. Aca te envio algunos recursos. Espero que te sirvan: https://silvercorp.wordpress.com/2012/05/27/pasos-de-instalacion-de-python-en-windows/ http:/

Re:

2015-05-29 Thread Mario R. Osorio
?Quien es Usted y por que pregunta? Dtb/Gby === Mario R. Osorio “If I had asked people what they wanted, they would have said faster horses.” ― Henry Ford On Fri, May 29, 2015 at 1:33 AM, Laura Creighton wrote: > Sabe usted acerca de estas páginas? > https://mail.python.org/m

Re: Pandas SQL Update

2015-06-16 Thread Mario R. Osorio
You are not specifying how are you doing the comparison, but here is my 2 cents: Import the foxpro tables into the MySQL database and then you'll be able to do your update in a single SQL statement, which, even for that many records would take some only a few seconds, then delete th imported da

Twisted Perspective Broker: get client ip

2011-09-14 Thread Andrea Di Mario
= checkers.FilePasswordDB('passwords.txt', caseSensitive=True, cache=True) p.registerChecker(c) factory = pb.PBServerFactory(p) reactor.listenSSL(int(PORT), factory, myContextFactory) reactor.run() -- Andrea Di Mario -- http://mail.python.org/mailman/listinfo/python-list

[ANN] PyGooCanvas 0.4.0

2006-08-25 Thread Gian Mario Tagliaretti
I am pleased to announce version 0.4.0 of the Python bindings for Goocanvas. This is the first release and it's available at: https://developer.berlios.de/projects/pygoocanvas/ Contributors for this release: == - Gian Mario Tagliaretti (module creation, c

Re: evaluating gui modules, any experience on tkinter?

2006-12-02 Thread Gian Mario Tagliaretti
ort, imaging, documentation. agreed > Then there are two schools: PyQT and wxPython - you completely forgot pygtk. or you didn't want to mention it :) > both very easy to learn I think that pygtk is the easiest ciao -- Gian Mario Tagliaretti -- http://mail.python.org/mailman/listinfo/python-list

Re: Is PyGTK only for local - not web?

2006-12-08 Thread Gian Mario Tagliaretti
walterbyrd wrote: > I have noticed that there is also pygtk-web project, I suppose that is > what you use for the web? It's the pygtk web site as you see it here www.pygtk.org cheers -- Gian Mario Tagliaretti -- http://mail.python.org/mailman/listinfo/python-list

Re: can't instantiate following inner class

2006-12-27 Thread Gian Mario Tagliaretti
.g.: one = One(a, b) but python will silently ignore them and you probably won't like it... cheers -- Gian Mario Tagliaretti -- http://mail.python.org/mailman/listinfo/python-list

Re: can't instantiate following inner class

2006-12-28 Thread Gian Mario Tagliaretti
arguments? sorry, my bad, that beauvoir was python 2.2 it was fixed in python 2.3 (I didn't know since I always override __init__) and it will raise a TyoeError as you have pointed out. cheers -- Gian Mario Tagliaretti -- http://mail.python.org/mailman/listinfo/python-list

<    1   2   3   4   >