How to send

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Admir Saric

    #1

    How to send

    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/

  • kyosohma@gmail.com

    #2
    Re: How to send

    On Mar 20, 7:21 am, "Admir Saric" <lav...@hotmail .comwrote:
    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:



    SMTP:


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

    Good luck!

    Mike

    Comment

    Working...