
csv — CSV File Reading and Writing — Python 3.14.2 documentation
2 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 …
configparser — Configuration file parser — Python 3.14.2 …
2 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 …
The Python Standard Library — Python 3.15.0a2 documentation
2 days ago · The library contains built-in modules (written in C) that provide access to system functionality such as file I/O that would otherwise be inaccessible to Python programmers, as …
zipfile — Work with ZIP archives — Python 3.14.2 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, …
13.1. csv — Lecture et écriture de fichiers CSV - Python
Feb 7, 2018 · Le module csv implémente des classes pour lire et écrire des données tabulaires au format CSV. Il vous permet de dire « écris ces données dans le format préféré par Excel » ou …
difflib — Helpers for computing deltas — Python 3.14.2 …
1 day ago · This module provides classes and functions for comparing sequences. It can be used for example, for comparing files, and can produce information about file differences in various …
gzip — Support for gzip files — Python 3.14.2 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.
File Formats — Python 3.14.2 documentation
4 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.
pathlib — Object-oriented filesystem paths — Python 3.14.2 …
2 days ago · Python’s str and bytes types, and portions of the os and os.path modules, are written in C and are very speedy. pathlib is written in pure Python and is often slower, but rarely slow …
shutil — High-level file operations — Python 3.14.2 documentation
Copy the contents (no metadata) of the file named src to a file named dst and return dst in the most efficient way possible. src and dst are path-like objects or path names given as strings.