About 600 results
Open links in new tab
  1. csv — CSV File Reading and Writing — Python 3.14.0 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 …

  2. zipfile — Work with ZIP archives — Python 3.14.0 documentation

    Open a ZIP file, where file can be a path to a file (a string), a file-like object or a path-like object. The mode parameter should be 'r' to read an existing file, 'w' to truncate and write a new file, …

  3. gzip — Support for gzip files — Python 3.14.0 documentation

    Open a gzip-compressed file in binary or text mode, returning a file object. The filename argument can be an actual filename (a str or bytes object), or an existing file object to read from or write to.

  4. configparser — Configuration file parser — Python 3.14.0 …

    3 days ago · This is designed so that you can specify an iterable of potential configuration file locations (for example, the current directory, the user’s home directory, and some system-wide …

  5. File Formats — Python 3.14.0 documentation

    2 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.

  6. tarfile — Read and write tar archive files - Python

    2 days ago · read/write support for the GNU tar format including longname and longlink extensions, read-only support for all variants of the sparse extension including restoration of …

  7. wave — Read and write WAV files — Python 3.14.0 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.

  8. 7. Input and Output — Python 3.14.0 documentation

    2 days ago · To read a file’s contents, call f.read(size), which reads some quantity of data and returns it as a string (in text mode) or bytes object (in binary mode). size is an optional numeric …

  9. io — Core tools for working with streams — Python 3.14.0 …

    2 days ago · Once the file is closed, any operation on the file (e.g. reading or writing) will raise a ValueError. As a convenience, it is allowed to call this method more than once; only the first …

  10. mmap — Memory-mapped file support — Python 3.14.0 …

    2 days ago · If you wish to map an existing Python file object, use its fileno() method to obtain the correct value for the fileno parameter. Otherwise, you can open the file using the os.open() …