Source code for pyspread.lib.string_helpers

# -*- coding: utf-8 -*-

# Copyright Martin Manns
# Distributed under the terms of the GNU General Public License

# --------------------------------------------------------------------
# pyspread is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# pyspread is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with pyspread.  If not, see <http://www.gnu.org/licenses/>.
# --------------------------------------------------------------------

"""

**Provides**

 * :func:`quote`
 * :func:`wrap_text`

"""

import textwrap

ZEN = """The Zen of Python, by Tim Peters

Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than *right* now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!
"""


[docs] def quote(code: str) -> str: """Quote code :param code: Code to be quoted :return: Quoted code if not already quoted and quoting possible """ starts_and_ends = [ ("'", "'"), ('"', '"'), ("u'", "'"), ('u"', '"'), ("b'", "'"), ('b"', '"'), ("r'", "'"), ('r"', '"'), ] if code is None or not (isinstance(code, bytes) or isinstance(code, str)): return code code = code.strip() if code and not (code[0], code[-1]) in starts_and_ends: return repr(code) else: return code
[docs] def wrap_text(text, width=80, maxlen=2000): """Wrap text to line width :param text: The text to be wrapped :param width: Width of the text to be wrapped :param maxlen: Maximum total text length before text in truncated and extended by [...]. If None then truncation is disabled. :return: Wrapped text """ if text is None: return if maxlen is not None and len(text) > maxlen: text = text[:maxlen] + "..." return "\n".join(textwrap.wrap(text, width=width))