Module refinery.units.strings.clower
Expand source code Browse git
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from refinery.units import Unit
class clower(Unit):
"""
Stands for "Convert to LOWER case"; The unit simply converts all latin alphabet chacters in the
input to lowercase.
"""
def process(self, data):
return data.lower()
Classes
class clower
-
Stands for "Convert to LOWER case"; The unit simply converts all latin alphabet chacters in the input to lowercase.
Expand source code Browse git
class clower(Unit): """ Stands for "Convert to LOWER case"; The unit simply converts all latin alphabet chacters in the input to lowercase. """ def process(self, data): return data.lower()
Ancestors
Class variables
var required_dependencies
var optional_dependencies
Inherited members