FTP stands for:
File Transfer Protocol
File Translation Protocol
File Translation Procedure
File Transfer Procedure
Which method of the ftp class of the ftplib module uses ASCII mode to transfer files?
retrtxt()
retrbinary()
retrascii()
retrlines()
When can you use urllib instead of ftplib to read and transfer files from an FTP server?
anonymous FTP servers with a web interface
password protected FTP servers without a web interface
password protected FTP servers with a web interface
anonymous FTP servers without a web interface
How do you set the current directory using ftplib on an FTP server so you can navigate to the files you need?
ftp.cwd(pathname)
ftp.path(pathname)
ftp.dir(pathname)
ftp.setdir(pathname)
When working with a ZIP file in Python using the zipfile module, how do you determine which files are present in the ZIP file without extracting them?
open the file using something like zipfile.ZipFile("example.zip", "r"), then use the namelist method
open the file using something like zipfile.ZipFile("example.zip", "r"), then use the ziplist method
open the file using something like zipfile.ZipFile("example.zip", "r"), then use the read method
create a list of the files using something like zipfile.ListFiles("example.zip")
Which compression method is the default employed by the zipfile module in Python?
ZIP_STORED
TAR
GZIP
ZIP_COMPRESSED
ZIP_DEFLATED
How would you extract all files in a ZIP file to the current working directory using the zipfile module in Python?
ZipFile.openall()
ZipFile.extractall()
ZipFile.unzip()
ZipFile.extract("*")
You should never use XML to store geospatial data since it is text-based and will therefore render your geospatial data useless.
Which of the following module or libraries are used to work with XML data in Python? (check all that apply)
xml.sax
xmlopen
xmlparser
xml.dom
xmllib
xml.etree.ElementTree
XML files are notorious for missing or incorrect tags. Which module/library would you use in Python to parse XML files that contain tag errors?
ElementTree
AlphabetSoup
BeautifulSoup
XMLfix
parseXML