mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-20 19:40:18 +00:00
14 lines
235 B
Markdown
14 lines
235 B
Markdown
---
|
|
icon: package
|
|
label: base64
|
|
---
|
|
|
|
### `base64.b64encode(b: bytes) -> bytes`
|
|
|
|
Encode bytes-like object `b` using the standard Base64 alphabet.
|
|
|
|
### `base64.b64decode(b: bytes) -> bytes`
|
|
|
|
Decode Base64 encoded bytes-like object `b`.
|
|
|