Many fixes and docstrings
This commit is contained in:
parent
eb93be38ea
commit
dd67eafd0d
5 changed files with 118 additions and 10 deletions
|
|
@ -1,5 +1,11 @@
|
|||
from slugify import slugify as slugify_func
|
||||
|
||||
def slugify(slug, *args, **wargs):
|
||||
"""Simple wrapper for slugify module https://github.com/un33k/python-slugify
|
||||
|
||||
Args:
|
||||
slug (str): The string to be slugified
|
||||
|
||||
"""
|
||||
|
||||
return slugify_func(slug, *args, **wargs)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue