for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
"""Encode module for UTF8."""
def encode(value):
"""
Encode UTF8.
:param bytes value: a decoded content
:return: the encoded content
:rtype: bytes
return value.encode('utf-8')