OpenQuizz
Une application de gestion des contenus pédagogiques
|
Functions | |
def | want_bytes (s, encoding="utf-8", errors="strict") |
def | base64_encode (string) |
def | base64_decode (string) |
def | int_to_bytes (num) |
def | bytes_to_int (bytestr) |
def itsdangerous.encoding.base64_decode | ( | string | ) |
Base64 decode a URL-safe string of bytes or text. The result is bytes.
def itsdangerous.encoding.base64_encode | ( | string | ) |
Base64 encode a string of bytes or text. The resulting bytes are safe to use in URLs.
def itsdangerous.encoding.bytes_to_int | ( | bytestr | ) |
def itsdangerous.encoding.int_to_bytes | ( | num | ) |
def itsdangerous.encoding.want_bytes | ( | s, | |
encoding = "utf-8" , |
|||
errors = "strict" |
|||
) |