Example projects ================ columnprinter.py ---------------- This example prints the columns of a table one at a time. .. literalinclude:: ../examples/columnprinter.py dictslice.py ------------ This example exports results to a pandas DataFrame. .. literalinclude:: ../examples/dictslice.py rowprinter.py ------------- This example prints the rows of a table one at a time. .. literalinclude:: ../examples/rowprinter.py server.py --------- This example displays a complex web server example using multiple threads. .. literalinclude:: ../examples/server.py simplethread.py --------------- This example uses two threads to create two session objects, retrieves information from two tables, and downloads the data into two separate files. .. literalinclude:: ../examples/simplethread.py