v3.5.1 - msi download

2015-12-21 Thread Renato Emanuel Dysangco
hello is an **.msi* version of your *Python 3.5.1 (32 bit)* in the pipeline soon? thanks for your time -- https://mail.python.org/mailman/listinfo/python-list

Python Brasil [10] - Call for papers

2014-08-09 Thread Renato Oliveira
> and others! Thanks and see you in Porto de Galinhas! Renato Oliveira @_renatooliveira <http://twitter.com/_renatooliveira> Labcodes - www.labcodes.com.br -- https://mail.python.org/mailman/listinfo/python-list

Re: [Python Brasil 10] Registrations are now open!

2014-07-14 Thread Renato Oliveira
have* Renato Oliveira @_renatooliveira <http://twitter.com/_renatooliveira> Labcodes - www.labcodes.com.br On Mon, Jul 14, 2014 at 11:53 PM, Renato Oliveira < renatooliveira@gmail.com> wrote: > Hi all, > > The call for papers are now open! > > http://2014.py

Re: [Python Brasil 10] Registrations are now open!

2014-07-14 Thread Renato Oliveira
Hi all, The call for papers are now open! http://2014.pythonbrasil.org.br/dashboard/proposals/ We're going to hava an English Track, so feel free to submit your proposals! See you at Python Brasil 10! Renato Oliveira @_renatooliveira <http://twitter.com/_renatooliveira&g

[Python Brasil 10] Registrations are now open!

2014-07-07 Thread Renato Oliveira
: http://2014.pythonbrasil.org.br/venue Please, help us by spreading the word :) Thanks Renato Oliveira @_renatooliveira <http://twitter.com/_renatooliveira> Labcodes - www.labcodes.com.br -- https://mail.python.org/mailman/listinfo/python-list

Python Brasil[10]

2014-06-13 Thread Renato Oliveira
Hi all! My name is Renato Oliveira, I'm board member of Python Brazil Association and co-chair of the next Python Brasil Conference <http://loogi.ca/MKLEOHj31>. This year the conf is taking place in Porto de Galinhas, Pernambuco <http://loogi.ca/0YqHyHj31> (for ten times in a row

Re: Password validation security issue

2014-03-02 Thread Renato
27;m willing to learn more about security matters. One last thing, about my original question. So, the only way of encapsulating a Python script content is to code a simple binary program to call it? Regards, Renato Em sábado, 1 de março de 2014 14h49min49s UTC-3, Renato escreveu: >

Password validation security issue

2014-03-01 Thread Renato
Hello everybody, I implemented a password validation with a Python 2.7.5 script in OpenSUSE 13.1. The user calls it passing 'login' and 'password' as arguments. I made a dictionary in the format hashtable = {'login':'password'} and I use this hash table to compare the 'login' and 'password' that

Re: Problem importing libraries installed with PIP in Eclipse

2014-02-17 Thread Renato Vernucio
Hi Fabio, I wish I could use the latest PyDev, unfortunately I need Aptana studio. It's a pity they won't let us install individual packages from their bundle. If they did, I could install only the other packages and install PyDev separately. Thanks for your help once again. You

Re: Problem importing libraries installed with PIP in Eclipse

2014-02-16 Thread Renato
It's solved now, oh my god I was so stupid! I created a package named "pybrain" for testing PyBrain module, so obviously when I tryed to import something from PyBrain library, Python would import all modules from this personal package I created. The problem was not being reproduced outside Eclip

Re: Problem importing libraries installed with PIP in Eclipse

2014-02-16 Thread Renato
Em sexta-feira, 14 de fevereiro de 2014 01h30min05s UTC-2, Renato escreveu: > Hi guys, I'm using Python 2.7.5 64 bits and I have a problem when importing > libraries that were installed via PIP when importing them inside Eclipse > (version 4.3.1). Outside Eclipse (directly in

Problem importing libraries installed with PIP in Eclipse

2014-02-13 Thread Renato
Hi guys, I'm using Python 2.7.5 64 bits and I have a problem when importing libraries that were installed via PIP when importing them inside Eclipse (version 4.3.1). Outside Eclipse (directly in Python's shell) everything works fine, here is an example: >>> import numpy

Automation P-I-D

2013-11-23 Thread Renato Barbosa Pim Pereira
I mentioned some time ago about a program to calculate PID constants for tuning controllers, follow the link to its online version algorithm for anyone interested http://pastebin.com/wAqZmVnR I thank you for the help I received from many here on the list. ;D -- https://mail.python.org/mailman/list

Web framework

2013-11-21 Thread Renato Barbosa Pim Pereira
I'm thinking of porting a Python application that uses numpy for web, basically would like to upload a user-defined data, perform the calculations with numpy and plot charts with the general structure of a site such as a blog for example, I have studied a bit of django and web2py, but I wonder if t

Re: Automation

2013-11-13 Thread renato . barbosa . pim . pereira
Thanks for all the help, I finished the program, follow the download link and a brief explanation of the same (in Portuguese, my native language), I apologize again for my bad english and any inconvenience that I have generated. http://mundodacana.blogspot.com.br/2013/11/programa-para-calculo-de

Re: Automation

2013-11-03 Thread renato . barbosa . pim . pereira
http://pastebin.com/N9dgaHTx With this program I can read a csv file with 3 columns, in one of these columns I need to read the value more high and multiply by 0.632 and with result, search in the same column by a value that aproximate with this result, and then return the vector position. --

Automation

2013-11-03 Thread Renato Barbosa Pim Pereira
I have one .xls file with the values of PV MV and SP, I wanna to calculate Kp Ki Kd with python from this file, can anyone give me any suggestion about how can I do this? From now, thanks. -- https://mail.python.org/mailman/listinfo/python-list

PID tuning.

2013-10-14 Thread Renato Barbosa Pim Pereira
I am looking for some software for PID tuning that would take the result of a step response, and calculates Td, Ti, Kp, any suggestion or hint of where to start?, thanks. -- https://mail.python.org/mailman/listinfo/python-list

Tornado with cgi form

2013-04-17 Thread Renato Barbosa Pim Pereira
*I installed tornado and he is functional, but when I execute the following script:* import tornado.ioloop import tornado.web import cgi class MainHandler(tornado.web. RequestHandler): form = cgi.FieldStorage() # parse form data print('Content-type: text/html\n')#

Python with Apache

2013-04-15 Thread Renato Barbosa Pim Pereira
I am trying to execute cgi101.py: #!/usr/bin/python import cgi form = cgi.FieldStorage() # parse form data print('Content-type: text/html\n')# hdr plus blank line print('Reply Page')# html reply page if not 'user' in form: print('Who are you?') else: print

IDE for GUI Designer

2013-04-04 Thread Renato Barbosa Pim Pereira
Guys, is this, I wonder if there is an IDE with native support for the development of GUI's such as Netbeans with Swing, Visual Basic, etc., already tested the Boa Constructor, and PyQt, but did not like what I'm looking for is an IDE "all in one", ie power encode and draw the screens of the progra

Re: Tkinter

2013-04-02 Thread Renato Barbosa Pim Pereira
That gives people context for your responses. > > On Tue, Apr 2, 2013 at 11:48 AM, Renato Barbosa Pim Pereira < > renato.barbosa.pim.pere...@gmail.com> wrote: > >> Sorry for my inconsistence: >> >> I need a textbox to get one number and pass for variable

Tkinter

2013-04-02 Thread Renato Barbosa Pim Pereira
I need to create a button and a text box follows the text box to enter a number, and this number is expected to create the same screen text boxes, and these text boxes need to be referenced, ie if I enter 30 in the first text box and click the button to be created 30 text boxes so that I can then "

python, threading and a radio timer

2006-10-30 Thread Renato
nt without delving into complex daemon architectures? So, rather than asking for code, I'm looking for guidance - this is a didactic experience! Cheers, Renato -- http://mail.python.org/mailman/listinfo/python-list

Re: items in an array

2006-04-19 Thread Renato
>>> list_array = ['aaa','bbb','ccc'] >>> for item in list_array: ... print item + ',', ... aaa, bbb, ccc, (notice the comma at the end of the print statement: this causes the suppression of the automatic newline) Is this what you nee

Re: Java Developer Exploring Python

2006-04-18 Thread Renato
You don't actually *need* a libglade/pyGtk IDE: glade will be more than enough :-) By its very nature glade will enable you to design the GUI and define the signals. Then you'll load the glade file in python, and use whatever editor you feel comfortable with. -- Have fun, Rena

Re: Which GUI toolkit is THE best?

2006-03-22 Thread Renato
Hardly a showstopper: gtk works now (with X11), and will work even better soon (native). :-) -- Ciao, Renato -- http://mail.python.org/mailman/listinfo/python-list

Re: Python Indentation Problems

2006-02-26 Thread Renato
shifting text with < or > it moves 4 spaces. -- bye, Renato -- http://mail.python.org/mailman/listinfo/python-list

Re: installing python on a server?

2006-02-10 Thread Renato
other questions before. On systems with package management (pretty much all of them, except Slack) install is a matter of a few commands. And you can automate it, obviously. -- bye, Renato -- http://mail.python.org/mailman/listinfo/python-list

Re: Guido at Google

2005-12-22 Thread Renato
Python, too. So RedHat, too, has a big interest in Python :-) -- Renato Ramonda -- http://mail.python.org/mailman/listinfo/python-list

Re: Is there an equivalent to Java Webstart in Python?

2005-12-05 Thread Renato
What use is Java WebStart, exactly? Just make a .exe installer with everything (for windows), using for example py2exe and InnoSetup, and a distutils compliant package for the others. -- http://mail.python.org/mailman/listinfo/python-list

Re: GTK for windows and Linux

2005-11-17 Thread Renato
You'll need to install the libglade/gtk/pygtk packages from: http://www.pcpm.ucl.ac.be/~gustin/win32_ports/ When your app is complete you can package it with py2exe -- http://mail.python.org/mailman/listinfo/python-list

Re: Good starterbook for learning Python?

2005-07-06 Thread Renato Ramonda
Lennart ha scritto: > Programming Python will I sell as a book that i read secondly, and use as a > reference. I'd like to suggest also "Thinking like a CS in python": a schoolbook used in real classes to teach the basis of programming. -- Renato --

Re: Folding in vim

2005-07-06 Thread Renato Ramonda
ou can have 8 spaces real tabs in C files, for examples, without touching your conf. -- Renato Usi Fedora? Fai un salto da noi: http://www.fedoraitalia.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Folding in vim

2005-07-05 Thread Renato Ramonda
es all of them (just like deleting a tab). -- Renato Usi Fedora? Fai un salto da noi: http://www.fedoraitalia.org -- http://mail.python.org/mailman/listinfo/python-list

Re: debugger?

2005-07-03 Thread Renato Ramonda
Qiangning Hong ha scritto: > Eric3 need pyqt so it is not free under windows platform. Eric3 has had a free version for months now on windows, since the kde on win32 project recompiled the free versions on windows. And qt4 now has a GPL version free on windows too. -- Ren

Re: How to find Windows "Application data" directory??

2005-06-29 Thread Renato Ramonda
use the DOS spawn (win9x family) was single user and did not really have concepts like home directories, profiles, separate settings for each user... hell, it did not even have users! :-D -- Renato Usi Fedora? Fai un salto da noi: http://www.fedorait

Re: help!

2005-06-24 Thread Renato Ramonda
; That is, if it is mounted do do so. Just pass a "noatime" parameter to the mount command (or fstab line) and the atime (access time) will not be written. Common when using very slow storage devices, or devices with somewhat limited read/write cycles (like old compactflash memories).

Re: extreme newbie

2005-06-18 Thread Renato Ramonda
fault is OSX, and it's _NOT_ sun's one, but the internally developed one. -- Renato Usi Fedora? Fai un salto da noi: http://www.fedoraitalia.org -- http://mail.python.org/mailman/listinfo/python-list

Re: extreme newbie

2005-06-18 Thread Renato Ramonda
cpunerd4 ha scritto: > > Another reason I was thinging java was because you can > run it in the browser. Bad idea in 99% of the cases: applets are evil. -- Renato Usi Fedora? Fai un salto da noi: http://www.fedoraitalia.org -- http://mail.python.or

Re: extreme newbie

2005-06-18 Thread Renato Ramonda
on the other hand is installed by default on all linux and OSX machines, and on windows you can use py2exe and produce packages of 2-3MBs (correct me if I'm wrong) with everything bundled. -- Renato Usi Fedora? Fai un salto da noi: http://www.fedoraitalia

Re: What is different with Python ? (OT I guess)

2005-06-15 Thread Renato Ramonda
Terry Hancock ha scritto: > > It's the reverse-translation from the French "Informatique". Or maybe the italian Informatica... -- Renato Usi Fedora? Fai un salto da noi: http://www.fedoraitalia.org -- http://mail.python.org/mailman/listinfo/python-list

Re: anygui,anydb, any opinions?

2005-06-11 Thread Renato Ramonda
rols in nested sets of sizers. Dunno... I'll take your word on this. In my experience though wx apps have awfully ugly laid out interfaces, often non resizable ones. Maybe is't only bad luck :-) -- Renato Usi Fedora? Fai un salto da noi: http

Re: Fast text display?

2005-06-09 Thread Renato Ramonda
wo messing around with it before > deciding it wasn't worth the hassle. AFAIR the linux package for wxpython does not require wxWidgets at all (it's embedded). As for the obsolete gtk look for a "gtk+" package, not for the "gtk" which is the up-t

Re: Start application & continue after app exits

2005-06-09 Thread Renato Ramonda
l notice that gVim is smart enough to notice that the file is no longer there, or that it is there but is more recent than his working copy (if you re-edited with gedit, for example). -- Renato Usi Fedora? Fai un salto da noi: http://www.fedoraitalia.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Fast text display?

2005-06-09 Thread Renato Ramonda
tually has such a mechanism, if you have deb-src repositories in your apt sources list. The real problem will come from conflicting versions of wx and/or gtk required by different (other) programs. -- Renato Usi Fedora? Fai un salto da noi: http://www.fedorait

Re: Fast text display?

2005-06-09 Thread Renato Ramonda
ned :-D -- Renato Usi Fedora? Fai un salto da noi: http://www.fedoraitalia.org -- http://mail.python.org/mailman/listinfo/python-list

Re: anygui,anydb, any opinions?

2005-06-09 Thread Renato Ramonda
/gladewin32.sourceforge.net/ choosing the development package (that includes gtk _and_ glade), plus http://www.pcpm.ucl.ac.be/~gustin/win32_ports/pygtk.html for pygtk. Just choose the right python version, obviously. -- Renato Usi Fedora? Fai un salto da noi:

Re: anygui,anydb, any opinions?

2005-06-08 Thread Renato Ramonda
Tim Roberts ha scritto: > Renato Ramonda <[EMAIL PROTECTED]> wrote: > >>wxWidgets apps look ALMOST native on windows (combobox and similar >>widgets are emulated, and look really bad), > > > That just isn't true. They use the standard combo box. Then i

Re: anygui,anydb, any opinions?

2005-06-08 Thread Renato Ramonda
on. New/wonderful things are no longer forthcoming from Then download gtk2.6 and glade for windows and then install pygtk and code away to your satisfaction! :-D -- Renato Usi Fedora? Fai un salto da noi: http://www.fedoraitalia.org -- http://mail.python.org/mailman/listinfo/python-list