A Python library to apply successive operations on your data
Project description
pln is a Python library to apply successive operations on your data:
data = Pipeline("pipeline") # "pipeline"
result = data >> select_consonants >> set >> join_chars
print result.value # "pln"