Python Standard Library Notes and References
1. File Handling
file object methods reference
From the reference: Using a file object as an iterator should not be mixed with using file.readline() type of operations because of the internal implementation of the iterator (read-ahead buffering)
2. Date/Time Manipulation
datetime module
