blob: 9dba9180d2c4a1defb9ff3bff419f0b2f957e3cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
:mod:`ubinascii` -- binary/ASCII conversions
============================================
.. module:: ubinascii
:synopsis: binary/ASCII conversions
This module implements conversions between binary data and various
encodings of it in ASCII form (in both directions).
Functions
---------
.. function:: hexlify(data)
Convert binary data to hexadecimal representation. Return bytes string.
|