How to send

kyosohma at gmail.com kyosohma at gmail.com
Tue Mar 20 10:44:56 EDT 2007


On Mar 20, 7:21 am, "Admir Saric" <lav... at hotmail.com> wrote:
> Hi,
>
> i have created an application in pygtk. The application creates files with
> its own file type and extensions and saves them. I would like to extend the
> application to be able to send these files over WLAN. I would use the
> application in my Nokia 770 Internet tablet and send the files from one
> tablet to the other. Does anybody know how to make python application send
> files over the WLAN.
>
> Best regards
> Admir
>
> _________________________________________________________________
> Schlagerfeber på MSN!http://festival.msn.se/

Probably the easiest way to do this would be to use either the socket
module or the smtp module

Sockets:
http://www.amk.ca/python/howto/sockets/
http://www.quepublishing.com/articles/article.asp?p=686162&rl=1

SMTP:
http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/52243

You could even do FTP:
http://snippets.dzone.com/posts/show/711

Good luck!

Mike




More information about the Python-list mailing list