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