Anyone heard of a good Voice Stress Analysis program

2008-11-25 Thread Daniel Folkes
Anyone heard of a good voice stress analysis program that was either:
a) Written in python
b) can be used by python?

It would be a great help to me.

Thanks,
Dan Folkes
http://danfolkes.com
--
http://mail.python.org/mailman/listinfo/python-list


Re: Can you recommend a book?

2008-04-25 Thread Daniel Folkes
On Apr 25, 6:28 am, "[EMAIL PROTECTED]"
<[EMAIL PROTECTED]> wrote:
> Hello all, I learned Python with the book "Programming Python" by John
> Zelle. But today this book is a little bit old. My Python is some kind
> old. I need a book that will help me brush my style and keep me up to
> date. I would like one with practical examples.
>
> Can you recommend one?

Learning Python followed by Programming Python.

You should be able to find them in a Library too.
--
http://mail.python.org/mailman/listinfo/python-list


Re: Email Directly from python

2008-02-15 Thread Daniel Folkes
You could always just set up a gmail account and use that SMTP.  Thats
what I do.  Then all you have to do is google search for "gmail smtp
python" and get some easy code.

You can even send attatchments really easy.

-Daniel Folkes

brad wrote:
> I'd like to send email directly from within python without having to
> rely on an external smtp server. You know, something like the good, old
> Unix...
>
> echo My_message | mail -s Subject [EMAIL PROTECTED]
>
> Can Python do something similar in a portable fashion without a smtp
> server installed on the machine?
>
> Thanks,
> Brad
-- 
http://mail.python.org/mailman/listinfo/python-list


Removing the Close, Min, Maximize and frame with ANY gui toolkit

2008-02-05 Thread Daniel Folkes
I was wondering if anyone knew how to remove the Minimize, Maximize
and Close from the frame around a gui.
Removing everything would work even better.

I would prefer instructions for tkinter, but any GUI would
suffice(glade, gtk, wx, Qt).  I really would like to make a widget
like object instead of a window.

Thanks,
Daniel Folkes
http://danfolkes.com
-- 
http://mail.python.org/mailman/listinfo/python-list


What is a shortcut to the Default home directory in Windows

2008-01-18 Thread Daniel Folkes
I am trying to write a file to the users file system.

I need it to be in there home directory in WINDOWS.  I know there is a
"shortcut" to home in Linux("~"), but is there an equivalent to that
in windows.  Or to get to their "Documents and Settings" directory?

Thanks in advance for the help.

-Daniel Folkes
-- 
http://mail.python.org/mailman/listinfo/python-list


Python Nmap script linux version

2007-11-28 Thread Daniel Folkes
I made this script for fun.  you need to have Nmap installed on your
linux computer and it will find all the computers on the network and
then run Nmap on it.

Hope you enjoy!

import os
fn = 'i.result'
ip = '192.168.1.1-255'
ip1 = ip[:3]
ips = []
os.system("nmap -sP 192.168.1.1-255 > "+fn)
f = open(fn)
try:
   for line in f:
   if ip1 in line:
   ips.append(line[5:-19])

finally:
   f.close()

os.system("clear")
for i in ips:
   print '=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-='
   os.system("nmap "+i)
   print '=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-='
   raw_input('press to continue...')


Tell me what you think
-- 
http://mail.python.org/mailman/listinfo/python-list


Python Nmap Scour sP script for linux

2007-11-27 Thread Daniel Folkes
I made this script for fun.  you need to have Nmap installed on your
linux computer and it will find all the computers on the network and
then run Nmap on it.

Hope you enjoy!



import os
fn = 'i.result'
ip = '192.168.1.1-255'
ip1 = ip[:3]
ips = []
os.system("nmap -sP 192.168.1.1-255 > "+fn)
f = open(fn)
try:
for line in f:
if ip1 in line:
ips.append(line[5:-19])

finally:
f.close()

os.system("clear")
for i in ips:
print '=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-='
os.system("nmap "+i)
print '=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-='
raw_input('press to continue...')


-- 
http://mail.python.org/mailman/listinfo/python-list


New to Vim and Vim-Python

2007-10-24 Thread Daniel Folkes
I am new to using Vim's scripts.

I was wondering if anyone uses Vim-Python and how to use it?   This
includes things like key bindings and such.

Thanks in advance,
Daniel Folkes
[EMAIL PROTECTED]

-- 
http://mail.python.org/mailman/listinfo/python-list