How to avoid reverse code engineering of a python executable

2007-08-08 Thread NicolasG
Hi guy's, Couple of day's ago I asked for your help on how to create a single file of a python executable. Now I want to proceed a little bit further asking how can I avoid (or at least make it difficult) for some one to extract my code by using reverse code engineer techniques? I came on pyobfusc

Re: Where do they tech Python officialy ?

2007-07-31 Thread NicolasG
> Open source projects do not require previous professional experience to > accept volunteers. So, one way out of your dilemma is to make a name > for yourself as an open source contributor -- help out with Python > itself and/or with any of the many open source projects that use Python, > and yo

Re: How to create a single executable of a Python program

2007-07-25 Thread NicolasG
> You need to tell us why you "think" you need this and perhaps we can make a > suggestion. Question: Have you installed ANY applications recently that > consisted of only a single file on your hard drive? Answer: No. Most > applications install many (sometimes hundreds) of files. So what is th

How to create a single executable of a Python program

2007-07-25 Thread NicolasG
Dear fellows, I'm trying to create a executable file using py2exe . Unfortunately along with the python executable file it also creates some other files that are needed in order to the executable be able to run in a system that doesn't have Python installed. Can some one guide me on how can I merg

Re: Where do they tech Python officialy ?

2007-07-24 Thread NicolasG
> Why would you want to become a programmer? Programmers smell bad, > they have no social life, they get treated like crap by everyone. > They can get paid pretty well but then they spend all the money on > useless electronic junk so they still live like bums. I wouldn't call this person program

Re: Where do they tech Python officialy ?

2007-07-24 Thread NicolasG
> If you have a good programming background in other languages, you > should easily be able to pick up Python by reading the manual. > Dear all, thank you for your info. I forgot to mention that I already know how to program in Python (basic), my knowledge derives from a very good level of C (Uni

Where do they tech Python officialy ?

2007-07-23 Thread NicolasG
Hi, I want to be a professional python programmer, unfortunately I'm working on technical support and don't have the time/patience to start making projects my self. I tried to apply to some Python positions but unfortunately sometimes to work as a programmer is really hard in this world, every emp

Python to tell what is the IP of my PC .

2006-11-08 Thread NicolasG
How can I use python to get the real IP address of my DSL router (when my PC is part of the local home LAN) ? -- http://mail.python.org/mailman/listinfo/python-list

Re: help using smtplib to work ..

2006-11-08 Thread NicolasG
> > > Under outgoing mail smtp server, use smtp.gmail.com. Since it requires SMTP > authorization, use your Gmail account as username (e.g. [EMAIL PROTECTED]) and > your Gmail password as password. You can turn TSL on or off. > > > > The email server requires authentication before it can send. >

help using smtplib to work ..

2006-11-08 Thread NicolasG
=106\r\n' reply: '530 5.7.0 Must issue a STARTTLS command first s1sm7666914uge\r\n' reply: retcode (530); Msg: 5.7.0 Must issue a STARTTLS command first s1sm7666914uge send: 'rset\r\n' reply: '250 2.1.0 Flushed s1sm7666914uge\r\n' reply: retcode (250); Msg: 2.1.0 F

Re: I need Cryptogrphy in Python please .

2006-10-03 Thread NicolasG
I have made a site using Karrigell as a web server and I want to provide cryptography services to the visitors. They should wirte their text on the site and be able choose different encryption algorithms to apply on the text . MonkeeSage wrote: > NicolasG wrote: > > I have insta

I need Cryptogrphy in Python please .

2006-10-03 Thread NicolasG
Looking around for a Cryptography tool kit, the best recommendations I found about was for pyCrypto. I try to install it unsuccessfully in my windowsXP SP2 with python 2.4.3 and I get the following message : C:\Python24\pycrypto-2.0.1>python setup.py build running build running build_py running bui

Re: Python web service ...

2006-08-30 Thread NicolasG
You mean to use only python HTTP socket library ? I never had use sockets before, it has a big learning curve ? Gabriel Genellina wrote: > At Monday 28/8/2006 20:45, Nicolas G wrote: > > >If I want to run my program as a web service I need to setup a > >webserver , am I right ? > >Whars that differ

Re: Python web service ...

2006-08-26 Thread NicolasG
> For a one-shot thing, plain old CGI might be enough. You can have a > static HTML page with the form for the upload, have python do the > image part, and generate the return HTML with the image with a python > script. If you plan to do this a lot, or want fairly sophisticated > stuff, or DB acce

Python web service ...

2006-08-26 Thread nicolasg
Hi folks, I have accomplished to make a python program that make some image manipulation to bmp files. I now want to provide this program as a web service. A user can visit a site and through a web interface he should upload the file to the web server , the server then will do the image process wit

Re: File read and writing in binary mode...

2006-06-17 Thread nicolasg
> > Solution: only use binary files, and do the newline-translation yourself > if needed. > > Diez The probelm is if I can't use only binary files... How can I do the newline-translation myself ? if check the text and found the diferrence between binary and text is the '\r' instead of '\'n' . I ca

File read and writing in binary mode...

2006-06-14 Thread nicolasg
Hi, I'm trying to open a file (any file) in binary mode and save it inside a new text file. After that I want to read the source from the text file and save it back to the disk with its original form. The problem is tha the binary source that I extract from the text file seems to be diferent from

Re: integer to binary...

2006-06-01 Thread nicolasg
[EMAIL PROTECTED] wrote: > Grant Edwards wrote: > > On 2006-06-01, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > > > does anyone know a module or something to convert numbers like integer > > > to binary format ? > > > > They _are_ in binary format. > > > > > for example I want to convert num

Re: integer to binary...

2006-06-01 Thread nicolasg
Grant Edwards wrote: > On 2006-06-01, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > does anyone know a module or something to convert numbers like integer > > to binary format ? > > They _are_ in binary format. > > > for example I want to convert number 7 to 0111 so I can make some > > bitwis

integer to binary...

2006-06-01 Thread nicolasg
does anyone know a module or something to convert numbers like integer to binary format ? for example I want to convert number 7 to 0111 so I can make some bitwise operations... Thanks -- http://mail.python.org/mailman/listinfo/python-list