
pathlib — Object-oriented filesystem paths — Python 3.14.3 …
1 day ago · Source code: Lib/pathlib/ This module offers classes representing filesystem paths with semantics appropriate for different operating systems. Path classes are divided between pure paths, …
File and Directory Access — Python 3.14.3 documentation
1 day ago · pathlib — Object-oriented filesystem paths Basic use Exceptions Pure paths General properties Operators Accessing individual parts Methods and properties Concrete paths Parsing and …
glob — Unix style pathname pattern expansion — Python 3.14.3 …
1 day ago · See also pathlib.PurePath.full_match() and pathlib.Path.glob() methods, which call this function to implement pattern matching and globbing. Added in version 3.13.
os.path — Common pathname manipulations — Python 3.14.3 …
1 day ago · os.path.basename(path, /) ¶ Return the base name of pathname path. This is the second element of the pair returned by passing path to the function split(). Note that the result of this function …
What’s New In Python 3.12 — Python 3.14.3 documentation
1 day ago · Summary – Release highlights ¶ Python 3.12 is a stable release of the Python programming language, with a mix of changes to the language and the standard library. The library changes focus …
shutil — High-level file operations — Python 3.14.3 documentation
Source code: Lib/shutil.py The shutil module offers a number of high-level operations on files and collections of files. In particular, functions are provided which support file copying and removal...
os — Miscellaneous operating system interfaces — Python 3.14.3 ...
Source code: Lib/os.py This module provides a portable way of using operating system dependent functionality. If you just want to read or write a file see open(), if you want to manipulate paths, s...
tempfile — Generate temporary files and directories — Python 3.14.3 ...
2 days ago · Source code: Lib/tempfile.py This module creates temporary files and directories. It works on all supported platforms. TemporaryFile, NamedTemporaryFile, TemporaryDirectory, and …
zipfile — Work with ZIP archives — Python 3.14.3 documentation
class zipfile.ZipFile The class for reading and writing ZIP files. See section ZipFile objects for constructor details. class zipfile.Path Class that implements a subset of the interface provided by pathlib.Path, …
What’s new in Python 3.14 — Python 3.14.3 documentation
2 days ago · What’s new in Python 3.14 ¶ Editors: Adam Turner and Hugo van Kemenade This article explains the new features in Python 3.14, compared to 3.13. Python 3.14 was released on 7 October …