DupliPy Package Documentation
Package documentation for DupliPy, our Python package.
Last updated
Package documentation for DupliPy, our Python package.
Last updated
from duplipy.formatting import remove_special_characters, standardize_text
text = "Hello! This is some text."
# Remove special characters
formatted_text = remove_special_characters(text)
print(formatted_text) # Output: Hello This is some text
# Standardize text formatting
standardized_text = standardize_text(text)
print(standardized_text) # Output: hello! this is some text