Metadata-Version: 1.0
Name: minimumTFTP
Version: 20110917
Summary: tftp server and client.
Home-page: UNKNOWN
Author: shigekiyamada
Author-email: yam@tokyo.email.ne.jp
License: BSD
Description: tftp server and client.
        
        Requirements
        ------------
        * Python 3.x
        
        
        usage:
            >>> import minimumTFTP
        
            ## server running
            >>> tftpServer = minimumTFTP.Server('C:\server_TFTP_Directory')
            >>> tftpServer.run()
        
            ## client running
            ##  arg1: server_IP_address
            ##  arg2: client_directory
            ##  arg3: get or put filename
            >>> tftpClient = minimumTFTP.Client(arg1, arg2, arg3)
        
            ## get
            >>> tftpClient.get()
        
            ## put
            >>> tftpClient.put()
        
        
        python -m
            server runnning
                Usage: python -m minimumTFTP -s [directory]
        
            client get
                Usage: python -m minimumTFTP -g [serverIP] [directory] [filename]
        
            client put
                Usage: python -m minimumTFTP -p [serverIP] [directory] [filename]
        
Keywords: network,internet,tftp
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet
Classifier: Environment :: Console
