Metadata-Version: 2.1
Name: rightpad
Version: 0.1.0
Summary: A port of the infamous right-pad npm package
Home-page: https://github.com/mariekodes/rightpad
Author: Marie Kodes
Author-email: mariekodes@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# Rightpad
Right pad a string in Python. 
Created to try out making a `pip` package and uploading it to the [Python Package Index (PyPI)](https://pypi.org/).

# Install
`pip install rightpad`

# Usage
```python
from rightpad import right_pad

right_pad("foo", 5)
// => "foo  "

right_pad("foobar", 6)
// => "foobar"

right_pad(1, 2, '0')
// => "10"

right_pad(17, 5, 0)
// => "17000"
```

## Testing
Run `python -m doctest rightpad.py`.
