一、四要素
1、姓名:
name=fk.name()
2、身份证
card=fk.ssn()
3、手机号
phone=fk.phone_number()
4、银行卡
card_num=fk.credit_card_number()
二、个人信息
1、地址
address=fk.address()
2、公司名称
company=fk.company()
3、职位名称
4、邮箱
email=fk.email()
5、城市
city=fk.city()
6、省份
province=fk.province()
7、国家
country=fk.country()
8、生成完整的个人信息
persion=fk.simple_profile() #简单的个人信息
per=fk.profile() #详细的个人信息
三、文本类
1、字符串
pystring=fk.pystr()
2、词语
word=fk.word()
3、文章
text=fk.text()
4、随机数
randon_num=fk.radom_int(min=100,max=999)
四、时间类
#年、月、日
year=fk.year()
month=fk.month()
#年-月-日
date=fk.date()
#当前年月日
now=fk.date_this_year()
#当前年月日时分秒
time=fk.date_time()
#指定时间范围
time1=fk.date_between(start_date="-2y",end_date="-1y")
#y:年 m:月
#未来时间
fk.future_date()
fk.future_datetime()
#时区
timezone=fk.timezone()
print(timezone)
五、高级用法
1、数据去重
name_list=[fk.unique.name() for i in range(10)]
num_list=[i for i in range(10)]
2、数据共享
类方法:Faker.seed()
class Test:
def __init__(self):
self.fk=Faker(locale="zh-CN")
def test01(self):
Faker.seed(1111)
print(self.fk.name())
def test02(self):
Faker.seed(1111)
print(self.fk.name())
if __name__=='__main__':
cl=Test()
cl.test01()
cl.test02()
|