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
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',
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
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
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
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