Metadata-Version: 2.1
Name: mudder
Version: 0.1.4
Summary: Python port of mudderjs
Home-page: https://github.com/fellowinsights/mudder-py
License: BSD-3-Clause
Author: Patrick Gingras
Author-email: 775.pg.12@gmail.com
Requires-Python: >=3.6,<4
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Project-URL: Repository, https://github.com/fellowinsights/mudder-py
Description-Content-Type: text/markdown

# mudder-py

This library is a port of [fasiha/mudderjs][1] to Python.

From the original readme:

> Generate lexicographically-spaced strings between two strings from
> pre-defined alphabets.

[1]: https://github.com/fasiha/mudderjs


## Example

Usage is nearly identical to the original:

```python
from mudder import SymbolTable


hex_ = SymbolTable('0123456789abcdef')
hexstrings = hex_.mudder('ffff', 'fe0f', num_strings=3)
print(hexstrings)
# ['ff8', 'ff', 'fe8']
```

