python-slugify slug化库,把unicode转化为ASCII
python-slugify开源的把unicode转化为ASCII库
python-slugify,是Python第三方库,是一个处理unicode的Python slugify应用程序,可以将unicode编码的字符串转化为ASCII编码。
python-slugify应用实例
写入Python文件,然后运行文件:
from slugify import slugify
txt = "This is a test ---"
r = slugify(txt)
self.assertEqual(r, "this-is-a-test")
txt = '影师吗'
r = slugify(txt)
self.assertEqual(r, "ying-shi-ma")
txt = '影师吗'
r = slugify(txt, allow_unicode=True)
self.assertEqual(r, "影师吗")
Github开源协议和stars
MIT license
Github 1.4k stars
python-slugify安装命令
pip install python-slugify
Python版本要求
Python | Slugify |
---|---|
>= 2.7 < 3.6 | < 5.0.0 |
>= 3.6 < 3.7 | >= 5.0.0 < 7.0.0 |
>= 3.7 | >= 7.0.0 |
免责声明:内容编辑自网络,仅供参考,不保证正确性,不作任何决策依据!!以上数据皆截止于博文的写稿日期。