Re: Advice needed for Python packaging - can't find required library during installation

2014-02-04 Thread thebiggestbangtheory
Thank you very much! :-) On Monday, February 3, 2014 11:30:00 PM UTC-8, dieter wrote: > thebiggestbangthe...@gmail.com writes: > > > > > I am trying to package up a very simple python app. In my setup.py file I > > have a couple of lines that include the following: > > > > > > from setuptool

Advice needed for Python packaging - can't find required library during installation

2014-02-03 Thread thebiggestbangtheory
Hello all, I am trying to package up a very simple python app. In my setup.py file I have a couple of lines that include the following: from setuptools import setup setup( name='ban', version='0.1', packages=['ban',], description='Python Distribution Utilities',

Re: problem with sockets and transferring binary files

2009-06-02 Thread thebiggestbangtheory
On Jun 2, 10:29 pm, "Gabriel Genellina" wrote: > En Wed, 03 Jun 2009 01:54:02 -0300,   > escribió: > > >            I am a python newbie. I am now progressing to writing a > > network app in python to learn more about it. [...] > > Surprisingly, the sha1 hash of the encrypted data before it is se

problem with sockets and transferring binary files

2009-06-02 Thread thebiggestbangtheory
Dear all, I am a python newbie. I am now progressing to writing a network app in python to learn more about it. I have a client and a server in python. The client sends a msg to the server asking it to tar a binary .dbxml file and then send it over to it. The steps are: from the 1. Clien

Re: newbie: popen question

2009-05-28 Thread thebiggestbangtheory
On May 28, 5:31 am, Sebastian Wiesner wrote: > > > > Your best bet is to make sudo not ask for a password.  :)  If you > > don't have the rights, then you can use pexpect to do what you want to > > do.  http://pexpect.sourceforge.net/pexpect.html > > > See the second example on that page. > > > c

newbie: popen question

2009-05-27 Thread thebiggestbangtheory
hello everyone :-), I am a newbie to python. I am trying to run a bash script from within a python program. I would greatly appreciate any pointers/comments about how to get around the problem I am facing. I want to run bash script: code.sh from within a python program. c