2021
01-17
01-17
python工具——Mimesis的简单使用教程
Mimesis是一个用于Python的高性能伪数据生成器, 支持多种不同的语言可以用来生成各种测试数据、假的API、任意结构的JSON、XML数据安装pipinstallmimesis示例frommimesisimportPersonperson=Person('zh')print(f'name:{person.surname()+""+person.name()}')print(f'sex:{person.sex()}')print(f'academicdegree:{person.academic_degree()}')print(f'occupation:{person.occupation()}')email=person...
继续阅读 >