
Unicode HOWTO — Python 3.13.3 documentation
3 days ago · This HOWTO discusses Python’s support for the Unicode specification for representing textual data, and explains various problems that people commonly encounter …
unicodedata — Unicode Database — Python 3.13.3 documentation
2 days ago · This module provides access to the Unicode Character Database (UCD) which defines character properties for all Unicode characters. The data contained in this database is …
codecs — Codec registry and base classes - Python
2 days ago · This module defines base classes for standard Python codecs (encoders and decoders) and provides access to the internal Python codec registry, which manages the …
re — Regular expression operations — Python 3.13.3 documentation
3 days ago · UNICODE ¶ In Python 3, Unicode characters are matched by default for str patterns. This flag is therefore redundant with no effect and is only kept for backward compatibility. See …
ctypes — A foreign function library for Python
3 days ago · For accessing the C Python api directly, a ready-to-use Python shared library object is available: ctypes. pythonapi. An instance of PyDLL that exposes Python C API functions as …
Objetos y códecs unicode — documentación de Python - 3.15.0a0
Desde la implementación del PEP 393 en Python 3.3, los objetos Unicode utilizan internamente una variedad de representaciones, para permitir el manejo del rango completo de caracteres …
binascii — Convert between binary and ASCII - Python
5 days ago · Changed in version 3.3: ASCII-only unicode strings are now accepted by the a2b_* functions. The binascii module defines the following functions: binascii. a2b_uu ( string ) ¶
The Python Standard Library — Python 3.13.3 documentation
3 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 …
json — JSON encoder and decoder — Python 3.13.3 documentation
3 days ago · Other than the ensure_ascii parameter, this module is defined strictly in terms of conversion between Python objects and Unicode strings, and thus does not otherwise directly …
Built-in Functions — Python 3.13.3 documentation
2 days ago · Given a string representing one Unicode character, return an integer representing the Unicode code point of that character. For example, ord('a') returns the integer 97 and …