From 3fd81c73cfd8bad36b2a1cf7955006e35c1d9db5 Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Fri, 23 Oct 2015 16:44:24 +0200 Subject: Assignment 3: code, plots --- Assignment 3/packages/xlrd/doc/compdoc.html | 69 +++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 Assignment 3/packages/xlrd/doc/compdoc.html (limited to 'Assignment 3/packages/xlrd/doc/compdoc.html') diff --git a/Assignment 3/packages/xlrd/doc/compdoc.html b/Assignment 3/packages/xlrd/doc/compdoc.html new file mode 100644 index 0000000..8a1e173 --- /dev/null +++ b/Assignment 3/packages/xlrd/doc/compdoc.html @@ -0,0 +1,69 @@ + + +
+ +Implements the minimal functionality required +to extract a "Workbook" or "Book" stream (as one big string) +from an OLE2 Compound Document file. +
Copyright © 2005-2012 Stephen John Machin, Lingfo Pty Ltd
+This module is part of the xlrd package, which is released under a BSD-style licence.
+Compound document handler.
+For more information about this class, see The CompDoc Class.
+Magic cookie that should appear in the first 8 bytes of the file.
+Compound document handler.
+Interrogate the compound document's directory; return the stream as a string if found, otherwise +return None.
+Interrogate the compound document's directory. +If the named stream is not found, (None, 0, 0) will be returned. +If the named stream is found and is contiguous within the original byte sequence ("mem") +used when the document was opened, +then (mem, offset_to_start_of_stream, length_of_stream) is returned. +Otherwise a new string is built from the fragments and (new_string, 0, length_of_stream) is returned.
+