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
>
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
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
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
:
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
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
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:
>
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
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
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
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
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
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
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
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
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.
--
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
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
*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')#
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
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
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
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 "
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
>>> 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
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
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
shifting text with < or >
it moves 4 spaces.
--
bye,
Renato
--
http://mail.python.org/mailman/listinfo/python-list
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
Python, too.
So RedHat, too, has a big interest in Python :-)
--
Renato Ramonda
--
http://mail.python.org/mailman/listinfo/python-list
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
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
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
--
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
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
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
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
;
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).
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
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
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
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
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
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
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
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
ned :-D
--
Renato
Usi Fedora? Fai un salto da noi:
http://www.fedoraitalia.org
--
http://mail.python.org/mailman/listinfo/python-list
/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:
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
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
50 matches
Mail list logo