Re: [Tutor] Documenting a Module

2010-09-13 Thread r...@schoenian-online.de
Hi Michael,   I can recommend epydoc. You can find it here:  http://epydoc.sourceforge.net/ It's a nice tool and you should have no problems with the installation.   Ralf       Michael Powe hat am 13. September 2010 um 11:54 geschrieben: > Hello, > > Are there any tools for documenting a module

Re: [Tutor] system()? popen2()? How to execute a command & save its output?

2010-09-30 Thread r...@schoenian-online.de
Hi,   I've once written a script to sync my website with a local directory. I guess that you will find anything you need in the FTPHelper class. Have a look at: http://home.arcor.de/ralf_schoenian/websync/index.html At the bottom of the page you can view and download the script. Any questions are w

Re: [Tutor] Making a script part of the terminal

2011-05-20 Thread r...@schoenian-online.de
Hello Michael,   first you have to give your script an executable bit. Just type chmod +x your_script.py Furhtermore, your script has to be in a directory that is also part of your search path. Type in echo $PATH to see how your path is set. You can either link or copy your script to an approprate