binascii
Stdlib — SerializationPython 2.0+Intermediate
Convert between binary and ASCII-encoded representations
Quick Info
- Documentation
- Official Docs
- Python Version
- 2.0+
- Dependencies
- None — Python Standard Library
- Install
Included with Python
Learn by Difficulty
Quick Example
python
import binascii print(f"Module: binascii") print(f"Contents: {dir(binascii)[:10]}")
The binascii module is part of Python's standard library. Convert between binary and ASCII-encoded representations.
Try in PlaygroundTags
stdlibserializationdata-format