
Language zh_TW
===============

``faker.providers.address``
---------------------------

::

	fake.latitude()
	# Decimal('13.156392')

	fake.street_name()
	# u'\u81ea\u5f37'

	fake.address()
	# u'302 \u91d1\u9580\u7e23\u8ff4\u9f8d\u88577\u865f4\u6a13'

	fake.city_name_suffix()
	# u'\u5e02'

	fake.street_address()
	# u'\u5b78\u5e9c\u88577\u6bb526\u865f'

	fake.section_number()
	# u''

	fake.postcode()
	# u'823'

	fake.longitude()
	# Decimal('105.789304')

	fake.country()
	# u'\u65af\u6d1b\u4f10\u514b'

	fake.city_name()
	# u'\u65b0\u7af9'

	fake.secondary_address()
	# u'2\u6a13'

	fake.street_suffix()
	# u'\u5df7'

	fake.geo_coordinate(center=None, radius=0.001)
	# Decimal('102.808835')

	fake.city_suffix()
	# u'\u5e02'

	fake.building_number()
	# u'464\u865f'

	fake.country_code()
	# u'NE'

	fake.street_name_suffix()
	# u'\u8857'

	fake.city()
	# u'\u95dc\u5c71\u5e02'

``faker.providers.automotive``
------------------------------

::

	fake.license_plate()
	# u'MBS-719'

``faker.providers.barcode``
---------------------------

::

	fake.ean(length=13)
	# u'8192517844108'

	fake.ean13()
	# u'4792264902010'

	fake.ean8()
	# u'82643201'

``faker.providers.color``
-------------------------

::

	fake.rgb_css_color()
	# u'rgb(18,197,138)'

	fake.color_name()
	# u'DarkTurquoise'

	fake.rgb_color()
	# u'27,154,238'

	fake.safe_hex_color()
	# u'#ffee00'

	fake.safe_color_name()
	# u'olive'

	fake.hex_color()
	# u'#9a1746'

``faker.providers.company``
---------------------------

::

	fake.company_suffix()
	# u''

	fake.company()
	# u'\u53f0\u7063\u4eba\u9280\u884c\u6709\u9650\u516c\u53f8'

	fake.company_prefix()
	# u'\u83ef\u806f\u96fb\u5b50'

``faker.providers.credit_card``
-------------------------------

::

	fake.credit_card_security_code(card_type=None)
	# u'887'

	fake.credit_card_provider(card_type=None)
	# u'VISA 13 digit'

	fake.credit_card_full(card_type=None)
	# u'Mastercard\n\u6dd1\u60e0 \u80e5\n5511396019512790 01/20\nCVV: 906\n'

	fake.credit_card_expire(start="now", end="+10y", date_format="%m/%y")
	# '03/23'

	fake.credit_card_number(card_type=None)
	# u'630400174730'

``faker.providers.currency``
----------------------------

::

	fake.cryptocurrency_code()
	# 'NXT'

	fake.currency_code()
	# 'AZN'

``faker.providers.date_time``
-----------------------------

::

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2003, 8, 7, 19, 14, 26)

	fake.date_time_between(start_date="-30y", end_date="now", tzinfo=None)
	# datetime.datetime(2000, 1, 22, 23, 58, 9)

	fake.time(pattern="%H:%M:%S")
	# '17:15:53'

	fake.date_time_ad(tzinfo=None)
	# datetime.datetime(559, 4, 12, 3, 30, 55)

	fake.past_date(start_date="-30d", tzinfo=None)
	# datetime.date(2017, 8, 27)

	fake.day_of_week()
	# 'Tuesday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2015, 4, 24, 6, 56, 24)

	fake.time_object()
	# datetime.time(23, 38, 39)

	fake.iso8601(tzinfo=None)
	# '2015-04-22T18:20:40'

	fake.time_delta()
	# datetime.timedelta(2994, 58309)

	fake.am_pm()
	# 'PM'

	fake.date_time_between_dates(datetime_start=None, datetime_end=None, tzinfo=None)
	# datetime.datetime(2017, 9, 6, 20, 17, 22)

	fake.date_object()
	# date(2008, 7, 17)

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2017, 10, 5, 13, 47, 10)

	fake.date_time(tzinfo=None)
	# datetime(2005, 1, 20, 9, 53, 41)

	fake.date(pattern="%Y-%m-%d")
	# '2004-03-22'

	fake.future_date(end_date="+30d", tzinfo=None)
	# datetime.date(2017, 9, 16)

	fake.month()
	# '11'

	fake.unix_time()
	# 1151168793

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2017, 9, 1, 0, 7, 52)

	fake.day_of_month()
	# '16'

	fake.year()
	# '2005'

	fake.timezone()
	# u'America/Cancun'

	fake.century()
	# u'XX'

	fake.time_series(start_date="-30d", end_date="now", precision=None, distrib=None, tzinfo=None)
	# <generator object time_series at 0xb4b07a08>

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2017, 8, 18, 8, 23, 40)

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2017, 8, 12, 20, 37, 3)

	fake.month_name()
	# 'July'

``faker.providers.file``
------------------------

::

	fake.file_path(depth=1, category=None, extension=None)
	# u'/\u904b\u884c/\u6771\u897f.ppt'

	fake.mime_type(category=None)
	# u'multipart/related'

	fake.file_name(category=None, extension=None)
	# u'\u6cd5\u5f8b.pages'

	fake.file_extension(category=None)
	# u'tiff'

``faker.providers.internet``
----------------------------

::

	fake.url()
	# u'http://www.jin.net/'

	fake.company_email()
	# u'leifang@qiu.com'

	fake.uri()
	# u'http://qiao.com/posts/post.php'

	fake.domain_word(*args, **kwargs)
	# u'xiong'

	fake.ipv4(network=False)
	# '163.82.90.238'

	fake.domain_name(levels=1)
	# u'zhong.tw'

	fake.tld()
	# u'com'

	fake.uri_path(deep=None)
	# u'explore/search'

	fake.free_email()
	# u'qinwei@gmail.com'

	fake.slug(*args, **kwargs)
	# u''

	fake.free_email_domain()
	# u'yahoo.com'

	fake.uri_extension()
	# u'.php'

	fake.ipv6(network=False)
	# '624:159c:c893:a64b:5691:c164:a68a:213f'

	fake.user_name(*args, **kwargs)
	# u'minmeng'

	fake.image_url(width=None, height=None)
	# u'https://placeholdit.imgix.net/~text?txtsize=55&txt=348x642&w=348&h=642'

	fake.email()
	# u'guiyingliao@yahoo.com'

	fake.uri_page()
	# u'author'

	fake.mac_address()
	# u'f5:8e:04:0d:e8:9f'

	fake.safe_email()
	# u'tao05@example.org'

``faker.providers.isbn``
------------------------

::

	fake.isbn10(separator="-")
	# u'1-5473-2900-9'

	fake.isbn13(separator="-")
	# u'978-1-59834-520-9'

``faker.providers.job``
-----------------------

::

	fake.job()
	# u'\u5009\u5132\u7269\u6d41\u4eba\u54e1'

``faker.providers.lorem``
-------------------------

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'\u7c21\u4ecb\u540d\u7a31\u5b78\u751f\u61c9\u7528\u9019\u7a2e\u6700\u65b0.\u800c\u4e14\u5c08\u696d\u4e00\u500b\u9019\u662f\u751f\u7522.\u5169\u500b\u9ede\u64ca\u6280\u8853\u5927\u5b78\u73fe\u5728.\u7d50\u679c\u4e00\u4e0b\u4e0d\u80fd\u96bb\u662f.\u76ee\u524d\u8a08\u5283\u8b1d\u8b1d\u653f\u5e9c\u4e00\u4e0b\u904e\u7a0b.\n\u6240\u4ee5\u4f4d\u7f6e\u65b0\u805e\u5a01\u671b\u60a8\u7684.\u7c21\u4ecb\u53ef\u662f\u696d\u52d9\u7a4d\u5206\u4e0d\u904e\u6b61\u8fce\u9700\u8981\u7d93\u71df\u5b69\u5b50.\u6ce8\u518a\u9996\u9801\u5f88\u591a\u95b1\u8b80\u9032\u884c\u95b1\u8b80.\u8a73\u7d30\u4f86\u81ea\u4e0d\u904e\u6240\u6709\u7279\u5225\u904e\u7a0b\u9019\u88e1\u4f5c\u8005.\n\u6210\u70ba\u4e00\u8d77\u7d50\u679c\u500b\u4eba\u76f8\u95dc.\u539f\u56e0\u653f\u5e9c\u6700\u5927\u4ee5\u53ca\u6211\u7684\u6c7d\u8eca\u6e38\u6232.\u4e00\u9ede\u90e8\u9580\u4e00\u4e0b\u52a0\u5165\u5982\u6b64.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'\u5236\u4f5c\u4e00\u5b9a\u8a2d\u5099\u96fb\u8166\u70ba\u4e86\u6700\u540e.\u6216\u8005\u6700\u540e\u7a0b\u5e8f\u76ee\u524d\u9078\u64c7.\u5b69\u5b50\u5b78\u6821\u5b89\u5168\u92b7\u552e\u9019\u6a23.',
	#     u'\u6642\u9593\u5730\u5740\u6c7d\u8eca\u662f\u5426\u5df2\u7d93.\u8a08\u5283\u898f\u5b9a\u751f\u7522\u74b0\u5883\u5831\u544a\u76ee\u524d\u4f86\u81ea\u5236\u4f5c.\u56e0\u70ba\u793e\u5340\u670d\u52d9\u5305\u62ec\u60c5\u6cc1\u5b78\u7fd2\u6587\u4ef6.\u4e00\u4e9b\u7576\u7136\u751f\u7522\u800c\u4e14\u53ef\u80fd\u767c\u751f\u4e00\u9ede\u5973\u4eba.',
	#     u'\u6c7d\u8eca\u5b8c\u5168\u6c7a\u5b9a\u4f5c\u54c1\u6bd4\u8f03.\u6642\u9593\u7d93\u9a57\u7db2\u7ad9\u5e0c\u671b\u4f86\u6e90\u4e0d\u540c\u5a01\u671b\u570b\u5bb6.\u516c\u53f8\u6642\u9593\u4e3b\u984c\u5c31\u662f\u6ce8\u518a\u95dc\u7cfb\u5176\u5be6\u641c\u7d22.\u4ee5\u540e\u63d0\u9ad8\u4e0d\u904e\u51fa\u73fe\u5176\u4ed6\u767c\u5e03\u5de5\u7a0b\u6c7d\u8eca.']

	fake.words(nb=3, ext_word_list=None)
	# [u'\u72c0\u614b', u'\u72c0\u614b', u'\u67e5\u770b']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'\u8cc7\u6e90\u5730\u65b9\u4ee5\u4e0a\u95dc\u65bc\u5b78\u6821\u7559\u8a00\u5e02\u5834\u7d93\u6fdf.',
	#     u'\u52a0\u5165\u662f\u4e00\u76f4\u63a5\u54c1\u724c\u66f4\u591a\u5927\u5c0f\u4ee5\u53ca\u5168\u90e8.',
	#     u'\u4e2d\u5fc3\u96fb\u5f71\u51fa\u73fe\u89e3\u6c7a\u6559\u80b2\u51c6\u5099\u540d\u7a31\u70ba\u4e86.']

	fake.word(ext_word_list=None)
	# u'\u6240\u6709'

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'\u5167\u5bb9\u4e00\u76f4\u5be6\u73fe\u8aaa\u660e\u540d\u7a31\u95dc\u65bc\u670b\u53cb.\u5b78\u6821\u7e7c\u7e8c\u4e0d\u662f\u6642\u9593\u7522\u54c1\u4e0a\u6d77\u7279\u5225.\u767b\u9304\u4ecb\u7d39\u5730\u65b9\u5f71\u97ff\u767c\u5e03\u554f\u984c.\u672c\u7ad9\u7d50\u679c\u7531\u65bc\u985e\u5225\u6559\u80b2\u793e\u6703\u611f\u89ba\u66f4\u591a.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'\u5168\u90e8\u4e4b\u540e\u5716\u7247\u57ce\u5e02\u5546\u54c1\u570b\u5167.'

``faker.providers.misc``
------------------------

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'U&C1DB9r3*'

	fake.locale()
	# u'hsb_DE'

	fake.binary(length=1048576)
	# bytearray(b' p)\x08\x8d+\x0f\x9e\x18\xf9\x19\xfc\xb3+\xd5\xb9Z\xa6PY4\xe25\xbcv\xbb\x8e\x06\x9c\tY\xe7\xe3*b\x9f#\xa5\x11\x92\xe2\xaa\xe9\x8d\xf5\x9a\x0f3 \x9eH\xf1b\xb0\x16\xed\xf0\xfc+\xca\xab\x8d\xf9_\x12\x8b\x1c\x7f`x\xcdb\xe3\xd9\x9b\xe4\x80\x98\x00\x16\xd3\x8f\xbbE\xa2\xc20i@f\x81\xb4\x8d\xda\xe9)@\x9av\xe8\x8f\xda:\x9a\x85\nE}V\xa0;Py\x7f\xe8\xe7\x15\x00M<\x07\x17!\x08\x80\x1d\xe9\xe26\xea\xd0<\x1ai\xd3\xdc\xdd@V*\x8eG\xa2;-\x05\x9b\xeb\xe6\xb6\x1c\xa9./8\x8b\x9d\x9f2\x06\xb2d\xb3_!O@"&\x96\xc2Q\xbei\xe2\'R\x92\nM\xaa!\xf6\x8an\x13\xe5&i\xc4\xa7\xf0\xcc\xf4I1w\xd6\xcb\xe2.\x87\x13\x99]c\xe8i\xec[\xd4Z\xeb\x98\xc1K\xbb\x88\x8bh\x8f,\xa1\x90#\xc2\x92\x90\\\x93\xbc\x0e\x93Ig\xfb\x18S\xee\x1f\x1c\xd0\xdc0\x1d\xe0\x01l\xf5\xb2(d\xab\x1b\x9d?\xbd\xd0\x12\r\xc5\x12x\xcd\xe7=\xb2\x1d=np\xfe\t\x9bb\xc8\xb5\xf2\xdbi\xbbx\x9b5\x99P2\\\xe1!\x96l>\xc3;\x9e\xc8~\x93<\xcd\xd0\xbd[Xi\x93\x81\xe5\x97D\xee\x0b\xa1\x18\x92E>\xcd\xce\x93^\xb0[\xa5\xc8\xda\x99\xa9R\xf0\xe6\x19\xb7\xaf\xc6\xa70q\xc5o\xf4\xbb\xff\xdfU\xac\xcb\x89\xe5\x16\xd9Q+\xe8\xd8\xec\xc4:\xc8i\xad\x03~\x03\xb1\x96\xa7\xb4\'\xc9\xfe\xdf(\xfc\x16\x83\x0e\x13\xd0k\xca\x155\x91\xfd@\xfb\xe8\xf2S\xb8\x8f\x8b\x11\xa1\xa7J\xe3\x95\xc0\xcdWndb4Y\xbb"r\xc2\xf2\r\x90\x9d\x92\xaf\xebiv`\xf4\xb9\x01&k0\x88\xeb3\x13\xa3T\xfby\x18\xbf\x9b1\xfe\x98K\xde\xe4\xf7\xc0\x94w\x87\xb3u\xa5\x90\xc5\t\xa4&\xe8:\x1f\x0fvA-J\xab\x91\xfa\x97\x8e\xcd\xb9!\xe3\x87\xda\x93\xe6\xce\x0b\xd0\xac_\x03\x03\xe0\x16b\xe98(\xd5YT\xcd\x94\xebxT\xf5\x16g\xe9\x0e\x11\x19\xd7\xa6jHy\x0edo\x9e\xb2VUW\xfe\xdeM\xebw&a\xfd\xdc\x98\xa9e#-\xd1\x19\xa0\x0f\x0b\x02\xb2k7\x13\xb8I\x8a\xec\xf0\x17wC\xe1\x15\xff!\x85I\xc8\xdbY\xae\x12B\xc5\xb9\xb8\x82\x01b\x1a\xead\xc5\x8e(]\xd6\xbb{}\xe3K\xf9\xa8\x83t\xa1\xed\xac\xffgS\xc9~\xc8\x02\xfb8\xa2\xa0\n\x08\x0b\x12\x06i\x98\x9fJ\x9e\xaaq\x91\xba\x9d\x08k\x9c\xce\\5\xe3\x08f\xbc\x06\xb8\x076n\x88,\r\x928\x95G\xdcfU\xc0\x07R\xb2_)\x87\xb5\x8a2\xa0\xb3\xcaT\xf3\xc1\xe5\xb4\x90\xd1\x0b\xe2\xaa\xfc-\xaa\xd8\xe2\xf3p\xe5\xca\xff\xfb\'\x91U*C\xf8\x0f\xed\x04\xa5\x8a5\n\xeb\xac\xdadi\xd5\xb7\xfe\xed\xcdQ\xe6\xf1\xfd\xa3\xdfv\x04a\x90\xde \xa6\x1c\xba\x88Gx\x949\x87\xdck\xe0\x1f\x85\x04t\xad\'\xea\x0f\x01\xe8\xcf4\xeb\xe6\xd1lW^\xe1\xd3\n\xc0\x10\x87\x95\x1d\xe1\xe8^.\xbaV\xc30\xe1\x1dyD\xfd\x1c\xb5\xf4\xa7\xaa\xe68\x8f\xac\x06\xe7:h6V\x14Y&V\xdd\xbd\xf3S\xca\xd2$X\xc9\x07O\xde\xa5\xf8|@\tv\xf2yg\xfb\xcaw\x9e_\x9e\x1d\x84\xf0|x\xff;\x08[\xc7\x18L\xba\xa3\x02\x9b\xd4\xde\xb0;\xe3\xe4m\n\t\xcd\x11\x1e\x8fn\xf7\x9d\x8b\xa1\xf2\\\x16\x8b\xa5\xdeuxk\xcaB\xfcwm-\xa4||\xa3\x18\xd6h\x9c\x8f4\x9d\xa3\x99@\x83\xad5oaf@\xc6\x90\xb6\xaa6:\x11p\xa5P\x19\xfc\xb9\xf3\x17}\x94Xp\x0e\x00L\xef\xf1Y*&\xa8\xdb\xa6\na-\xc2\x07\xee\x9a\xc5P/\xbd\x0b>\xf0\xf45-\xe5lyD\x82\x0f\x87R\x90\x8c\xdf\x1a\xda\xda\x8c\x01\n\x8d\xcefS\xcco\x9e\xdd\xc9\xbc\xc9\xd5\x83\xeb\x12\xb7\xb2\xafu\x04\xdd%.O\xab\x83f\x12\xbdM] \x8e9>b\x13\x89\xb5\xf9\xc5\xc7"v)\\\x01A\x7f$\x11\x82bWr\xe5\xcb\xd7\xf0\xe5\x8d7\xab\r\x97 \x8d\x82\xaa\x12]\xa8[y\x16\xafO#\x1fEt\xf3\xce')

	fake.md5(raw_output=False)
	# 'b49ad1740a204f8d076a3d1071580370'

	fake.sha1(raw_output=False)
	# '922e491e7edb6394e5c3f73c4f32e15211931e35'

	fake.null_boolean()
	# True

	fake.sha256(raw_output=False)
	# '960b702ffaf98a017a156f38935f1e006546a69b57a4b1685efa75a0a3a9c668'

	fake.uuid4()
	# 'b42d64f6-14d9-3d28-e58a-4e01c02ea616'

	fake.language_code()
	# u'bem'

	fake.boolean(chance_of_getting_true=50)
	# False

``faker.providers.person``
--------------------------

::

	fake.last_name_male()
	# u'\u6bb3'

	fake.name_male()
	# u'\u89e3\u7f8e\u742a'

	fake.name_female()
	# u'\u502a\u627f\u7ff0'

	fake.romanized_name()
	# u'Fang Hu'

	fake.prefix_male()
	# ''

	fake.prefix()
	# ''

	fake.last_romanized_name()
	# u'Jin'

	fake.suffix_female()
	# ''

	fake.name()
	# u'\u6d2a\u60e0\u96ef'

	fake.first_romanized_name()
	# u'Jing'

	fake.first_name()
	# u'\u975c\u5b9c'

	fake.suffix_male()
	# ''

	fake.suffix()
	# ''

	fake.first_name_male()
	# u'\u51a0\u5ef7'

	fake.first_name_female()
	# u'\u6dd1\u5a1f'

	fake.last_name_female()
	# u'\u6bb7'

	fake.last_name()
	# u'\u6c72'

	fake.prefix_female()
	# ''

``faker.providers.phone_number``
--------------------------------

::

	fake.phone_number()
	# u'0921-895791'

``faker.providers.profile``
---------------------------

::

	fake.simple_profile(sex=None)
	# {   'address': u'60312 \u5927\u91cc\u7e23\u7d05\u6a39\u6797\u5df76\u865f7\u6a13',
	#     'birthdate': '1971-01-03',
	#     'mail': u'qianghan@yahoo.com',
	#     'name': u'\u82ae\u8a69\u6db5',
	#     'sex': 'F',
	#     'username': u'ymeng'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'405 \u81fa\u6771\u7e23\u5fa9\u8208\u8def650\u865f\u4e4b4',
	#     'birthdate': '2011-10-06',
	#     'blood_group': 'AB+',
	#     'company': u'\u83ef\u6676\u570b\u969b\u9152\u5e97\u80a1\u4efd\u6709\u9650\u516c\u53f8',
	#     'current_location': (Decimal('-32.7537805'), Decimal('144.136576')),
	#     'job': u'\u5ee0\u52d9',
	#     'mail': u'syang@gmail.com',
	#     'name': u'\u6881\u90c1\u96ef',
	#     'residence': u'808 \u7af9\u5317\u7e23\u548c\u5e73\u885785\u865f5\u6a13',
	#     'sex': 'M',
	#     'ssn': u'F824940439',
	#     'username': u'oqiu',
	#     'website': [   u'http://www.ding.org/',
	#                    u'http://www.xu.tw/',
	#                    u'http://www.su.tw/']}

``faker.providers.python``
--------------------------

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'sbjfgJwKiUvpcLQxEBZz',
	#     datetime(1995, 8, 2, 16, 18, 21),
	#     u'faRHjCxMsMwMlBrgBjiY',
	#     u'VYehhHpgccwCWrCAaonu',
	#     u'LXRqjuRhLynjDevPMNnc',
	#     794,
	#     u'MpwcWnRJwFuNCGrCsCRV',
	#     -3572935746.9246)

	fake.pystr(min_chars=None, max_chars=20)
	# u'WKBbMDDeJEgbRdGIroeL'

	fake.pystruct(count=10, *value_types)
	# (   [   u'EpaxHVnKhAjjlGnvKGQW',
	#         datetime(2002, 2, 6, 15, 54, 47),
	#         u'LYmriwCAZSKEHJfxpAUm',
	#         7212,
	#         5857,
	#         u'http://www.hou.com/app/list/wp-content/about.html',
	#         u'ivKRBcGrzAHQsleuJSZw',
	#         -81158317086899.0,
	#         u'ecZuyXxtxevYXIArLPWB',
	#         u'RkUmFWTHftHBtMikIhwA'],
	#     {   u'\u4e0d\u6703': u'http://cao.tw/wp-content/main.asp',
	#         u'\u4f46\u662f': u'http://du.com/search/blog/register.html',
	#         u'\u514d\u8cbb': 7735,
	#         u'\u5177\u6709': datetime(2001, 4, 22, 0, 31, 16),
	#         u'\u5be6\u73fe': u'fKiHVkrGoPwODzHTNzSM',
	#         u'\u7db2\u7ad9': -96110.6818,
	#         u'\u81ea\u5df1': Decimal('-93209.67386'),
	#         u'\u8655\u7406': u'bvyiYbkMWtSRslVeOite',
	#         u'\u9019\u88e1': Decimal('-21331.2286741'),
	#         u'\u95dc\u7cfb': -35608137.99},
	#     {   u'\u4e0d\u6703': {   2: Decimal('51.938829513'),
	#                              3: [   u'setSUPtgmRstcFGorSQu',
	#                                     8909,
	#                                     datetime(1974, 6, 1, 3, 16, 18)],
	#                              4: {   2: u'XrfALlRpQBPeqelbKgkU',
	#                                     3: 3489,
	#                                     4: [u'UrIDGaKObIgedQaFFbJq', 9545]}},
	#         u'\u4e0d\u8981': {   7: u'RvQOYcPSyJcsXifOfwVJ',
	#                              8: [   u'RqcUmtCDCitLBugcYaHf',
	#                                     Decimal('-2.2122470268E+14'),
	#                                     481],
	#                              9: {   7: u'pinghao@hotmail.com',
	#                                     8: u'QcVlfrRZCAdiMeIQwmjr',
	#                                     9: [1507, Decimal('9.47690592487E+13')]}},
	#         u'\u4e2d\u6587': {   1: u'NtLBiTNNqWJkPreiJFkg',
	#                              2: [   u'yIiWdYNJNTsBofgalQZh',
	#                                     u'http://zeng.net/explore/about/',
	#                                     u'bsElsHFHGnPFRFdXAztF'],
	#                              3: {   1: u'HSvJkNnrFdUfNVaHFyJz',
	#                                     2: -33984060200.7,
	#                                     3: [   u'xia87@gmail.com',
	#                                            u'dhcFOZindCGGcnIfEaFi']}},
	#         u'\u5831\u544a': {   0: 3925,
	#                              1: [   u'WibRYrWsZIOHAelIXqdH',
	#                                     u'dhuang@song.tw',
	#                                     4037],
	#                              2: {   0: u'http://liao.com/about.html',
	#                                     1: u'bAmHzzWuprroNmXZDLgc',
	#                                     2: [   u'https://www.peng.com/list/categories/login/',
	#                                            Decimal('6526428.67424')]}},
	#         u'\u5e6b\u52a9': {   8: 2351,
	#                              9: [   0.8276,
	#                                     u'jLjZMnJrgeaSXAGXRIPp',
	#                                     u'luochao@xu.com'],
	#                              10: {   8: u'SJbuDjBENzgNCTaUxMHT',
	#                                      9: 7825,
	#                                      10: [   datetime(1980, 5, 1, 3, 2, 47),
	#                                              u'ulong@yahoo.com']}},
	#         u'\u600e\u9ebc': {   3: u'NDATcYYlFsuHTwZdwaoM',
	#                              4: [   u'lizhao@ye.com',
	#                                     -5851917.0,
	#                                     u'GTXzGNKBzSoGjEAteIVb'],
	#                              5: {   3: 4177,
	#                                     4: Decimal('92.73'),
	#                                     5: [488, 2447]}},
	#         u'\u6559\u80b2': {   9: Decimal('-7.16816'),
	#                              10: [   u'SKblYBHUIMCgtBMKKoBI',
	#                                      u'QhHTTeOCOKsgPrLPhrYp',
	#                                      0.25432],
	#                              11: {   9: u'kcWyxfJcCjyTucTadakC',
	#                                      10: u'XwbRBbrqErkDIDnKmlcZ',
	#                                      11: [   u'sNFIfirBcnTWqxCoCLDB',
	#                                              Decimal('888178.16547')]}},
	#         u'\u7121\u6cd5': {   4: 2811,
	#                              5: [u'weiyin@yao.com', 493733430.769, 6466],
	#                              6: {   4: datetime(1984, 6, 9, 10, 2, 31),
	#                                     5: u'YeCLYHkoTJIFjUrXpTdH',
	#                                     6: [   u'lzwKQgPhnCjIxTxpiKTs',
	#                                            u'qianghe@yahoo.com']}},
	#         u'\u7db2\u7ad9': {   5: 9949,
	#                              6: [   u'oYmLHcQYDETpcBJRPSDG',
	#                                     u'GJYMrzLZITxrCiNaCinV',
	#                                     u'bAUmWPADXKyGtspBBjTy'],
	#                              7: {   5: datetime(1988, 5, 24, 1, 56, 26),
	#                                     6: 5101.2787185385,
	#                                     7: [-83.799, 1316]}},
	#         u'\u8a8d\u70ba': {   6: 6738,
	#                              7: [   u'aHAdzxiXHGWYDuztxEDe',
	#                                     u'HnhvGnVEngvbysUEZSic',
	#                                     2482],
	#                              8: {   6: 7261,
	#                                     7: Decimal('1.1559737435E+13'),
	#                                     8: [   u'https://www.zheng.tw/',
	#                                            datetime(1983, 8, 30, 22, 52, 53)]}}})

	fake.pyfloat(left_digits=None, right_digits=None, positive=False)
	# -62.7735124855669

	fake.pydecimal(left_digits=None, right_digits=None, positive=False)
	# Decimal('743621.0')

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   2563,
	#     u'OixXHwIbKBxjotUlOShB',
	#     -713249124240998.0,
	#     u'ojEJVncwqEfgXaODOLTT',
	#     5603,
	#     u'VxHHsztHDOtSuHBvMhIw',
	#     u'kxie@tian.tw',
	#     u'zouna@yahoo.com',
	#     u'LfUppyRVavkcYlgTbLic',
	#     9836,
	#     u'SNXaMbgHrkwpvaudjWLC']

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   6593,
	#     u'MTwBtBUcnUAXMkhIZEBq',
	#     u'XEveyreuRLSZQLqVJHzW',
	#     u'wei51@hotmail.com',
	#     Decimal('-8.34079652726E+13'),
	#     u'AbjQCTBZRVICjqTammYh',
	#     u'jingpeng@mao.tw',
	#     u'YDicjNZltVsXIgXVHeve',
	#     u'lliao@yahoo.com',
	#     6522,
	#     datetime(2001, 5, 29, 17, 44),
	#     datetime(1994, 9, 18, 23, 33, 50),
	#     8063)

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([datetime(2016, 5, 11, 3, 1, 41), u'rMpNjYKxBUSlRTMxKVTV', u'qianxiulan@fan.net', datetime(1996, 8, 18, 7, 3, 49), 3727, 2772, Decimal('25511629181.5'), Decimal('-28870.0'), u'https://www.huang.org/login/', -6824.559942664])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'\u4e00\u7a2e': Decimal('455204758119'),
	#     u'\u5e0c\u671b': -2456469.504078,
	#     u'\u5efa\u8a2d': u'oJgFsZSnEMxBFtlrJWIi',
	#     u'\u65b0\u805e': u'CmyAUcVeEDnqVsnkjlFo',
	#     u'\u751f\u7522': u'https://www.qiao.org/main/faq.asp',
	#     u'\u7576\u7136': u'DdyOLxoRVIqlhtNMPkng',
	#     u'\u79d1\u6280': u'JdLjclEeNiYlAbWdLrgD'}

	fake.pyint()
	# 9149

``faker.providers.ssn``
-----------------------

::

	fake.ssn()
	# u'C899756796'

``faker.providers.user_agent``
------------------------------

::

	fake.mac_processor()
	# u'Intel'

	fake.firefox()
	# u'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_5_9; rv:1.9.5.20) Gecko/2014-06-04 03:06:08 Firefox/3.8'

	fake.linux_platform_token()
	# u'X11; Linux x86_64'

	fake.opera()
	# u'Opera/9.80.(X11; Linux i686; ff-SN) Presto/2.9.174 Version/12.00'

	fake.windows_platform_token()
	# u'Windows CE'

	fake.internet_explorer()
	# u'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.2; Trident/4.0)'

	fake.user_agent()
	# u'Mozilla/5.0 (Windows NT 6.2; fur-IT; rv:1.9.0.20) Gecko/2012-07-06 14:56:26 Firefox/3.6.1'

	fake.chrome()
	# u'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_6) AppleWebKit/5310 (KHTML, like Gecko) Chrome/13.0.833.0 Safari/5310'

	fake.linux_processor()
	# u'i686'

	fake.mac_platform_token()
	# u'Macintosh; U; PPC Mac OS X 10_8_0'

	fake.safari()
	# u'Mozilla/5.0 (Windows; U; Windows NT 6.1) AppleWebKit/533.27.2 (KHTML, like Gecko) Version/5.1 Safari/533.27.2'
