
csv — CSV File Reading and Writing — Python 3.13.3 documentation
3 days ago · The csv module implements classes to read and write tabular data in CSV format. It allows programmers to say, “write this data in the format preferred by Excel,” or “read data from this file which was generated by Excel,” without knowing the …
File Formats — Python 3.13.3 documentation
3 days ago · File Formats¶ The modules described in this chapter parse various miscellaneous file formats that aren’t markup languages and are not related to e-mail. csv — CSV File Reading and Writing
gzip — Support for gzip files — Python 3.13.3 documentation
The GzipFile class reads and writes gzip-format files, automatically compressing or decompressing the data so that it looks like an ordinary file object. Note that additional file formats which can be decompressed by the gzip and gunzip programs, such as those produced by compress and pack , are not supported by this module.
io — Core tools for working with streams — Python 3.13.3 …
4 days ago · A concrete object belonging to any of these categories is called a file object. Other common terms are stream and file-like object. Independent of its category, each concrete stream object will also have various capabilities: it can be read-only, write-only, or read-write.
wave — Read and write WAV files — Python 3.13.3 documentation
3 days ago · The wave module provides a convenient interface to the Waveform Audio “WAVE” (or “WAV”) file format. Only uncompressed PCM encoded wave files are supported.
tempfile — Generate temporary files and directories - Python
3 days ago · Return a file-like object that can be used as a temporary storage area. The file is created securely, using the same rules as mkstemp(). It will be destroyed as soon as it is closed (including an implicit close when the object is garbage collected).
configparser — Configuration file parser — Python 3.13.3 …
3 days ago · This module provides the ConfigParser class which implements a basic configuration language which provides a structure similar to what’s found in Microsoft Windows INI files. You can use this to write Python programs which can be customized by end users easily.