strypy

Powerful and fundamental string manipulation package


Keywords
string, strypy, manipulation
License
Other
Install
pip install strypy==1.0.4

Documentation

StryPy v1.0.4

StryPy logo

StryPy is a Python package to help developers work with strings quickly and effectively. It provides a huge range of functions and objects that can be used to manipulate strings in almost any way you want. The package also simplifies advanced string functions making them more accessable for the average programmer.

Features:
  • Basics such as concatenation.
  • String generators.
  • Advanced Unicode conversions.
  • Colouring strings.
  • Random string capabilities
  • And more!

Installation:

Using pip:

pip install strypy

Or:

pip3 install strypy

Basic Usage

Code:

import strypy as sp

print(sp.add("Hello", "World", spaces=True))

Returns:

Hello World

For full guides and examples, visit the documentation (link below)

Note

StryPy is standardly imported as sp: >>> import strypy as sp >>> . . .