Text Tools Python scripts - Top 4 Download

Text Tools Python script downloads

Deeply applying str across a data structure

The str() function in the standard library behaves in a slightly weird way when applied against lists: on each element of the list, the repr() is appended. In contrast, this module provides a deep_str() that deeply applies str() across lists. This module also provides utilities to develop custom str() functions. ...
Python

Convert string to hex

Convert string to hex script converts each char to hex representation and back. ...
Python