
git-svn-id: https://tftpy.svn.sourceforge.net/svnroot/tftpy/trunk@58 63283fd4-ec1e-0410-9879-cb7f675518da
18 lines
549 B
Python
18 lines
549 B
Python
"""This library implements the tftp protocol, based on rfc 1350.
|
|
http://www.faqs.org/rfcs/rfc1350.html
|
|
At the moment it implements only a client class, but will include a server,
|
|
with support for variable block sizes.
|
|
"""
|
|
|
|
import sys
|
|
|
|
# Make sure that this is at least Python 2.3
|
|
verlist = sys.version_info
|
|
if not verlist[0] >= 2 or not verlist[1] >= 3:
|
|
raise AssertionError, "Requires at least Python 2.3"
|
|
|
|
from TftpShared import *
|
|
from TftpPacketTypes import *
|
|
from TftpPacketFactory import *
|
|
from TftpClient import *
|
|
from TftpServer import *
|