Source: python-rstr Section: python Priority: optional Maintainer: Debian Python Modules Team Uploaders: Ximin Luo Build-Depends: debhelper-compat (= 10), dh-python, python3-all, python3-setuptools Standards-Version: 4.1.0 Homepage: https://bitbucket.org/leapfrogdevelopment/rstr/ Vcs-Git: https://salsa.debian.org/python-team/modules/python-rstr.git Vcs-Browser: https://salsa.debian.org/python-team/modules/python-rstr Package: python3-rstr Architecture: all Depends: ${python3:Depends}, ${misc:Depends} Description: Easily generate random strings of various types (Python 3) rstr is a helper module for easily generating random strings of various types. It could be useful for fuzz testing, generating dummy data, or other applications. It has no dependencies outside the standard library, and is compatible with Python 3. . The basic method of rstr is rstr(). At a minimum, it requires one argument, an alphabet of characters from which to create a string. . Inspired by the Java library of the same name, the xeger() method allows users to create a random string from a regular expression. . You can combine rstr with Python's built-in string formatting to produce strings that fit a variety of templates. . This package installs the library for Python 3.