About 400 results
Open links in new tab
  1. csv — CSV File Reading and Writing — Python 3.14.0 documentation

    1 day 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. 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.

  3. 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, …

  4. 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 …

  5. File Formats — Python 3.14.0 documentation

    4 days ago · 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- …

  6. configparser — Configuration file parser — Python 3.14.0 …

    3 days ago · This behaviour is unsupported and will cause errors when attempting to write to a file or get it in non-raw mode. Use the mapping protocol API which does not allow such …

  7. wave — Read and write WAV files — Python 3.14.0 documentation

    2 days ago · An accurate nframes value can be achieved either by calling setnframes() or setparams() with the number of frames that will be written before close() is called and then …

  8. 7. Input and Output — Python 3.14.0 documentation

    3 days ago · Rather than having users constantly writing and debugging code to save complicated data types to files, Python allows you to use the popular data interchange format called JSON …

  9. tempfile — Generate temporary files and directories — Python …

    3 days ago · Files names used by this module include a string of random characters which allows those files to be securely created in shared temporary directories. To maintain backward …

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

    1 day ago · Please note that in the event of an exception an archive opened for writing will not be finalized; only the internally used file object will be closed. See the Examples section for a use …