python虚拟数据生成模块Faker基础方法使用

      每天感觉最有意思的蚀刻机就是工作结束后,腾出来一点时间鼓捣一些自己喜欢的东西,今天遇到测试一个模块上的问题,需要数据来校验,但是现在没有需要的数据只好自己去造一些数据,但是造数据却又很慢影响效率,这里淘到了一个专门用来造假数据的模块faker,忍不住要来试用一番。

    GitHub链接在这里,需要源码的可以到这里下载,自己编译和安装。官方的文档在这里,需要看一些使用示例的话可以参考这里的文档。

    faker看起来很小,但是功能还是很强大的,能够生成各式各样的数据,同时也支持很多种语言类型,我这里粗略统计了一下,一共支持:42种语言,可以看出来作者还是很用心的了。

 1 faker支持的语言类型:
 2 ar_EG  - 阿拉伯语(埃及)
 3 ar_PS  - 阿拉伯语(巴勒斯坦)
 4 ar_SA  - 阿拉伯语(沙特阿拉伯)
 5 bs_BA  - 波斯尼亚语
 6 bg_BG  - 保加利亚语
 7 cs_CZ  - 捷克语
 8 de_DE  - 德语
 9 dk_DK  - 丹麦语
10 el_GR  - 希腊文
11 en_AU  - 英语(澳大利亚)
12 en_CA  - 英语(加拿大)
13 en_GB  - 英语(英国)
14 en_NZ  - 英语(新西兰)
15 en_US  - 英语(美国)
16 es_ES  - 西班牙语(西班牙)
17 es_MX  - 西班牙语(墨西哥)
18 et_EE  - 爱沙尼亚语
19 fa_IR  - 波斯语(伊朗)
20 fi_FI  - 芬兰语
21 fr_FR  - 法语
22 hi_IN  - 印地语
23 hr_HR  - 克罗地亚语
24 hu_HU  - 匈牙利语
25 it_IT  - 意大利语
26 ja_JP  - 日语
27 ko_KR  - 韩文
28 lt_LT  - 立陶宛语
29 lv_LV  - 拉脱维亚语
30 ne_NP  - 尼泊尔语
31 nl_NL  - 荷兰(荷兰)
32 no_NO  - 挪威语
33 pl_PL  - 波兰语
34 pt_BR  - 葡萄牙语(巴西)
35 pt_PT  - 葡萄牙语(葡萄牙)
36 ro_RO  - 罗马尼亚语
37 ru_RU  - 俄语
38 sl_SI  - 斯洛文尼亚
39 sv_SE  - 瑞典语
40 tr_TR  - 土耳其语
41 uk_UA  - 乌克兰语
42 zh_CN  - 中文(中国)
43 zh_TW  - 中文(台湾)
44 ka_GE  - 格鲁吉亚(格鲁吉亚)

 

下面的是我具体的实践,相关的注释都在代码里面了:

  1 #!usr/bin/env python
  2 #encoding:utf-8
  3  
  4 '''
  5 __Author__:沂水寒城
  6 功能: python 虚拟数据生成模块 faker 使用
  7 '''
  8  
  9 import sys
 10 reload(sys)
 11 sys.setdefaultencoding('utf-8')
 12 from faker import Faker
 13 from faker import Factory
 14 from faker.providers import internet
 15  
 16  
 17 '''
 18 faker支持的语言类型:
 19 ar_EG  - 阿拉伯语(埃及)
 20 ar_PS  - 阿拉伯语(巴勒斯坦)
 21 ar_SA  - 阿拉伯语(沙特阿拉伯)
 22 bs_BA  - 波斯尼亚语
 23 bg_BG  - 保加利亚语
 24 cs_CZ  - 捷克语
 25 de_DE  - 德语
 26 dk_DK  - 丹麦语
 27 el_GR  - 希腊文
 28 en_AU  - 英语(澳大利亚)
 29 en_CA  - 英语(加拿大)
 30 en_GB  - 英语(英国)
 31 en_NZ  - 英语(新西兰)
 32 en_US  - 英语(美国)
 33 es_ES  - 西班牙语(西班牙)
 34 es_MX  - 西班牙语(墨西哥)
 35 et_EE  - 爱沙尼亚语
 36 fa_IR  - 波斯语(伊朗)
 37 fi_FI  - 芬兰语
 38 fr_FR  - 法语
 39 hi_IN  - 印地语
 40 hr_HR  - 克罗地亚语
 41 hu_HU  - 匈牙利语
 42 it_IT  - 意大利语
 43 ja_JP  - 日语
 44 ko_KR  - 韩文
 45 lt_LT  - 立陶宛语
 46 lv_LV  - 拉脱维亚语
 47 ne_NP  - 尼泊尔语
 48 nl_NL  - 荷兰(荷兰)
 49 no_NO  - 挪威语
 50 pl_PL  - 波兰语
 51 pt_BR  - 葡萄牙语(巴西)
 52 pt_PT  - 葡萄牙语(葡萄牙)
 53 ro_RO  - 罗马尼亚语
 54 ru_RU  - 俄语
 55 sl_SI  - 斯洛文尼亚
 56 sv_SE  - 瑞典语
 57 tr_TR  - 土耳其语
 58 uk_UA  - 乌克兰语
 59 zh_CN  - 中文(中国)
 60 zh_TW  - 中文(台湾)
 61 ka_GE  - 格鲁吉亚(格鲁吉亚)
 62 常用方法一览city_suffix():市,县country():国家country_code():国家编码district():区geo_coordinate():地理坐标latitude():地理坐标(纬度)longitude():地理坐标(经度)lexify():替换所有问号(“?”)带有随机字母的事件。numerify():三位随机数字postcode():邮编province():省份street_address():街道地址street_name():街道名street_suffix():街、路random_digit():0~9随机数random_digit_not_null():1~9的随机数random_element():随机字母random_int():随机数字,默认0~9999,可以通过设置min,max来设置random_letter():随机字母random_number():随机数字,参数digits设置生成的数字位数color_name():随机颜色名hex_color():随机HEX颜色rgb_color():随机RGB颜色safe_color_name():随机安全色名safe_hex_color():随机安全HEX颜色bs():随机公司服务名company():随机公司名(长)company_prefix():随机公司名(短)company_suffix():公司性质credit_card_expire():随机信用卡到期日credit_card_full():生成完整信用卡信息credit_card_number():信用卡号credit_card_provider():信用卡类型credit_card_security_code():信用卡安全码currency_code():货币编码am_pm():AM/PMcentury():随机世纪date():随机日期date_between():随机生成指定范围内日期,参数:start_date,end_date取值:具体日期或者today,-30d,-30y类似date_between_dates():随机生成指定范围内日期,用法同上date_object():随机生产从1970-1-1到指定日期的随机日期。date_this_month():date_this_year():date_time():随机生成指定时间(1970年1月1日至今)date_time_ad():生成公元1年到现在的随机时间date_time_between():用法同datesfuture_date():未来日期future_datetime():未来时间month():随机月份month_name():随机月份(英文)past_date():随机生成已经过去的日期past_datetime():随机生成已经过去的时间time():随机24小时时间timedelta():随机获取时间差time_object():随机24小时时间,time对象time_series():随机TimeSeries对象timezone():随机时区unix_time():随机Unix时间year():随机年份file_extension():随机文件扩展名file_name():随机文件名(包含扩展名,不包含路径)file_path():随机文件路径(包含文件名,扩展名)mime_type():随机mime Typeascii_company_email():随机ASCII公司邮箱名ascii_email():随机ASCII邮箱ascii_free_email():ascii_safe_email():company_email():domain_name():生成域名domain_word():域词(即,不包含后缀)email():free_email():free_email_domain():f.safe_email():安全邮箱f.image_url():随机URL地址ipv4():随机IP4地址ipv6():随机IP6地址mac_address():随机MAC地址tld():网址域名后缀(.com,.net.cn,等等,不包括.)uri():随机URI地址uri_extension():网址文件后缀uri_page():网址文件(不包含后缀)uri_path():网址文件路径(不包含文件名)url():随机URL地址user_name():随机用户名isbn10():随机ISBN(10位)isbn13():随机ISBN(13位)job():随机职位paragraph():随机生成一个段落paragraphs():随机生成多个段落,通过参数nb来控制段落数,返回数组sentence():随机生成一句话sentences():随机生成多句话,与段落类似text():随机生成一篇文章(不要幻想着人工智能了,至今没完全看懂一句话是什么意思)word():随机生成词语words():随机生成多个词语,用法与段落,句子,类似binary():随机生成二进制编码boolean():True/Falselanguage_code():随机生成两位语言编码locale():随机生成语言/国际 信息md5():随机生成MD5null_boolean():NULL/True/Falsepassword():随机生成密码,可选参数:length:密码长度;special_chars:是否能使用特殊字符;digits:是否包含数字;upper_case:是否包含大写字母;lower_case:是否包含小写字母sha1():随机SHA1sha256():随机SHA256uuid4():随机UUIDfirst_name():first_name_female():女性名first_name_male():男性名first_romanized_name():罗马名last_name():last_name_female():女姓last_name_male():男姓last_romanized_name():name():随机生成全名name_female():男性全名name_male():女性全名romanized_name():罗马名msisdn():移动台国际用户识别码,即移动用户的ISDN号码phone_number():随机生成手机号phonenumber_prefix():随机生成手机号段profile():随机生成档案信息simple_profile():随机生成简单档案信息
 63 随机生成指定类型数据:pybool():pydecimal():pydict():pyfloat():left_digits=5 #生成的整数位数,                  right_digits=2 #生成的小数位数,                  positive=True #是否只有正数pyint():pyiterable()pylist()pyset()pystr()pystruct()pytuple()ssn():生成身份证号chrome():随机生成Chrome的浏览器user_agent信息firefox():随机生成FireFox的浏览器user_agent信息internet_explorer():随机生成IE的浏览器user_agent信息opera():随机生成Opera的浏览器user_agent信息safari():随机生成Safari的浏览器user_agent信息linux_platform_token():随机Linux信息user_agent():随机user_agent信息
 64 '''
 65  
 66  
 67 def simpleFunctionUse():
 68     '''
 69     简单函数生成的使用
 70     '''
 71     languages=['ar_EG','ar_PS','ar_SA','bs_BA','bg_BG','cs_CZ','de_DE','dk_DK','el_GR','en_AU','en_CA',
 72                'en_GB','en_NZ','en_US','es_ES','es_MX','et_EE','fa_IR','fi_FI','fr_FR','hi_IN','hr_HR',
 73                'hu_HU','it_IT','ja_JP','ko_KR','lt_LT','lv_LV','ne_NP','nl_NL','no_NO','pl_PL','pt_BR',
 74                'pt_PT','ro_RO','ru_RU','sl_SI','sv_SE','uk_UA','zh_CN','zh_TW','ka_GE']
 75     fake=Faker('zh_CN')
 76     print '====================== name ========================'
 77     print fake.name()
 78     print '====================== address ========================'
 79     print fake.address()
 80     print '====================== text ========================'
 81     print fake.text()
 82     print '====================== profile ========================'
 83     print fake.profile()
 84     print '====================== sentence ========================'
 85     print fake.sentence()
 86     print '====================== getstate ========================'
 87     print fake.random.getstate()
 88     print '====================== IPV4 ========================'
 89     fake=Factory.create()
 90     fake.add_provider(internet)
 91     print fake.ipv4_private()
 92  
 93  
 94 def simpleTypeNumber():
 95     '''
 96     简单类型数据生成的使用
 97     '''
 98     fake=Faker()
 99     print '====================== Bool Number ========================'
100     print fake.pybool()
101     print '====================== Decimal Number ========================'
102     print fake.pydecimal
103     print '====================== Dict Number ========================'
104     print fake.pydict()
105     print '====================== Float Number ========================'
106     print fake.pyfloat()
107     print '====================== Positive Float Number ========================'
108     print fake.pyfloat(positive=True)
109     print '====================== Int Number ========================'
110     print fake.pyint()
111     print '====================== Iterable Number ========================'
112     print fake.pyiterable()
113     print '====================== List Number ========================'
114     print fake.pylist()
115     print '====================== Set Number ========================'
116     print fake.pyset()
117     print '====================== Str Number ========================'
118     print fake.pystr()
119     print '====================== Struct Number ========================'
120     print fake.pystruct()
121     print '====================== Tuple Number ========================'
122     print fake.pytuple()
123     print '====================== SSN Number ========================'
124     print fake.ssn()
125     print '====================== Chrome Number ========================'
126     print fake.chrome()
127     print '====================== FireFox Number ========================'
128     print fake.firefox()
129     print '====================== IE Number ========================'
130     print fake.internet_explorer()
131     print '====================== Opera Number ========================'
132     print fake.opera()
133     print '====================== Safari Number ========================'
134     print fake.safari()
135     print '====================== Linux_platform_token Number ========================'
136     print fake.linux_platform_token()
137     print '====================== User_agent Number ========================'
138     print fake.user_agent()
139     
140  
141 def personProfile():
142     '''
143     简单地来生成个人的基础信息
144     '''
145     languages=['ar_EG','ar_PS','ar_SA','bs_BA','bg_BG','cs_CZ','de_DE','dk_DK','el_GR','en_AU','en_CA',
146                'en_GB','en_NZ','en_US','es_ES','es_MX','et_EE','fa_IR','fi_FI','fr_FR','hi_IN','hr_HR',
147                'hu_HU','it_IT','ja_JP','ko_KR','lt_LT','lv_LV','ne_NP','nl_NL','no_NO','pl_PL','pt_BR',
148                'pt_PT','ro_RO','ru_RU','sl_SI','sv_SE','uk_UA','zh_CN','zh_TW','ka_GE']
149     for one in languages:
150         fake=Faker(one)
151         print u"当前语言============================>",one
152         print fake.profile()
153  
154  
155 if __name__=='__main__':
156     simpleFunctionUse()
157     print '-'*100
158     simpleTypeNumber()
159     print '-'*100
160     personProfile()

 

    结果如下:

  1 ====================== name ========================
  2 尉建
  3 ====================== address ========================
  4 云南省西宁县沈北新耿路z座 580619
  5 ====================== text ========================
  6 虽然一次认为两个.中国可是登录服务参加.资源成功网站投资就是.
  7 这么注册主题全国.今年上海相关开发地址提高设计组织.不是所以的话出来发生.
  8 一个最后主题一种.人员完全通过之后您的联系当然.直接更新电影影响可能.
  9 国内网上使用就是希望下载国际.上海一种一点准备影响不要生产.留言这种管理电子要求.
 10 然后最大地址不要之后.分析是一只有阅读质量.
 11 电影系列客户留言可是.部分经验图片组织类型美国.
 12 ====================== profile ========================
 13 {'website': [u'https://jiezeng.cn/'], 'username': u'dongtao', 'name': u'\u7cb1\u51ac\u6885', 'blood_group': 'AB+', 'residence': u'\u5c71\u4e1c\u7701\u6c55\u5c3e\u5e02\u6c38\u5ddd\u901a\u8fbd\u8857v\u5ea7 599740', 'company': u'\u660a\u5609\u4f20\u5a92\u6709\u9650\u516c\u53f8', 'address': u'\u5409\u6797\u7701\u957f\u6c99\u5e02\u516d\u679d\u7279\u548c\u8857I\u5ea7 585844', 'birthdate': datetime.date(2007, 2, 4), 'sex': 'M', 'job': u'\u8d38\u6613', 'ssn': u'522730193910299579', 'current_location': (Decimal('-57.019412'), Decimal('116.757988')), 'mail': u'xhan@hotmail.com'}
 14 ====================== sentence ========================
 15 结果感觉主题规定企业.
 16 ====================== getstate ========================
 17 (3, (3858111235L, 640072339L, 435540262L, 1340603796L, 1279287693L, 458566835L, 2533634436L, 1089100231L, 2331733896L, 3342188491L, 447041040L, 1380236504L, 3875821474L, 1466109471L, 2646095469L, 550920739L, 2696659638L, 1365006009L, 2618820277L, 439252186L, 4087598805L, 3827479867L, 2871927548L, 2504300879L, 169399496L, 2406846200L, 1987375052L, 830252505L, 466521766L, 1574495785L, 3194389448L, 1936864184L, 1835249830L, 1753436375L, 4089615925L, 3054348781L, 485681272L, 1783516409L, 1290624553L, 2689211466L, 2435043139L, 557460068L, 4132954553L, 1626587273L, 767683640L, 4146965255L, 4060468592L, 2867877870L, 1924290592L, 4017769679L, 2490118594L, 2566311087L, 3769431969L, 3577309706L, 2891912767L, 2968580640L, 2438390487L, 424405186L, 3179268233L, 3644640032L, 3839899905L, 3763308789L, 1099871541L, 1404957791L, 2188585195L, 581443518L, 3882732238L, 3533057978L, 2157303026L, 2153241007L, 476401280L, 1767335964L, 1484422021L, 227112034L, 865559254L, 1664029515L, 110489499L, 915209846L, 4237183131L, 127890119L, 3698668028L, 2330876910L, 3629050272L, 2513029267L, 1564688497L, 1071783788L, 979700908L, 1369173527L, 1776191176L, 233162807L, 1568469721L, 3472933199L, 1231628468L, 2000761096L, 1566678193L, 2704701719L, 1221966157L, 591827182L, 860302475L, 626672902L, 4221393302L, 3159060690L, 3370696416L, 3529188925L, 4131798003L, 2659662095L, 1148595805L, 2802955257L, 1439714997L, 1811935796L, 2958161319L, 973346793L, 2834318213L, 501915560L, 284176591L, 3312055891L, 2509086900L, 2288169095L, 3592193626L, 966927560L, 346260335L, 607976462L, 2182486558L, 721891453L, 3841411593L, 4043565606L, 131976879L, 3224002675L, 2860282035L, 1445311052L, 3055800186L, 2724224816L, 4158099706L, 3145078478L, 2682046256L, 458063876L, 3507121069L, 3793203038L, 1849359497L, 34504121L, 1486476607L, 813234932L, 3704844418L, 1132572064L, 2327781785L, 934552630L, 417928638L, 3980869640L, 2307962249L, 1604228473L, 1129413821L, 97845785L, 2731036683L, 2426119178L, 4276946650L, 4255165157L, 2570971568L, 1897342039L, 642356450L, 812273205L, 30122176L, 206352578L, 3985929565L, 3005492957L, 3052483573L, 2205069527L, 4251623951L, 814261362L, 1084841876L, 3683667001L, 2022031117L, 1654395983L, 1556951283L, 420048001L, 1672290664L, 1824185922L, 3831320507L, 4169914453L, 3792257195L, 747168069L, 300712564L, 1909645438L, 4180775254L, 2052312667L, 3620974780L, 413542277L, 646012225L, 2918337379L, 4106914363L, 3967944179L, 2961063059L, 1728099673L, 373149328L, 2233802897L, 1029733463L, 3475481069L, 3622223600L, 261404650L, 2804932760L, 654598244L, 4002187830L, 4090432374L, 497732852L, 597658533L, 1209871139L, 1430438221L, 2927280493L, 359973217L, 180860485L, 1279444485L, 3209894511L, 2200849491L, 508350936L, 1244377894L, 3894100244L, 3825115180L, 95266096L, 127091856L, 3517428614L, 4277409586L, 2896281673L, 1613912042L, 2348670282L, 2031846458L, 3676456985L, 457836804L, 1428969736L, 3354103097L, 1292941716L, 2033860951L, 2486504974L, 64098704L, 3190771710L, 4068749910L, 881898766L, 1008954338L, 3725260492L, 557297390L, 1125847834L, 1780889401L, 4225008951L, 2331796301L, 2965930099L, 1346980029L, 1497494898L, 382486187L, 795338735L, 2633585424L, 3169960095L, 1747924220L, 4089150100L, 3570380671L, 1111735122L, 1877633408L, 447075242L, 2011962799L, 2027867283L, 870114989L, 1334156993L, 1817167746L, 1812463289L, 4006647490L, 599012109L, 3393663722L, 3514033118L, 2031298295L, 473429179L, 1303909441L, 3759113316L, 808352060L, 4117334170L, 1853268342L, 2746945156L, 2951719493L, 1600793633L, 3339903159L, 785845872L, 3503111556L, 3273364182L, 3841209231L, 583326019L, 370543591L, 3196585733L, 4125367339L, 1993725560L, 2824967408L, 4074060759L, 1906013031L, 2921745478L, 2377965524L, 985456254L, 697978460L, 51899196L, 2370541510L, 1455703487L, 3598570454L, 308983666L, 3323590562L, 565898869L, 1062147192L, 1639573823L, 417951176L, 3131063150L, 2943201241L, 4269709090L, 1644463243L, 1075125999L, 789903353L, 4082972142L, 4145191090L, 2912814756L, 1603508539L, 2975461946L, 1151193631L, 899940952L, 1985122772L, 3498998414L, 17792135L, 483039232L, 1647957526L, 3644205249L, 3814094664L, 300261077L, 275721971L, 2154422481L, 3616699202L, 367785954L, 3364456580L, 25465380L, 1896615427L, 3009165346L, 1739996096L, 1475279105L, 1485080512L, 927300876L, 2354778850L, 2997336462L, 2044383477L, 2499818680L, 3402676956L, 1391340803L, 1665495831L, 4109087810L, 2977856817L, 2852320589L, 1544163167L, 3377289176L, 2495198832L, 191757860L, 2410823085L, 594603566L, 2530428191L, 3037567635L, 488291089L, 693829569L, 1645290484L, 3767921633L, 1928451594L, 1782543758L, 1029170770L, 3302709585L, 3685118841L, 1577112656L, 2512081799L, 939427753L, 816384483L, 3133679237L, 4014646212L, 714627848L, 1422114547L, 3730401623L, 3760781829L, 1564678579L, 2978866635L, 2692038759L, 2490601411L, 2274561589L, 1729835732L, 2492368738L, 795618638L, 2184376651L, 1239354787L, 3347936641L, 3973130012L, 3308137757L, 2051400666L, 414609566L, 385613020L, 1281709185L, 2030136090L, 898884629L, 4291940932L, 1393226149L, 1410223341L, 3493453717L, 2963860853L, 2306152072L, 1483061169L, 3462174367L, 482905108L, 3082166510L, 2461443720L, 3382441147L, 36138203L, 3321906656L, 4020595331L, 3920411136L, 1026192632L, 3568438872L, 7747702L, 576338413L, 2935253422L, 2615263079L, 2599767233L, 624595720L, 528607048L, 3356078332L, 378663657L, 1068257394L, 2456195583L, 3385857193L, 3189471137L, 2869301182L, 694566706L, 359822913L, 3418473257L, 1795107197L, 997942938L, 891245630L, 555022635L, 1537978855L, 1341291095L, 1724103692L, 2247828211L, 2281081488L, 786647273L, 4098077302L, 314168200L, 979244099L, 1302883203L, 868128045L, 1025666473L, 3146893220L, 325456342L, 2198163000L, 2932400062L, 1593576002L, 2681585448L, 2607106882L, 2032460003L, 3721670417L, 4247442002L, 2631971443L, 3266717186L, 36356275L, 1122835261L, 579824225L, 1464430551L, 3294082382L, 2810538525L, 3021244246L, 692989687L, 2071657995L, 3636324108L, 295923218L, 70839726L, 491471329L, 27665331L, 2654100277L, 3708881798L, 4199960164L, 706321095L, 2928040330L, 2679205198L, 3225128442L, 14652356L, 587161996L, 1436373017L, 1814762462L, 1302660670L, 2717283554L, 3801403570L, 2999807703L, 565827710L, 62859484L, 273448670L, 3105544953L, 4198566912L, 2025603029L, 2152974198L, 1472705409L, 302197357L, 4137829999L, 2722763753L, 55834732L, 3231440244L, 2143841532L, 394202191L, 3160358927L, 2562399461L, 1081256866L, 2999756302L, 1254349769L, 2628441818L, 1870965386L, 1219354104L, 3815357115L, 1434942025L, 3433771413L, 4055515203L, 192422926L, 292382752L, 1115128330L, 2384211299L, 2558134106L, 2733366313L, 1858268604L, 730332066L, 3829224578L, 4277423851L, 1209161138L, 1972651699L, 13385077L, 3173482162L, 314841332L, 2131641692L, 2470138055L, 3115984357L, 1620355885L, 1103218703L, 2936186179L, 932619527L, 159628376L, 2899424094L, 4276765208L, 337678281L, 37714668L, 998788879L, 2973806895L, 1940181696L, 2389080105L, 1700779899L, 351407477L, 1337442896L, 2974875104L, 1491819418L, 2511292164L, 605469161L, 2516994001L, 36172520L, 921719461L, 1082131243L, 2339710464L, 1857233351L, 1906664901L, 266762428L, 2682525159L, 3679910990L, 77714337L, 2422319086L, 43098988L, 2562523211L, 3769727162L, 3706027806L, 3336708144L, 2016772441L, 3545152759L, 4219421415L, 2696812417L, 411364783L, 167816751L, 4082537736L, 1583982643L, 1199784144L, 2376822615L, 4175776215L, 259692489L, 823669382L, 1573430152L, 2739842493L, 1911231442L, 1612232535L, 3085612050L, 4125070186L, 423930712L, 4186926694L, 3720700255L, 2620467966L, 3807852264L, 2558060440L, 2006290337L, 624987762L, 3304809962L, 2752704000L, 1534866984L, 2233685920L, 3299065634L, 3470816201L, 225915220L, 1619756171L, 78358943L, 1559043344L, 3687195252L, 1459306335L, 3572164413L, 404131922L, 4239195712L, 2395220624L, 3448291438L, 662803108L, 1716104436L, 212992496L, 3079054967L, 2294747733L, 2153079995L, 3029048506L, 1423066758L, 941644894L, 1848534637L, 722546925L, 2430239268L, 3666268300L, 120857294L, 1652992982L, 454L), None)
 18 ====================== IPV4 ========================
 19 172.22.72.119
 20 ----------------------------------------------------------------------------------------------------
 21 ====================== Bool Number ========================
 22 True
 23 ====================== Decimal Number ========================
 24 <bound method Provider.pydecimal of <faker.providers.python.Provider object at 0x0000000003220630>>
 25 ====================== Dict Number ========================
 26 {u'reveal': u'HkFVooioHXoWgvVcESHh', u'deep': 3153, u'choice': u'gmmYUzInfXlhoKMjDcOe', u'their': datetime.datetime(1978, 12, 2, 12, 43, 40), u'game': u'KUwyfxpcyeqrfosXKQVu', u'fast': u'IcBOiDzxpwPTneoVETxM', u'hold': u'http://www.chapman.org/categories/app/login.html'}
 27 ====================== Float Number ========================
 28 -34548330.97
 29 ====================== Positive Float Number ========================
 30 21980.2311
 31 ====================== Int Number ========================
 32 9081
 33 ====================== Iterable Number ========================
 34 (u'ZuOQUbZBAbQOagRsJbvT', u'iEcOIYXjDPlsRCCzKzGv', 5492, Decimal('-6.24452350864E+13'), 537, u'muJUFSKbeyfJRbXAOPbq', u'solismiranda@yahoo.com')
 35 ====================== List Number ========================
 36 [8235, 5522.80116115, 49069667.0, u'https://rodriguez-benjamin.info/list/category/about.htm', 7693, u'goDdZAOtCozIEcHqVZrL', 626597847.83359, 7014, u'HVAWNVcQoXghFNNDMqSl', u'XjmGdzDUzsaowhjOnMeo']
 37 ====================== Set Number ========================
 38 set([2144, Decimal('-61.66'), u'michelle97@yahoo.com', 5130, u'http://martinez.com/login.jsp', 9261, Decimal('288385.184348'), u'https://www.daniels-vargas.biz/explore/home/', 2836, Decimal('2072924214.0'), u'fzqfxyuGqekQeNDnuzHE', u'https://lee.com/', datetime.datetime(2009, 11, 7, 20, 15, 49), u'oKiAdpDWvarKTsnJKPwm'])
 39 ====================== Str Number ========================
 40 lZeswAoWgZVfthLQjDzd
 41 ====================== Struct Number ========================
 42 ([9913, 76760376940834.0, -28292491735.7, u'HPFOrdGfuiOPEgiYIYsT', Decimal('161.31067'), -3405.8177974941, u'cEPqFxvGfLHaNxhwJVDa', u'gNoWUwLfjjZBjEmgDEMy', datetime.datetime(1999, 1, 20, 7, 19, 50), -792183671.5], {u'sell': u'KlGJhqleqolJyqyfQjSb', u'entire': Decimal('-1345.49674236'), u'about': u'https://www.moreno.com/homepage/', u'wish': 80431494.2664549, u'travel': u'http://rodriguez.org/categories/about.html', u'official': u'XJVWwKuEUfHKQdrrjnMp', u'thing': -38129304413240.9, u'call': Decimal('-5.90182186219E+13'), u'money': Decimal('3876917.2557'), u'where': -8718451.7}, {u'shoulder': {4: u'http://www.yoder.net/', 5: [datetime.datetime(1986, 5, 26, 0, 36, 35), u'DSLCwnJuzOJOowNTfMlm', u'https://www.sanders.net/'], 6: {4: u'eZIVKQXTOkeFyGXIvOqX', 5: u'tjhWbmmkPrwSDdSElLki', 6: [u'suyOYnErTfYGHNSVemth', u'mariaphillips@lewis.com']}}, u'himself': {2: 225, 3: [u'https://www.conway-harris.com/category.htm', 497, u'davisisaac@parker.info'], 4: {2: datetime.datetime(1985, 11, 13, 5, 26, 15), 3: u'http://www.logan.com/author/', 4: [Decimal('7.18456324976E+13'), u'eANWyZZSnLZhNCOjcomh']}}, u'consider': {8: [u'rUxdabtdXElcUgXoYDJn', datetime.datetime(2016, 2, 14, 1, 16, 43), u'http://www.sparks-martinez.info/'], 9: {8: 763, 9: [u'EcUQyGMPlRJfmXFCJSFr', u'eEkEUKWExYbiejHFkrZA'], 7: 380}, 7: Decimal('4.57476503857E+12')}, u'safe': {5: Decimal('-503600.5365'), 6: [Decimal('780519842897'), u'nzSDTRYRzPJvIyRiFHca', datetime.datetime(1979, 2, 13, 21, 43, 33)], 7: {5: 9525, 6: u'ChsKsXUGtfDHJgjdttnF', 7: [Decimal('471649.873796'), Decimal('-60.4')]}}, u'possible': {9: u'MttTSyojKpJMzwIUPxDI', 10: [4328, u'iXYoHbzCkaYGKrmatdeC', 522], 11: {9: 5504, 10: u'BXSwUFzgoAyZmkvRcYzl', 11: [u'gMPZGvNNaBPZmEKVjjGg', u'VGFIjSpzdTWRTHRkeeWF']}}, u'vote': {8: u'FBoKffhvhEWYbyHOlVyW', 9: [u'SYZivvcBbvbrkptOrCCZ', 8825, u'sYwSTaOPMTGxlEIlSTWI'], 10: {8: u'http://www.joseph.com/', 9: datetime.datetime(1991, 9, 9, 5, 1, 2), 10: [1493, u'dVMFtVgVesUtPPfvmnOg']}}, u'management': {1: datetime.datetime(1971, 1, 23, 19, 48, 55), 2: [u'zjXZEiDrSJVsSfAhPJPf', u'amanda84@cardenas.com', u'WvOaeTsNjRXNnqRsAetp'], 3: {1: u'kArzryfyEQQPOqqQqMsj', 2: u'ziQQdkDhqTEtHAoQruNK', 3: [4636, -56.7394327]}}, u'truth': {3: datetime.datetime(1979, 11, 7, 16, 24, 24), 4: [u'iamNIMETfXLwOoVdMbYk', Decimal('63.8875398027'), 780], 5: {3: u'ZIFCvmZaHffmdXCNYRXv', 4: 5360894135.4855, 5: [716982368844296.0, u'vDPGQAbEqIMISyxsPVhX']}}, u'already': {8: {8: [u'aGjKItUOGqUSMytESTqG', u'johnsonandrew@gmail.com'], 6: Decimal('545579.670844'), 7: u'hfBZbcrmPnzCObIHxXaq'}, 6: u'http://ramirez.com/index/', 7: [777, datetime.datetime(1979, 8, 31, 1, 11, 58), u'https://www.leon.com/login/']}, u'apply': {0: u'NWCggmcDebZUItKpfFnd', 1: [u'https://ortiz.com/', 5887, u'http://www.leonard-oneal.info/app/posts/category/author/'], 2: {0: u'https://www.martin.info/', 1: 4552, 2: [Decimal('736.52414'), u'laura66@curtis-rodriguez.net']}}})
 43 ====================== Tuple Number ========================
 44 (u'TAylviVKcfDkwzfHWVdf', datetime.datetime(2013, 6, 6, 5, 18, 7), u'SqhcAnKAfslRwrWxQNxs', u'NEOpItLpTbELGdeYTtka', u'JwAbfQBPntByszEdfXTn', 5593, u'HIxWBlXKEZdMfTAqQeQE', datetime.datetime(1998, 3, 12, 9, 0, 29), u'gkzxzHQDuLSEgdVtmZok')
 45 ====================== SSN Number ========================
 46 150-82-6331
 47 ====================== Chrome Number ========================
 48 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5310 (KHTML, like Gecko) Chrome/33.0.893.0 Safari/5310
 49 ====================== FireFox Number ========================
 50 Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_9_5; rv:1.9.3.20) Gecko/2011-04-23 12:12:30 Firefox/3.8
 51 ====================== IE Number ========================
 52 Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.01; Trident/5.1)
 53 ====================== Opera Number ========================
 54 Opera/9.82.(X11; Linux x86_64; mn-MN) Presto/2.9.174 Version/11.00
 55 ====================== Safari Number ========================
 56 Mozilla/5.0 (iPod; U; CPU iPhone OS 4_2 like Mac OS X; sq-ML) AppleWebKit/531.32.4 (KHTML, like Gecko) Version/4.0.5 Mobile/8B119 Safari/6531.32.4
 57 ====================== Linux_platform_token Number ========================
 58 X11; Linux i686
 59 ====================== User_agent Number ========================
 60 Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 4.0; Trident/3.1)
 61 ----------------------------------------------------------------------------------------------------
 62 当前语言============================> ar_EG
 63 {'website': [u'https://miller.com/'], 'username': u'matthewelliott', 'name': u'Lynn Mays', 'blood_group': 'B+', 'residence': u'74458 Charles Fords\nCochranville, RI 98754', 'company': u'Ramirez-Wilson', 'address': u'030 Michael Loaf\nWest William, MO 04443', 'birthdate': datetime.date(1999, 10, 28), 'sex': 'F', 'job': 'Radiographer, diagnostic', 'ssn': u'698-76-6606', 'current_location': (Decimal('67.348578'), Decimal('-98.789572')), 'mail': u'booneronald@hotmail.com'}
 64 当前语言============================> ar_PS
 65 {'website': [u'http://www.hmmy-lslhy.com/'], 'username': u'ltwfmhyr', 'name': u'\u0645\u0639\u0627\u0631\u0641 \u0627\u0644\u062e\u0627\u0632\u0646', 'blood_group': 'B+', 'residence': u'69297 \u062f\u063a\u0645\u0634 Via\nPort \u0631\u0641\u064a\u0642burgh, WY 98785', 'company': u'\u0627\u0644\u062a\u0645\u064a\u0645\u064a PLC', 'address': u'058 \u0646\u062c\u0645 \u0627\u0644\u062f\u0651\u064a\u0646 Shoal Suite 727\nSouth \u0623\u0632\u0647\u0627\u0631ton, WI 98735', 'birthdate': datetime.date(1917, 1, 11), 'sex': 'M', 'job': 'Engineer, electrical', 'ssn': u'326-84-7588', 'current_location': (Decimal('16.4714145'), Decimal('6.339282')), 'mail': u'hmmyflh@hotmail.com'}
 66 当前语言============================> ar_SA
 67 {'website': [u'http://www.lqyl.net/', u'http://al.info/', u'http://www.al.com/'], 'username': u'hmhn', 'name': u'\u0644\u064a\u0627\u0646 \u0627\u0644\u0634\u0627\u064a\u0639', 'blood_group': 'O-', 'residence': u'USNV \u0623\u0628\u0648 \u062f\u0627\u0648\u0648\u062f\nFPO AA 49648', 'company': u'\u0627\u0644\u0645\u0647\u064a\u062f\u0628, \u0622\u0644 \u062d\u0633\u064a\u0646 and \u0622\u0644 \u0642\u0635\u064a\u0631', 'address': u'68465 \u0627\u0644\u0634\u0627\u064a\u0639 Square Apt. 705\n\u0622\u0644 \u0627\u0644\u0639\u0633\u0643\u0631\u064atown, PA 09882', 'birthdate': datetime.date(1917, 1, 31), 'sex': 'F', 'job': 'Quantity surveyor', 'ssn': u'380-52-8428', 'current_location': (Decimal('72.9376415'), Decimal('45.214640')), 'mail': u'zal-wd@gmail.com'}
 68 当前语言============================> bs_BA
 69 {'website': [u'https://www.cox-hoffman.com.ba/'], 'username': u'deborahunderwood', 'name': u'Ashlee Moore', 'blood_group': 'AB-', 'residence': u'USNV Diaz\nFPO AA 80780', 'company': u'Casey Ltd', 'address': u'Unit 7289 Box 7565\nDPO AP 22836', 'birthdate': datetime.date(1989, 2, 16), 'sex': 'F', 'job': u'Konferencijski tuma\u010d', 'ssn': u'154-69-9178', 'current_location': (Decimal('71.488865'), Decimal('61.826907')), 'mail': u'zmartinez@gmail.com'}
 70 当前语言============================> bg_BG
 71 {'website': [u'http://www.klatikrushev.bg/', u'http://www.tukhchiev.bg/', u'http://www.prinov.edu/', u'https://www.kurtazhova.com/'], 'username': u'dokovaalbiyana', 'name': u'\u0414\u0440. \u041a\u0440\u0438\u0441\u0442\u0438\u044f \u0428\u043a\u0435\u043c\u0431\u043e\u0432\u0430', 'blood_group': 'B+', 'residence': u'681 \u0411\u0435\u043b\u043e\u043a\u043e\u043d\u0441\u043a\u0430-\u0412\u0440\u0430\u0436\u0430\u043b\u0441\u043a\u0430 Trafficway Suite 908\nPort \u042f\u043d\u0438\u0441\u043b\u0430\u0432, RI 05861', 'company': u'\u0411\u0440\u0430\u0442\u0443\u0445\u0447\u0435\u0432 \u041f\u044a\u043a\u043e\u0432 KDA', 'address': u'8506 \u041a\u0435\u0441\u044c\u043e\u0432 Garden Suite 477\n\u041a\u0430\u0442\u0430\u043b\u0438\u043d\u043a\u0430view, CA 61260', 'birthdate': datetime.date(2016, 5, 7), 'sex': 'F', 'job': 'Teacher, secondary school', 'ssn': u'461-84-9887', 'current_location': (Decimal('-83.248350'), Decimal('-119.604592')), 'mail': u'kpendzhakova@abv.bg'}
 72 当前语言============================> cs_CZ
 73 {'website': [u'http://benes.cz/', u'https://www.soukup.cz/', u'http://blaha.com/', u'http://www.prochazkova.cz/'], 'username': u'ourbanova', 'name': u'Dominika Kopeck\xe1 Ph.D.', 'blood_group': 'A+', 'residence': u'Sta\u0148kovka 3/8\n996 97 Rokytnice v Orlick\xfdch hor\xe1ch', 'company': u'Vl\u010dkov\xe1 o.s.', 'address': u'Nad Z\xe1me\u010dkem 9\n502 60 Horn\xed Ji\u0159et\xedn', 'birthdate': datetime.date(1949, 1, 14), 'sex': 'F', 'job': 'Pensions consultant', 'ssn': u'657-09-1253', 'current_location': (Decimal('-63.7808335'), Decimal('-108.362175')), 'mail': u'ykrizova@post.cz'}
 74 当前语言============================> de_DE
 75 {'website': [u'http://ernst.de/', u'http://noack.com/'], 'username': u'jungferauguste', 'name': u'Hasan Seidel', 'blood_group': 'AB+', 'residence': u'Bayram-Mies-Weg 6/3\n42319 Wernigerode', 'company': u'Kambs Beyer Stiftung & Co. KG', 'address': u'Peukertallee 66\n36874 Apolda', 'birthdate': datetime.date(1997, 4, 30), 'sex': 'M', 'job': 'Architectural technologist', 'ssn': u'741-48-6978', 'current_location': (Decimal('-74.357886'), Decimal('-156.987076')), 'mail': u'creinhardt@hotmail.de'}
 76 当前语言============================> dk_DK
 77 {'website': [u'https://www.lassen.com/'], 'username': u'hholst', 'name': u'Prof. Erik Lund', 'blood_group': 'O+', 'residence': u'USNS Jessen\nFPO AE 19020', 'company': u'Kristoffersen PLC', 'address': u'4918 Simonsen Crescent\nChristiansenbury, KS 31090', 'birthdate': datetime.date(1955, 10, 12), 'sex': 'M', 'job': 'Podiatrist', 'ssn': u'799-03-0244', 'current_location': (Decimal('41.431795'), Decimal('-75.798787')), 'mail': u'marie53@yahoo.com'}
 78 当前语言============================> el_GR
 79 {'website': [u'http://ziros-kyrgiakis.net/', u'http://miliadou.com/'], 'username': u'upapanti04', 'name': u'\u0392\u03b1\u03c1\u03b2\u03ac\u03c1\u03b1 \u03a4\u03b6\u03ac\u03b3\u03ba\u03b1', 'blood_group': 'O-', 'residence': u'\u038c\u03b8\u03bf\u03c5\u03c2 964-390,\n518 66 \u0395\u03c1\u03bc\u03bf\u03cd\u03c0\u03bf\u03bb\u03b7', 'company': u'\u039a\u03c5\u03c1\u03b3\u03b9\u03ac, \u03a6\u03c1\u03b1\u03b3\u03ba\u03cc\u03c0\u03bf\u03c5\u03bb\u03bf\u03c2 and \u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03af\u03b4\u03bf\u03c5', 'address': u'\u039c\u03b1\u03bd\u03c4\u03b1\u03c3\u03b9\u03ac\u03c2 25,\n\u03a4\u039a 574 23 \u03a3\u03ad\u03c1\u03c1\u03b5\u03c2', 'birthdate': datetime.date(1928, 3, 20), 'sex': 'F', 'job': 'Osteopath', 'ssn': u'105-90-8575', 'current_location': (Decimal('56.129009'), Decimal('-149.684614')), 'mail': u'taxiarchos.synodinou@gmail.com'}
 80 当前语言============================> en_AU
 81 {'website': [u'http://allen.edu.au/', u'https://kelley-martinez.info/', u'https://cain.biz/', u'http://www.hall-williams.net.au/'], 'username': u'audreyblair', 'name': u'Megan Jones', 'blood_group': 'B-', 'residence': u'292 Reyes Corso\nLawrenceton, NSW, 2017', 'company': u'Lane, Rollins and Bryant', 'address': u'478 Adam Link\nRojashaven, NT, 2918', 'birthdate': datetime.date(1927, 3, 28), 'sex': 'F', 'job': 'Fine artist', 'ssn': u'664-84-7837', 'current_location': (Decimal('-47.318909'), Decimal('131.288811')), 'mail': u'qdixon@yahoo.com.au'}
 82 当前语言============================> en_CA
 83 {'website': [u'https://edwards-chan.net/'], 'username': u'cynthia99', 'name': u'Amy Bell', 'blood_group': 'A+', 'residence': u'245 Stewart Rapids\nSouth Thomasbury, NU N6E3E1', 'company': u'Berger PLC', 'address': u'491 Price Spring Apt. 852\nCooperhaven, YT S7K 1Y4', 'birthdate': datetime.date(1977, 4, 11), 'sex': 'F', 'job': 'Theatre manager', 'ssn': u'462 380 171', 'current_location': (Decimal('-22.4939035'), Decimal('78.591469')), 'mail': u'ftrujillo@yahoo.com'}
 84 当前语言============================> en_GB
 85 {'website': [u'https://jones.com/', u'http://www.arnold.com/', u'https://howells.org/', u'https://walsh.com/'], 'username': u'knightkayleigh', 'name': u'Kevin Fox', 'blood_group': 'B-', 'residence': u'25 Geraldine valley\nRowefort\nTN9X 9AR', 'company': u'Moore-Perkins', 'address': u'Flat 3\nAlexander view\nLouiseland\nB2E 9PY', 'birthdate': datetime.date(1919, 7, 25), 'sex': 'F', 'job': 'Illustrator', 'ssn': u'ZZ 484360 T', 'current_location': (Decimal('82.213812'), Decimal('-92.980643')), 'mail': u'graemecarter@yahoo.com'}
 86 当前语言============================> en_NZ
 87 {'website': [u'http://www.stevens.geek.nz/'], 'username': u'emmacaldwell', 'name': u'Bruce Lewis', 'blood_group': 'A-', 'residence': u'529 Knox Access\nRD 8\nWoolley Hill 9700', 'company': u'Elliott, Ireland and Allen', 'address': u'5 Stewart Terrace\nWebbville 8167', 'birthdate': datetime.date(2012, 5, 1), 'sex': 'M', 'job': 'Sales promotion account executive', 'ssn': u'761-18-3331', 'current_location': (Decimal('42.421796'), Decimal('55.867058')), 'mail': u'david84@inspire.net.nz'}
 88 当前语言============================> en_US
 89 {'website': [u'http://www.lynch-henson.net/'], 'username': u'caitlyndalton', 'name': u'Judith Robinson', 'blood_group': 'B-', 'residence': u'329 Kathy Groves\nEast Elizabeth, OH 27125', 'company': u'Ramirez-Bauer', 'address': u'013 Nicholas Walks Suite 430\nSouth Alecport, OK 34176', 'birthdate': datetime.date(1920, 11, 14), 'sex': 'F', 'job': 'Fashion designer', 'ssn': u'418-74-7596', 'current_location': (Decimal('31.194637'), Decimal('171.635842')), 'mail': u'andersonrichard@gmail.com'}
 90 当前语言============================> es_ES
 91 {'website': [u'https://www.iniguez.com/'], 'username': u'casasnuria', 'name': u'Rodrigo S\xe1ez Cabeza', 'blood_group': 'AB-', 'residence': u'Callej\xf3n de Antonia Pallar\xe8s 72\nAsturias, 78050', 'company': u'Perales Group', 'address': u'Pasaje Julio Alvarez 4\nAlbacete, 02025', 'birthdate': datetime.date(1990, 12, 15), 'sex': 'M', 'job': 'Development worker, community', 'ssn': u'840-80-9194', 'current_location': (Decimal('30.3721775'), Decimal('-127.575762')), 'mail': u'monicagabaldon@gmail.com'}
 92 当前语言============================> es_MX
 93 {'website': [u'https://proyectos.com/'], 'username': u'isaac90', 'name': u'Karina Irene V\xe9lez', 'blood_group': 'B+', 'residence': u'Peatonal Chad 134 Interior 984\nVieja Belar\xfas, NAY 71173', 'company': u'Cort\xe9s S. R.L. de C.V.', 'address': u'Boulevard Sur Gonzales 563 967\nVieja Guinea Bissau, MICH 80952', 'birthdate': datetime.date(1949, 12, 15), 'sex': 'M', 'job': 'Firefighter', 'ssn': u'379-23-8028', 'current_location': (Decimal('-31.489115'), Decimal('100.845062')), 'mail': u'pamela69@yahoo.com'}
 94 当前语言============================> et_EE
 95 {'website': [u'https://volkov.com/', u'https://www.aus-raudsepp.com/', u'http://lumi.com/', u'http://treier.net/'], 'username': u'osibul', 'name': u'Diana \u0160t\u0161erbakov', 'blood_group': 'A-', 'residence': u'127 Olga Light Apt. 732\nNorth Mariaside, OH 32023', 'company': u'P\xf5ldmaa-Lipp', 'address': u'337 Oleg Rapid\nJuribury, NH 85227', 'birthdate': datetime.date(1949, 9, 22), 'sex': 'F', 'job': 'Local government officer', 'ssn': u'45702013163', 'current_location': (Decimal('41.838778'), Decimal('68.721081')), 'mail': u'valerinaumov@gmail.com'}
 96 当前语言============================> fa_IR
 97 {'website': [u'http://bymh.net/', u'https://sprdh.com/', u'http://www.lyzyng.com/'], 'username': u'kwthrnmty', 'name': u'\u0645\u0627\u0647\u0627\u0646 \u0631\u0633\u0648\u0644\u06cc', 'blood_group': 'AB+', 'residence': u'03898 \u0639\u0644\u06cc \u067e\u0648\u0631 \u0628\u0646 \u0628\u0633\u062a \u0633\u0648\u0626\u06cc\u062a 938\n\u0628\u0646\u062f\u0631 \u0622\u0631\u0645\u064a\u0646, \u0644\u0631\u0633\u062a\u0627\u0646 9106529607', 'company': u'\u0631\u0648\u063a\u0646 \u0646\u0628\u0627\u062a\u06cc \u06af\u0644\u0646\u0627\u0632', 'address': u'50525 \u067e\u0627\u0631\u0633\u0627 \u0686\u0647\u0627\u0631 \u0631\u0627\u0647\n\u0634\u0631\u0642 \u064a\u0633\u0646\u0627, \u0633\u0645\u0646\u0627\u0646 6355', 'birthdate': datetime.date(1996, 6, 30), 'sex': 'M', 'job': u'\u0645\u063a\u0627\u0632\u0647\u200c\u062f\u0627\u0631', 'ssn': u'849-72-0179', 'current_location': (Decimal('69.5448695'), Decimal('-43.847396')), 'mail': u'kmjthdy@yahoo.com'}
 98 当前语言============================> fi_FI
 99 {'website': [u'http://www.heikkinen.com/'], 'username': u'armas14', 'name': u'Katri Eriksson', 'blood_group': 'O-', 'residence': u'Caloniuksenpolku 453\n98951 Inkoo', 'company': u'Harju', 'address': u'Haakoninlahdenkuja 1\n56420 Liperi', 'birthdate': datetime.date(1980, 2, 20), 'sex': 'F', 'job': u'Laskennan kehitt\xe4misp\xe4\xe4llikk\xf6', 'ssn': u'140536-251E', 'current_location': (Decimal('-67.4903785'), Decimal('-57.783195')), 'mail': u'kmikkonen@luukku.com'}
100 当前语言============================> fr_FR
101 {'website': [u'https://www.collin.com/', u'http://baudry.com/', u'http://lopez.net/', u'https://www.duval.fr/'], 'username': u'jeannebouvet', 'name': u'Jean Lenoir', 'blood_group': 'B+', 'residence': u'5, rue de Foucher\n56 670 Imbert', 'company': u'Ferrand', 'address': u'rue Ramos\n03 743 Benoit-la-For\xeat', 'birthdate': datetime.date(1967, 8, 8), 'sex': 'M', 'job': u'Responsable de formation', 'ssn': u'019-13-4746', 'current_location': (Decimal('56.027429'), Decimal('-145.829360')), 'mail': u'monique68@bouygtel.fr'}
102 当前语言============================> hi_IN
103 {'website': [u'https://mllik-mnddl.com/', u'https://kaale.info/', u'https://www.duaa-dttaa.org/', u'http://www.bhnddaarii-grg.com/'], 'username': u'mukeshshriiviml', 'name': u'\u092c\u0938\u0941, \u091c\u0917\u0926\u0940\u0936', 'blood_group': 'AB-', 'residence': u'175 \u0926\u092f\u093e\u0932\n\u0905\u0939\u092e\u0926\u093e\u092c\u093e\u0926-523443', 'company': u'\u092e\u093e\u0928, \u0930\u093e\u092e\u0936\u0930\u094d\u092e\u093e and \u0915\u0941\u0923\u094d\u0921\u093e', 'address': u'67 \u0938\u093e\u0935\u093f\u0924\u094d\u0930\u0940 \u092e\u0923\u093f\n\u0905\u0939\u092e\u0926\u0928\u0917\u0930 588237', 'birthdate': datetime.date(1924, 3, 15), 'sex': 'F', 'job': 'Commissioning editor', 'ssn': u'349-69-8075', 'current_location': (Decimal('14.064925'), Decimal('129.481060')), 'mail': u'bsunikhil@yahoo.com'}
104 当前语言============================> hr_HR
105 {'website': [u'https://maloca.com.hr/'], 'username': u'marin62', 'name': u'Rudolf Mari\u0107', 'blood_group': 'O-', 'residence': u'Vla\u0161ka 90\n07207 Jastrebarsko', 'company': u'Mesi\u0107 j.d.o.o.', 'address': u'Strossmayerovo \u0161etali\u0161te 0b\n53543 Vrlika', 'birthdate': datetime.date(1918, 11, 11), 'sex': 'M', 'job': u'Kriminalist', 'ssn': u'01786345294', 'current_location': (Decimal('-23.4937705'), Decimal('2.052105')), 'mail': u'oroce@inet.hr'}
106 当前语言============================> hu_HU
107 {'website': [u'http://lakatos.com/', u'http://olah.hu/', u'https://horvath.hu/', u'http://www.jakab.com/'], 'username': u'gyula02', 'name': u'Fazekasn\xe9 Lakatos \xc9va', 'blood_group': 'A+', 'residence': u'Cegl\xe9di utca 178.\nH-7759 b\xe1nya', 'company': u'Nagy \xe9s t\xe1rsa Bt.', 'address': u'Sz\xe9kfalvai \xfat 49.\nH-5843 Szigetszentmikl\xf3s', 'birthdate': datetime.date(1926, 1, 12), 'sex': 'F', 'job': u'Filoz\xf3fus', 'ssn': u'15104014286', 'current_location': (Decimal('26.2018645'), Decimal('42.591069')), 'mail': u'rszabi@gmail.com'}
108 当前语言============================> it_IT
109 {'website': [u'http://www.martino.com/', u'http://mancini-fiore.it/'], 'username': u'celestepellegrino', 'name': u'Nathan De Santis', 'blood_group': 'AB-', 'residence': u'Via Rizzi 9 Piano 6\nQuarto Fortunata, 59230 Grosseto (AQ)', 'company': u'Fabbri SPA', 'address': u'Vicolo Bellini 9\nQuarto Arturo del friuli, 57971 Venezia (TS)', 'birthdate': datetime.date(1911, 10, 3), 'sex': 'F', 'job': 'Waste management officer', 'ssn': u'SRZBIL75P64U241W', 'current_location': (Decimal('-24.9359425'), Decimal('-31.611656')), 'mail': u'aroldo36@fastwebnet.it'}
110 当前语言============================> ja_JP
111 {'website': [u'https://www.aota.com/', u'https://takahashi.com/', u'http://tsuchiya.com/'], 'username': u'kanonaoki', 'name': u'\u5c0f\u6797 \u82b1\u5b50', 'blood_group': 'A-', 'residence': u'\u9999\u5ddd\u770c\u7df4\u99ac\u533a\u4e2d\u9262\u77f3\u753a7\u4e01\u76ee15\u756a8\u53f7', 'company': u'\u6728\u6751\u9271\u696d\u682a\u5f0f\u4f1a\u793e', 'address': u'\u9577\u91ce\u770c\u5b89\u623f\u90e1\u92f8\u5357\u753a\u9ad8\u8f2a20\u4e01\u76ee17\u756a4\u53f7 \u9ad8\u7530\u99ac\u5834\u30a2\u30fc\u30d0\u30f3228', 'birthdate': datetime.date(1912, 11, 4), 'sex': 'F', 'job': 'Licensed conveyancer', 'ssn': u'127-52-8042', 'current_location': (Decimal('-7.4362275'), Decimal('-167.770743')), 'mail': u'qtakahashi@yahoo.com'}
112 当前语言============================> ko_KR
113 {'website': [u'http://songim.net/'], 'username': u'ybag', 'name': u'\ud669\uc11c\uc5f0', 'blood_group': 'O-', 'residence': u'\uc778\ucc9c\uad11\uc5ed\uc2dc \uc11c\ucd08\uad6c \ud559\ub3d9\ub85c', 'company': u'\uc774\uc774\ud55c', 'address': u'\uc804\ub77c\ubd81\ub3c4 \uc6a9\uc778\uc2dc \ucc98\uc778\uad6c \ud14c\ud5e4\ub780\ub85c (\ud61c\uc9c4\uc774\uc774\ub9ac)', 'birthdate': datetime.date(1964, 2, 16), 'sex': 'F', 'job': u'\uc591\uc2dd\uc6d0', 'ssn': u'900100-1769537', 'current_location': (Decimal('76.726760'), Decimal('-45.124626')), 'mail': u'gimmisug@daum.net'}
114 当前语言============================> lt_LT
115 {'website': [u'https://www.urbonas.org/', u'http://gagys.com/', u'https://gailius.com/'], 'username': u'nausedavaidas', 'name': u'Gailius, Raminta', 'blood_group': 'AB-', 'residence': u'65417 Au\u0161ra Plains Apt. 506\nNorth Goda, IA 86015', 'company': u'Nagys, Grinius and Pocius', 'address': u'98183 Simona Radial\nNaru\u0161island, NV 64280', 'birthdate': datetime.date(1906, 10, 19), 'sex': 'M', 'job': 'Chiropodist', 'ssn': u'552-96-1964', 'current_location': (Decimal('-15.317762'), Decimal('67.808072')), 'mail': u'paulinagronskis@hotmail.com'}
116 当前语言============================> lv_LV
117 {'website': [u'http://abols.info/'], 'username': u'yauzins', 'name': u'Egl\u012btis, Zenta', 'blood_group': 'B-', 'residence': u'70909 Rubenis Forges\nLake Hel\u0113na, CO 56165', 'company': u'Lapsa Group', 'address': u'USS Bite\nFPO AE 53637', 'birthdate': datetime.date(2010, 2, 14), 'sex': 'M', 'job': 'Minerals surveyor', 'ssn': u'272-95-0373', 'current_location': (Decimal('-87.8622325'), Decimal('-7.929922')), 'mail': u'usilins@hotmail.com'}
118 当前语言============================> ne_NP
119 {'website': [u'http://www.kesii-khddgii.com/'], 'username': u'naahttaaraajesh', 'name': u'\u0915\u0947\u0936\u0935 \u0936\u093e\u0939', 'blood_group': 'B+', 'residence': u'\u0905\u0917\u094d\u0930\u0935\u093e\u0932 \u0928\u093f\u0935\u093e\u0938 \u0918\u0930 401 \n\u092a\u094d\u092f\u0941\u0920\u093e\u0928\n\u092e\u0928\u093e\u0919 03362', 'company': u'\u092e\u093e\u0928\u0928\u094d\u200d\u0927\u0930, \u0925\u093e\u092a\u093e and \u092e\u093e\u0928\u0928\u094d\u0927\u0930', 'address': u'\u092e\u0939\u0930\u094d\u091c\u0928 \u0906\u0936\u094d\u0930\u092e \u0935\u0921\u093e 9 \n\u0926\u0941\u0939\u0935\u0940-\u092d\u0932\u0941\u0935\u093e\n\u092c\u093e\u091c\u0941\u0930\u093e 70555', 'birthdate': datetime.date(1996, 2, 5), 'sex': 'M', 'job': 'Broadcast presenter', 'ssn': u'631-42-8358', 'current_location': (Decimal('49.717026'), Decimal('29.871582')), 'mail': u'ddhunggelnvin@hotmail.com'}
120 当前语言============================> nl_NL
121 {'website': [u'http://www.verheij-soos.org/', u'http://van.com/', u'http://van.com/', u'http://www.van.org/'], 'username': u'schermsseth', 'name': u'Stella van Laarhoven-Schelvis', 'blood_group': 'O-', 'residence': u'Inayasteeg 104\n5767GR\nVelserbroek', 'company': u'de Boer, van Wallaert and Sam', 'address': u'Daniquelaan 9\n6809 TC\nIdskenhuizen', 'birthdate': datetime.date(1982, 8, 24), 'sex': 'F', 'job': 'Audiological scientist', 'ssn': u'945831602', 'current_location': (Decimal('62.296239'), Decimal('-42.742504')), 'mail': u'voortmanevy@hotmail.com'}
122 当前语言============================> no_NO
123 {'website': [u'https://jakobsen.com/', u'http://www.strand.com/', u'http://ali.no/', u'https://www.arnesen.no/'], 'username': u'siri30', 'name': u'Maria Berge', 'blood_group': 'O+', 'residence': u'Jakobseneggen 96A, 7201 Vildehelle', 'company': u'Aune-Jensen AS', 'address': u'Andersenlia 5, 2230 Halvorsen', 'birthdate': datetime.date(1953, 11, 12), 'sex': 'F', 'job': 'Engineer, broadcasting (operations)', 'ssn': u'02033627486', 'current_location': (Decimal('-72.573800'), Decimal('-177.998072')), 'mail': u'maren39@yahoo.com'}
124 当前语言============================> pl_PL
125 {'website': [u'https://www.ppuh.pl/'], 'username': u'izok', 'name': u'Jan Kwapie\u0144', 'blood_group': 'O-', 'residence': u'aleja Letniskowa 57\n42-017 Ostrowiec \u015awi\u0119tokrzyski', 'company': u'Dacko i syn s.c.', 'address': u'plac Kopernika 61/12\n72-932 O\u0142awa', 'birthdate': datetime.date(1956, 12, 5), 'sex': 'F', 'job': u'Nauczyciel akademicki', 'ssn': u'75112641241', 'current_location': (Decimal('42.2850125'), Decimal('-83.287087')), 'mail': u'ngarczarek@gmail.com'}
126 当前语言============================> pt_BR
127 {'website': [u'http://www.souza.br/'], 'username': u'maria-alicemoura', 'name': u'Dr. Davi Lucas da Mota', 'blood_group': 'B+', 'residence': u'Alameda de Campos, 30\nFuncion\xe1rios\n22080-059 Ara\xfajo / TO', 'company': u'Alves', 'address': u'Rua de da Luz, 98\nSanta Rita De C\xe1ssia\n73975-947 Silva / AC', 'birthdate': datetime.date(1971, 9, 15), 'sex': 'M', 'job': u'Ventr\xedloquo', 'ssn': u'18796302577', 'current_location': (Decimal('7.029494'), Decimal('-137.409781')), 'mail': u'freitasdavi-lucas@ig.com.br'}
128 当前语言============================> pt_PT
129 {'website': [u'https://assuncao.pt/', u'https://pinheiro.pt/', u'https://branco.pt/'], 'username': u'antunessergio', 'name': u'Carolina Assun\xe7\xe3o', 'blood_group': 'B-', 'residence': u'Travessa Teixeira, 71\n4607-772 Guimar\xe3es', 'company': u'Lima S/A', 'address': u'Largo de Pinto, 515\n8138-476 Amora', 'birthdate': datetime.date(1968, 1, 7), 'sex': 'M', 'job': 'Surveyor, building control', 'ssn': u'703-13-0738', 'current_location': (Decimal('-83.0092065'), Decimal('21.271233')), 'mail': u'xavier68@clix.pt'}
130 当前语言============================> ro_RO
131 {'website': [u'https://www.popa.com/', u'https://www.popescu.com/', u'https://ene.com/'], 'username': u'johndiaconu', 'name': u'Eusta\u021biu Dima', 'blood_group': 'AB-', 'residence': u'8250 Stoica Fords Suite 214\nPort John, IA 18388', 'company': u'Georgescu, Georgescu and Tomescu', 'address': u'Unit 2288 Box 5016\nDPO AE 94649', 'birthdate': datetime.date(1979, 3, 25), 'sex': 'M', 'job': 'Historic buildings inspector/conservation officer', 'ssn': u'077-38-0053', 'current_location': (Decimal('-28.1603505'), Decimal('148.525878')), 'mail': u'janestanescu@gmail.com'}
132 当前语言============================> ru_RU
133 {'website': [u'http://www.ao.edu/', u'http://www.rao.com/', u'https://rao.info/'], 'username': u'gedeon_69', 'name': u'\u0411\u043e\u043b\u044c\u0448\u0430\u043a\u043e\u0432\u0430 \u041b\u0443\u043a\u0438\u044f \u0422\u0438\u043c\u043e\u0444\u0435\u0435\u0432\u043d\u0430', 'blood_group': 'B-', 'residence': u'\u0434. \u042d\u043b\u044c\u0431\u0440\u0443\u0441, \u0443\u043b. \u0420\u0430\u0434\u0443\u0436\u043d\u0430\u044f, \u0434. 54, 325653', 'company': u'\u0420\u0410\u041e \xab\u041f\u0440\u043e\u0445\u043e\u0440\u043e\u0432\u0430\xbb', 'address': u'\u0441. \u041e\u0440\u0435\u043b, \u0443\u043b. \u041b\u0430\u0437\u043e, \u0434. 54, 100784', 'birthdate': datetime.date(1925, 8, 25), 'sex': 'F', 'job': u'\u0422\u044b\u043b\u043e\u0432\u0438\u043a', 'ssn': u'894065711135', 'current_location': (Decimal('-3.022943'), Decimal('-134.638414')), 'mail': u'kliment1976@hotmail.com'}
134 当前语言============================> sl_SI
135 {'website': [u'http://laura.si/', u'http://neja.com/'], 'username': u'mark74', 'name': u'Roza Kuhar', 'blood_group': 'B-', 'residence': u'Slapnikova ulica 3c\n8395 Postojna', 'company': u'Tina Tav\u010dar s.p.', 'address': u'Mil\u010detova pot 6\n0875 Kostanjevica na Krki', 'birthdate': datetime.date(1975, 4, 11), 'sex': 'F', 'job': 'Research scientist (physical sciences)', 'ssn': u'025-02-7611', 'current_location': (Decimal('-64.402186'), Decimal('-157.635919')), 'mail': u'zlatkojovanovic@volja.net'}
136 当前语言============================> sv_SE
137 {'website': [u'http://www.danielsson.se/'], 'username': u'arvidssonida', 'name': u'Helen Lundgren', 'blood_group': 'A-', 'residence': u'Tr\xe4dg\xe5rdsv\xe4gen 07\n94299 Lidk\xf6ping', 'company': u'Jakobsson Nilsson HB', 'address': u'Kvarngatan 4\n36171 Pite\xe5', 'birthdate': datetime.date(1950, 12, 26), 'sex': 'F', 'job': 'Architect', 'ssn': u'661126-6393', 'current_location': (Decimal('-61.5972955'), Decimal('-86.882996')), 'mail': u'erlinglarsson@swipnet.se'}
138 当前语言============================> uk_UA
139 {'website': [u'http://www.eibozhenko.\u0443\u043a\u0440/', u'https://www.zasenko.ua/'], 'username': u'boryschalyi', 'name': u'\u041b\u0435\u043e\u043d\u0442\u0456\u0439 \u041a\u043e\u0437\u0430\u043a', 'blood_group': 'B-', 'residence': u'\u043d\u0430\u0431\u0435\u0440\u0435\u0436\u043d\u0430 \u0424\u0435\u0434\u044c\u043a\u043e \u0418\u0432\u0430\u043d\u0430, 59, \u0445\u0443\u0442\u0456\u0440 \u0424\u0435\u0434\u0456\u0440, 13133', 'company': u'\u041e\u043d\u0456\u0449\u0443\u043a LLC', 'address': u'\u043d\u0430\u0431\u0435\u0440\u0435\u0436\u043d\u0430 \u041c\u0430\u0440\u0448\u0430\u043b\u0430 \u0411\u0443\u0434\u0435\u043d\u043d\u043e\u0433\u043e, 47, \u0441\u0435\u043b\u0438\u0449\u0435 \u0421\u043f\u0430\u0441, 21883', 'birthdate': datetime.date(1986, 4, 4), 'sex': 'M', 'job': u'\u0413\u0440\u0430\u0444\u0456\u043a', 'ssn': u'2953057803', 'current_location': (Decimal('-77.8745835'), Decimal('-86.051878')), 'mail': u'zabaraborys@i.ua'}
140 当前语言============================> zh_CN
141 {'website': [u'http://www.zhanghe.cn/', u'https://gangzhou.cn/', u'https://wv.cn/', u'http://www.77.com/'], 'username': u'dyao', 'name': u'\u4e1c\u745c', 'blood_group': 'A+', 'residence': u'\u9ed1\u9f8d\u6c5f\u7701\u516d\u76d8\u6c34\u53bf\u666e\u9640\u9c8d\u8857q\u5ea7 352450', 'company': u'\u98de\u5229\u4fe1\u4f20\u5a92\u6709\u9650\u516c\u53f8', 'address': u'\u5e7f\u4e1c\u7701\u65ed\u5e02\u5357\u6e56\u9633\u8857r\u5ea7 454460', 'birthdate': datetime.date(1950, 1, 10), 'sex': 'M', 'job': u'\u7f8e\u672f\u6307\u5bfc', 'ssn': u'141028198305158808', 'current_location': (Decimal('-1.587913'), Decimal('-49.880491')), 'mail': u'jinggao@hotmail.com'}
142 当前语言============================> zh_TW
143 {'website': [u'http://gao.org/', u'https://www.long.tw/', u'http://hu.com/'], 'username': u'jun38', 'name': u'\u6771\u65b9\u601d\u7a4e', 'blood_group': 'B+', 'residence': u'24641 \u91d1\u9580\u5e02\u6c38\u548c\u5df73\u6bb586\u865f\u4e4b7', 'company': u'\u83ef\u4e2d\u90f5\u653f', 'address': u'476 \u592a\u5e73\u80b2\u82f1\u8def44\u865f0\u6a13', 'birthdate': datetime.date(1904, 3, 4), 'sex': 'M', 'job': u'\u8a08\u7a0b\u8eca\u53f8\u6a5f', 'ssn': u'Z049343790', 'current_location': (Decimal('71.754077'), Decimal('-89.984025')), 'mail': u'shaolei@gmail.com'}
144 当前语言============================> ka_GE
145 {'website': [u'http://www.chanturia.org/'], 'username': u'lali71', 'name': u'\u10d3\u10d0\u10d5\u10d8\u10d7 \u10da\u10d8\u10de\u10d0\u10e0\u10e2\u10d4\u10da\u10d8\u10d0\u10dc\u10d8', 'blood_group': 'B+', 'residence': u'\u10d7\u10d0\u10db\u10d0\u10e0\u10d0\u10e8\u10d4\u10dc\u10d8\u10e1 \u10e5. 29, \u10ea\u10d0\u10d2\u10d4\u10e0\u10d8', 'company': u'\u10d2\u10d0\u10d1\u10e3\u10dc\u10d8\u10d0, \u10d8\u10d0\u10e8\u10d5\u10d8\u10da\u10d8 and \u10d5\u10d0\u10e8\u10d0\u10e7\u10db\u10d0\u10eb\u10d4', 'address': u'\u10e9\u10d8\u10d9\u10d5\u10d0\u10dc\u10d8\u10d0\u10e1 \u10e5. 50, \u10ec\u10d0\u10da\u10d4\u10dc\u10ef\u10d8\u10ee\u10d0', 'birthdate': datetime.date(2002, 9, 9), 'sex': 'M', 'job': 'Textile designer', 'ssn': u'696-94-1767', 'current_location': (Decimal('23.476920'), Decimal('-22.971519')), 'mail': u'devizenazibrola@yahoo.com'}
146 [Finished in 1.6s]

     

  感觉还是非常有意思的!

来源:https://blog.csdn.net/Together_CZ/article/details/86549766

 

posted @ 2021-08-13 15:22  三省吾身~  阅读(1562)  评论(0编辑  收藏  举报