作用
使用python伪造一些假数据
官方文档
https://faker.readthedocs.io/en/master/
参考博客
https://www.cnblogs.com/hellangels333/p/9039784.html
一般使用
1.安装
pip install faker
2.创建faker对象
from faker import Faker, Factory
# 创建faker对象
# 1.通过工厂函数来创建
fake1 = Factory.create()
# 2.通过构造函数来创建
fake2 = Faker()
3.生成数据
fake3 = Faker("zh_CN")
# 中国人名
print(fake3.name())