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

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

::

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

	fake.street_name()
	# u'\u5927\u540c'

	fake.address()
	# u'59506 \u65b0\u71df\u5e02\u6de1\u6c34\u5df7192\u865f\u4e4b5'

	fake.city_name_suffix()
	# u'\u7e23'

	fake.street_address()
	# u'\u660e\u5fb7\u5df7989\u865f'

	fake.section_number()
	# u''

	fake.postcode()
	# u'13818'

	fake.country_code(representation="alpha-2")
	# u'SO'

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

	fake.country()
	# u'\u4fc4\u7f85\u65af'

	fake.city_name()
	# u'\u6843\u5712'

	fake.secondary_address()
	# u'\u4e4b5'

	fake.street_suffix()
	# u'\u8857'

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

	fake.city_suffix()
	# u'\u5e02'

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

	fake.street_name_suffix()
	# u'\u8def'

	fake.city()
	# u'\u6c50\u6b62\u7e23'

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

::

	fake.license_plate()
	# u'HDZ 047'

``faker.providers.bank``
------------------------

::

	fake.bban()
	# 'IWET9572186186553'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB09SDYQ0430720959499'

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

::

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

	fake.ean13()
	# u'3716098204905'

	fake.ean8()
	# u'97996477'

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

::

	fake.rgb_css_color()
	# u'rgb(199,191,196)'

	fake.color_name()
	# u'Black'

	fake.rgb_color()
	# u'232,36,43'

	fake.safe_hex_color()
	# u'#bb4400'

	fake.safe_color_name()
	# u'green'

	fake.hex_color()
	# u'#71ecaf'

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

::

	fake.company_suffix()
	# u'\u80a1\u4efd\u6709\u9650\u516c\u53f8'

	fake.company()
	# u'\u83ef\u6676\u570b\u969b\u9152\u5e97\u6709\u9650\u516c\u53f8'

	fake.company_prefix()
	# u'\u4e00\u7d71\u661f\u5df4\u514b'

	fake.catch_phrase()
	# u'Innovative zero tolerance moderator'

	fake.bs()
	# u'orchestrate cross-media web services'

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

::

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

	fake.credit_card_provider(card_type=None)
	# u'JCB 16 digit'

	fake.credit_card_full(card_type=None)
	# u'VISA 19 digit\n\u96c5\u7b51 \u885b\n4382339623550401755 06/19\nCVC: 039\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'TRX'

	fake.currency_code()
	# 'UGX'

	fake.currency_name()
	# 'Special drawing rights'

	fake.cryptocurrency_name()
	# 'Burstcoin'

	fake.cryptocurrency()
	# ('WAVES', 'Waves Platform')

	fake.currency()
	# ('NIO', 'Nicaraguan c\xc3\xb3rdoba')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 8, 18, 17, 52, 37)

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

	fake.date_between_dates(date_start=None, date_end=None)
	# datetime.date(2018, 8, 16)

	fake.date_time_between(start_date="-30y", end_date="now", tzinfo=None)
	# datetime.datetime(1999, 5, 16, 8, 3, 39)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2017, 11, 23)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 2, 16, 22, 11)

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

	fake.day_of_week()
	# 'Saturday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2013, 9, 10, 4, 39, 25)

	fake.date_between(start_date="-30y", end_date="today")
	# datetime.date(2018, 2, 10)

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2004, 5, 8, 6, 14, 22)

	fake.date(pattern="%Y-%m-%d", end_datetime=None)
	# '2002-10-19'

	fake.am_pm()
	# 'AM'

	fake.date_time_between_dates(datetime_start=None, datetime_end=None, tzinfo=None)
	# datetime.datetime(2018, 8, 16, 9, 27, 54)

	fake.date_object(end_datetime=None)
	# datetime.date(1970, 3, 20)

	fake.date_this_year(before_today=True, after_today=False)
	# datetime.date(2018, 2, 23)

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '1980-06-20T14:53:54'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2003, 5, 30)

	fake.month()
	# '12'

	fake.year()
	# '2005'

	fake.day_of_month()
	# '02'

	fake.unix_time(end_datetime=None, start_datetime=None)
	# 836339291

	fake.timezone()
	# u'Pacific/Fiji'

	fake.century()
	# u'XXI'

	fake.date_of_birth(tzinfo=None, minimum_age=0, maximum_age=115)
	# datetime.date(2011, 2, 16)

	fake.time_object(end_datetime=None)
	# datetime.time(20, 46, 27)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 3, 7, 9, 6)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1995, 5, 2, 23, 24, 44)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '17:25:39'

	fake.date_this_month(before_today=True, after_today=False)
	# datetime.date(2018, 8, 2)

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 7, 22, 16, 44, 45)

	fake.month_name()
	# 'December'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(31, 6, 7, 19, 43, 53)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(10309, 20814)

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

::

	fake.unix_device(prefix=None)
	# u'/dev/xvdj'

	fake.mime_type(category=None)
	# u'message/http'

	fake.file_path(depth=1, category=None, extension=None)
	# u'/\u5bc6\u78bc/\u80fd\u5920.jpg'

	fake.unix_partition(prefix=None)
	# u'/dev/xvdu7'

	fake.file_name(category=None, extension=None)
	# u'\u52a0\u5165.mov'

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

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

::

	fake.ascii_free_email(*args, **kwargs)
	# 'ming78@hotmail.com'

	fake.image_url(width=None, height=None)
	# u'https://dummyimage.com/666x347'

	fake.tld()
	# u'net'

	fake.email(*args, **kwargs)
	# u'leishen@xie.net'

	fake.url(schemes=None)
	# u'http://fan.com/'

	fake.ipv4_private(network=False, address_class=None)
	# '10.202.103.167'

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

	fake.uri_extension()
	# u'.htm'

	fake.uri_page()
	# u'category'

	fake.free_email_domain(*args, **kwargs)
	# u'gmail.com'

	fake.safe_email(*args, **kwargs)
	# u'maofang@example.net'

	fake.ascii_email(*args, **kwargs)
	# 'wei65@huang.tw'

	fake.ipv4_network_class()
	# u'c'

	fake.ipv4_public(network=False, address_class=None)
	# '170.184.239.223'

	fake.ascii_company_email(*args, **kwargs)
	# 'gaowei@qiu.net'

	fake.domain_name(*args, **kwargs)
	# u'meng.tw'

	fake.ipv4(network=False, address_class=None, private=None)
	# '128.228.108.98'

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

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

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

	fake.company_email(*args, **kwargs)
	# u'jie43@peng.com'

	fake.uri()
	# u'http://www.deng.net/'

	fake.ipv6(network=False)
	# 'd547:d3d5:2e48:c3a7:86bd:94de:65b8:7a34'

	fake.free_email(*args, **kwargs)
	# u'ogao@hotmail.com'

	fake.ascii_safe_email(*args, **kwargs)
	# 'fqiu@example.com'

	fake.mac_address()
	# u'54:ad:e2:d5:66:94'

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

::

	fake.isbn10(separator="-")
	# u'1-305-92820-2'

	fake.isbn13(separator="-")
	# u'978-1-4946-2978-6'

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

::

	fake.job()
	# u'\u8a9e\u6587\u88dc\u7fd2\u73ed\u8001\u5e2b'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'\u5de5\u4f5c\u6578\u64da\u7ba1\u7406\u81ea\u5df1\u4f86\u81ea\u8cac\u4efb.\u53f0\u7063\u6bd4\u8f03\u90a3\u4e9b\u55ae\u4f4d\u4e00\u5207\u670d\u52d9.\u8868\u793a\u96fb\u8a71\u5e16\u5b50\u79d1\u6280.\n\u4ee5\u4e0b\u767c\u5c55\u7f8e\u570b\u65e5\u672c\u7e7c\u7e8c\u7a7a\u9593.\u72c0\u614b\u975e\u5e38\u7db2\u7d61\u5167\u5bb9\u793e\u5340\u767c\u5c55\u6709\u4e9b\u5b69\u5b50.\u6c92\u6709\u7559\u8a00\u8a8d\u70ba\u4e0d\u6703\u6b77\u53f2\u5979\u7684\u65e5\u671f.\n\u5be6\u73fe\u54c1\u724c\u6642\u5019\u96bb\u8981\u9019\u7a2e\u4efb\u4f55.\u4ee5\u4e0a\u793e\u6703\u5efa\u8a2d\u8655\u7406.\u4e0d\u540c\u74b0\u5883\u6700\u540e\u4f4d\u7f6e\u589e\u52a0\u5408\u4f5c\u5df2\u7d93.\n\u66f4\u591a\u5728\u7dda\u5176\u4ed6\u51c6\u5099\u767c\u8868\u4e00\u8d77\u767c\u5c55.\n\u4f46\u662f\u67e5\u770b\u4efb\u4f55\u5f97\u5230.\u600e\u9ebc\u4e00\u6a23\u56e0\u6b64\u806f\u7cfb\u4f7f\u7528\u5c08\u696d\u5167\u5bb9.\u4e16\u754c\u5e6b\u52a9\u958b\u59cb.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'\u4f01\u696d\u50f9\u683c\u5305\u62ec\u696d\u52d9.\u6a19\u984c\u7d93\u71df\u4e0d\u80fd\u7576\u524d\u6642\u5019\u6709\u4e9b.\u5e0c\u671b\u4f86\u6e90\u7d44\u7e54.',
	#     u'\u4eca\u5e74\u4e5f\u662f\u8a2d\u8a08\u5fc5\u9808\u9032\u5165\u641c\u7d22.\u91cd\u8981\u5177\u6709\u904e\u7a0b\u56de\u5fa9\u7576\u524d\u6b77\u53f2\u56e0\u6b64\u8ad6\u58c7.\u96bb\u6709\u7d93\u9a57\u5df2\u7d93\u70ba\u4ec0\u6587\u5316\u6b61\u8fce.',
	#     u'\u9032\u5165\u5f71\u97ff\u4e3b\u984c\u5982\u6b64.\u7b49\u7d1a\u4e5f\u662f\u6211\u5011\u91cd\u8981\u6587\u7ae0\u4e0d\u662f\u66f4\u591a.\u529f\u80fd\u7684\u8a71\u7a4d\u5206\u7531\u65bc\u5168\u570b\u56e0\u70ba\u90fd\u662f.']

	fake.words(nb=3, ext_word_list=None)
	# [u'\u5b78\u6821', u'\u80fd\u529b', u'\u904e\u7a0b']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'\u66f4\u591a\u4e00\u8d77\u7121\u6cd5\u63a7\u5236\u4e00\u9ede\u4e0d\u6703\u6280\u8853.',
	#     u'\u5df2\u7d93\u9019\u662f\u4ed6\u5011\u4eba\u6c11\u4ec0\u9ebc\u7537\u4eba.',
	#     u'\u986f\u793a\u6709\u4e9b\u95dc\u65bc\u8a8d\u70ba\u7531\u65bc\u5982\u679c.']

	fake.word(ext_word_list=None)
	# u'\u641c\u7d22'

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'\u53ef\u80fd\u5e6b\u52a9\u6a19\u984c\u652f\u6301\u5b69\u5b50\u5730\u5740.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'\u611f\u89ba\u57ce\u5e02\u8a2d\u8a08\u7cfb\u5217\u4ecb\u7d39\u8a08\u5283\u8a9e\u8a00\u4e00\u7a2e.'

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u't6EYBW^K%F'

	fake.locale()
	# u'ka_GE'

	fake.binary(length=1048576)
	# bytearray(b'^g1\xc8W\x1a\x85\x93-w7\x86({6k\xceE\xa3\x9b\xa8\xd1eAL=[!\xb5(\x0e\x97M\xf7\x07\x01r\x03Wh\x07\xe6>\xdfW\xe9_/\xc6gT\x1b\x14"\x0b4\x93\x99\x9b\xf0\xdb\xa1l\xd7HG\x967\xb1\x00\xa8o\x1d`\x0f\xa7E\x89\x87t\xc4\x83\x0e\x0c\xb9\x1a\xb0\xd4\xc6\xd3\xf7,\x13\xbcFm\x80\'9\xe1j\x89\xe5\xf9\x8e;c3\x8f<\x0b\xa1\r\xee\n\x12CbM=\x12JLL\xbf\x8f\xdd\x807:\x86o\\\xa5e\xc8\x84\xcd\x9b\xf9Z\x10\xc0\xf1\xbfp\xe5g\xae]\xae\x0e\xce\xf8\xc5\xf5)\xd5\t\x0eaV\xce\xe9\x82\x9d\xf3\x7f<E\x92\t\xf0\xdc\xd8\xf44\xcf\x0f\xfcq\xf4\xa0\x02\xcb\x05L\xc7\xb1\xa4\xa3e\xd3\xc3\x8dV\xba"\x15\x96koc\xec\x02\xbe&\xf2\x07dv\x14\x8e`\xed\xe16\\\xf6,\x03\x19\xb9\x1a\x9f\xd0\x9e\x81\xf4\xb8\x80\x98\xaa\x96\xb1\xf4\x06,\t\xd8\x01\x02+\x92\xe2\x14\x8c9\x85b\xea\x0c=\x94\xd7\x9c\xa9\xb3J\xab\xfd\x1f\xb2|\xcfR\x89\x8c(_\xfe\xc9\xce)\x17-\xe8\t\x86e\x95\x18\xa2\n\x17a\xaa\x8c\x9e\x9fE\xe3\x19\xb4\xb6\xf4\xfe\x1c\xf8\xe0(Uf)\x87\x8e\\\x05z)=RN\xe1\xddy\xd9b8n\xde\x04\x8am=\x84\xd9c\xc2\xfb\xe9\xa5\xae0\rZ\xd4\x08\x13{)\xb2Z\x06\'\x9e\xe2\xad\xde\x03\xe7\x1b9\xc0\xfe\xf9\xc9x\xb8\xb5\xab\x7f3\x1ei~`VWU\x91\x17qZ\xeb\xc3+}e\x02\x8b\xcbUf\x8b\xdd\x03\xa5\x7f\x0b\x1b;\xa9\xb4dR%E<\xb9I\x96q\x80\xa3w\xaeT\xb2~\xb4\x08\x06\x94yTR\x8b?G&\xbd\x8fp\xaa\xd6c\x98\xf2&9\xf7Is\xd7\n\x93#\xd9hA*0\x9b\'\xaf\x9a\xbc.\xfc\x98\x13\xd3c\xc8mm\xc0\xa0\xe6Pr\xf7;\xb0\xb8=\xfb\x86\x0b\x99\'\x19^Y\xe9\xd3\xd7(E\xa4\xe4\xa7\x10\x0b\xa9\x8bZ\x178A\xb2=\xaf\r\x8f\xa8\x19\xbc\x90r\x05\x8ah\x04Ui\t\xa0kfW\x81\xfco\x8d\x1a\xa4\xf3\xf4\x01\xaf\xe7\xdd}\x95\xc5P\xd6\xe02\xae\x87\x9b\xbf\x94_\x11%\xf6`~\x9aD\xb2\x0e\x13\xa7P\x93y\x17\x8ak\x0e\xf5\xe5\xac\x7f2\x96\xb2\t\xf3[\x8bx\xb6E\xe0\x80\x06\x1f\x9d\x8b\x865\xaa\xaaVQQ\xf4\xbf2\xca\xf7\xe2\x98PR0\x0e\x81\xd1+\xd6\xd0#\x9b\xf8\xf9\xc5=\xb9\xb3M\x1b=e\x9c\xe4\xb8mJ\xeb\x04\x14\xd3\x1b\x9a\x03\xf5\x86\xb0\xc7o\x14f\xc7\xf2yIp\t\xf8bJyW\xfc!\x86&\x1dp{\x99\x1aOA\x08\xae\xb5\x96\xcb\xff/\xb8\x05\x9f/\xf1\x13"\x84\x8b\xd4\xd3Y-\x98Oq\xf9\tD:\xf4\xd2\xf6pg\xb2\xe6%6]\xd7y\xfdD(\x1b7\xc4\n<\x92\x9f\x8cvm\xb8A\xe3Gq\xdf\x8f\x1a\xacs\xc2\xde\xb3\x0f\xc8{\xf5\xa8wY\xe0:<c-}\\\x90\xcd\xf9g\x8d3\x10\xecq<d\xea6\x1c\xf9\x92fHsd\x7fc=\xc3\x8eG\xf2v\xb4\xdd1\xbc\xc1\x8b\x1f\xc0\xd0\xd7\x18\xbd(\x95m\xf6\x92a\x18g\xa5\xb5b\xfe\x82\xba\xa2\xd6\xfa\xca~F\x13\x1b\xbb\xa7\xad\x9bB9\xb7\x1d\x9d\x1dM<\x00]~u\xef\x0eM\xe6\xc9\xfd\xfe\xa2k\xcf[\xbb\xb8\xb4T\x8e{\x0b\xaf\xdd\x1d\xff\xe4\xfcGh\xd8Y\x17_oG(4\x10&<\xad\xd4\xba\xe0\xb9\x8e\x14\xf0|\x86\xc5\x87\xb9Ae\xcb\x92\xc2\xfb\xbe\xbe\xd4\x06u0\x11\xb6\xbeW\xa1T\xba\xf7\x7f\x145q\xccq\xb8\xf8\xc3.\xbd\xa4u$VC\xc3\xaf\x86C\xf6\xef\xb4\xe8\x10B\x03\xde\x1d\xd4\xbc\xc8\xe1R\xf9\xae\x882g\xcb\xfcI\x95\xa4\xd1\t\x07\x94j\xa5\xe4C\xc4\xe8\xbd%\x8b5\x0e\x006\ru\xe5\xaa<\xcc\x9c^\x7f)\xc4Kj\x8cT\x85N\xcd8vx\xa3\xc0\xfaNp\x8c\x1eA\x14\x0f\xb9\xc0\xcf\xecYqC\xc8C[\x18\xffb \x18\xd9U\xb3\x9b\xce\x7f\xc8\xa0\n\xbf(\x02\xd0wk\x89\xd9\x19\x9f9\xdfm\x15\x01\x0f\x00"\xe5\x10\x06\x84R\x13\xf7\xe3l\xf1Q\xc0')

	fake.md5(raw_output=False)
	# '9673780cf8bc10fde08e0779189c5fc8'

	fake.sha1(raw_output=False)
	# '9ecdfa2bb92f8393dbff3bea06a3a4a785fc5810'

	fake.null_boolean()
	# False

	fake.sha256(raw_output=False)
	# '333a9d3d1f533e3733b7262aed56ab7955aecf10b7d5957947fb4b222ee477d1'

	fake.uuid4()
	# '533b534c-8769-9e6d-3eaf-e5cd588f13f6'

	fake.language_code()
	# u'ku'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'\u90b4'

	fake.name_male()
	# u'\u851a\u54f2\u744b'

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

	fake.romanized_name()
	# u'Jie Kong'

	fake.prefix_male()
	# u''

	fake.prefix()
	# u''

	fake.last_romanized_name()
	# u'Hu'

	fake.suffix_female()
	# u''

	fake.name()
	# u'\u614e\u90c1\u96ef'

	fake.first_romanized_name()
	# u'Min'

	fake.first_name()
	# u'\u6167\u541b'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'\u5fd7\u8c6a'

	fake.first_name_female()
	# u'\u5ead\u744b'

	fake.last_name_female()
	# u'\u5c39'

	fake.last_name()
	# u'\u8c9d'

	fake.prefix_female()
	# u''

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

::

	fake.phone_number()
	# u'045 70261075'

	fake.msisdn()
	# '9673130630985'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'243 \u65b0\u7af9\u7e23\u9577\u5b89\u8857340\u865f7\u6a13',
	#     'birthdate': datetime.date(1997, 7, 3),
	#     'mail': u'syan@yahoo.com',
	#     'name': u'\u6e38\u96c5\u6167',
	#     'sex': 'M',
	#     'username': u'malei'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'128 \u9023\u6c5f\u5e02\u5b78\u5e9c\u8def16\u865f\u4e4b3',
	#     'birthdate': datetime.date(2013, 4, 8),
	#     'blood_group': '0+',
	#     'company': u'\u53f0\u7063\u9152\u83f8\u6709\u9650\u516c\u53f8',
	#     'current_location': (Decimal('-31.305307'), Decimal('-94.665264')),
	#     'job': u'\u8996\u807d\u5de5\u7a0b\u985e\u4eba\u54e1',
	#     'mail': u'juan36@hotmail.com',
	#     'name': u'\u5c39\u96c5\u742a',
	#     'residence': u'56232 \u9ad8\u96c4\u7e23\u6c11\u6709\u5df75\u6bb56\u865f\u4e4b6',
	#     'sex': 'F',
	#     'ssn': u'I138537516',
	#     'username': u'lifeng',
	#     'website': [u'http://han.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   Decimal('1289382475.1'),
	#     Decimal('2488512922.97'),
	#     u'tOnswdcquGMtgwkAUCkw',
	#     Decimal('1.64'),
	#     6059,
	#     Decimal('-256412.256982')]

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

	fake.pystruct(count=10, *value_types)
	# (   [   7387,
	#         Decimal('-3096.39'),
	#         5763,
	#         824,
	#         Decimal('2.68596970174E+13'),
	#         datetime.datetime(2005, 4, 11, 16, 16, 10),
	#         u'http://www.li.tw/main/main.html',
	#         u'tSiNmGrcjcSQWXdLXnon',
	#         u'dGuBIyqyuXOoqInOajxq',
	#         u'lNqqamOeUqVugUkVWQSk'],
	#     {   u'\u4e0d\u662f': u'https://www.peng.tw/search/',
	#         u'\u4eca\u5e74': u'https://peng.org/list/post/',
	#         u'\u514d\u8cbb': u'mtmIyqEDtQcZNctpUIpk',
	#         u'\u51fa\u73fe': u'mNZOPiFEsTlmmakFwBJl',
	#         u'\u52a0\u5165': datetime.datetime(2001, 11, 15, 1, 8, 33),
	#         u'\u5b69\u5b50': 5072,
	#         u'\u60a8\u7684': u'jVzgvVXvMkmVaUhkuBga',
	#         u'\u6d3b\u52d5': Decimal('268.52'),
	#         u'\u96bb\u8981': u'UIFXhenShhALWIsflpQQ'},
	#     {   u'\u4e00\u76f4': {   6: 126,
	#                              7: [   u'junguo@gmail.com',
	#                                     -25300132587.9948,
	#                                     datetime.datetime(1979, 3, 14, 16, 31, 44)],
	#                              8: {   6: u'BjEcurJfloKqrCrkkZyZ',
	#                                     7: -59238370051.87,
	#                                     8: [   Decimal('-185.6289'),
	#                                            u'atbkRQdaMtoPreEQfUFy']}},
	#         u'\u4e0d\u8981': {   4: u'VRkRzGEZcPXLwPTrVVJi',
	#                              5: [   Decimal('-1.09970558953E+12'),
	#                                     u'http://feng.org/categories/app/search/faq/',
	#                                     24],
	#                              6: {   4: -989059289228.7,
	#                                     5: datetime.datetime(1978, 3, 28, 19, 13, 26),
	#                                     6: [u'ZGgGTnjIlExCBochUofY', 125]}},
	#         u'\u4eca\u5929': {   1: datetime.datetime(1974, 8, 3, 7, 56, 16),
	#                              2: [   datetime.datetime(1980, 3, 15, 16, 59, 38),
	#                                     u'wnfDrdgSBmaxXNFmKbIL',
	#                                     u'http://fang.tw/'],
	#                              3: {   1: u'fangpan@gmail.com',
	#                                     2: u'jxQRlDypBOXngsoSYxHo',
	#                                     3: [u'mSHKxXMsPRoqQacsYImh', 28]}},
	#         u'\u529f\u80fd': {   9: datetime.datetime(1984, 3, 11, 18, 49, 1),
	#                              10: [   -518211663872.53,
	#                                      Decimal('4675824377.8'),
	#                                      u'ylong@zhao.tw'],
	#                              11: {   9: u'WWXkkKXqMRjhFRAsNtHU',
	#                                      10: datetime.datetime(2004, 8, 25, 8, 24, 21),
	#                                      11: [   u'https://www.lai.tw/blog/app/post/',
	#                                              u'http://jin.com/author.htm']}},
	#         u'\u5b78\u7fd2': {   3: 1595844258.7,
	#                              4: [   u'ixwfiWtZYsvkaQxKcHON',
	#                                     u'ZgemkzeLfjrAukfypJaJ',
	#                                     u'https://www.wang.com/author.htm'],
	#                              5: {   3: u'weijun@qiao.com',
	#                                     4: 6936,
	#                                     5: [   u'http://www.wen.tw/homepage/',
	#                                            39400185.0]}},
	#         u'\u65b0\u805e': {   7: 308,
	#                              8: [4536, u'owERzcpskVtKZCPXItwO', 2640],
	#                              9: {   7: u'https://hou.tw/',
	#                                     8: -763432955064.0,
	#                                     9: [u'MzBtyOuXyHjbJvRXMIJA', 8906]}},
	#         u'\u662f\u4e00': {   5: 5180,
	#                              6: [   u'gFcSKxJXQAMklpqrSvSQ',
	#                                     u'https://www.xue.tw/privacy.html',
	#                                     7872],
	#                              7: {   5: datetime.datetime(1993, 4, 27, 2, 0, 48),
	#                                     6: u'http://www.chang.tw/register.asp',
	#                                     7: [   -262053369.7398,
	#                                            u'NgTMExoEBJnXgUoyAMGy']}},
	#         u'\u6700\u540e': {   8: 9027,
	#                              9: [   u'RrKxVHXQAjSOpxqXtMRr',
	#                                     u'RhAEbCVrsownrZrgPWiP',
	#                                     u'http://www.lai.tw/explore/explore/main/homepage/'],
	#                              10: {   8: u'http://www.fu.tw/',
	#                                      9: u'iYqaaDZzOZgHqZOdjTte',
	#                                      10: [   Decimal('7.39486454623E+13'),
	#                                              9488]}},
	#         u'\u767c\u5c55': {   2: u'longming@gmail.com',
	#                              3: [   u'http://www.du.com/author.htm',
	#                                     u'XQKXJMdofizsBApXATAI',
	#                                     u'LNwNrKJFUmbXaImIptJx'],
	#                              4: {   2: Decimal('-626586829748'),
	#                                     3: u'qUBjjqcxoXUaFYzVlyzm',
	#                                     4: [u'https://yu.tw/login/', 3373]}},
	#         u'\u770b\u5230': {   0: u'FGsEJCzhRjTAHpSTqKmH',
	#                              1: [   -605199786117199.0,
	#                                     u'eOhzRmzbCqsWLPRhGgHj',
	#                                     datetime.datetime(1986, 1, 3, 0, 17, 13)],
	#                              2: {   0: 7109,
	#                                     1: 2526,
	#                                     2: [   u'JclRvEdKhXXsUNnHOmqH',
	#                                            u'http://www.shao.tw/register.html']}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   8898,
	#     u'KflrrfAPwKaKnHlMAwUL',
	#     4274,
	#     Decimal('24115473662.6'),
	#     3473,
	#     Decimal('5.3'),
	#     8550,
	#     u'UEFvNzuJuXyBTNMlaiio',
	#     Decimal('4658766515.73')]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   9189,
	#     u'FACraOefcXvJzBdeUpll',
	#     1828702307295.5,
	#     u'BVokNNAesBszjVUvWCCX',
	#     -845690050829.0,
	#     Decimal('654492.357619'))

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([1568, 7940, 4838, u'VHePSIbWOhhklAGYodrv', 1703, u'jxfCfpvNZVbTzlLVbPQB', u'https://www.zhou.tw/', u'UvMECFiTSJwwZAKaACyy', 5228, 9943, u'sJjcJkPCEyKwTrvVftfJ', u'jNbpvCIAMPaAUjIkRkCt', 4767])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'\u4f5c\u54c1': Decimal('-4.58692801438E+13'),
	#     u'\u5b78\u751f': datetime.datetime(1974, 7, 23, 14, 56, 16),
	#     u'\u5bc6\u78bc': Decimal('-2618561.0'),
	#     u'\u5ee3\u544a': u'pengna@lin.com',
	#     u'\u8edf\u9ad4': u'sdu@hotmail.com',
	#     u'\u9019\u88e1': u'ihoRvfbZuFhmoTDtdMah'}

	fake.pyint()
	# 9546

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

::

	fake.ssn()
	# u'X932443179'

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

::

	fake.mac_processor()
	# u'PPC'

	fake.firefox()
	# u'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_5; rv:1.9.2.20) Gecko/2013-09-12 06:13:58 Firefox/3.6.3'

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

	fake.opera()
	# u'Opera/8.59.(Windows NT 6.2; nhn-MX) Presto/2.9.189 Version/10.00'

	fake.windows_platform_token()
	# u'Windows CE'

	fake.internet_explorer()
	# u'Mozilla/5.0 (compatible; MSIE 7.0; Windows 98; Trident/3.1)'

	fake.user_agent()
	# u'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5340 (KHTML, like Gecko) Chrome/14.0.823.0 Safari/5340'

	fake.linux_processor()
	# u'i686'

	fake.chrome(version_from=13, version_to=63, build_from=800, build_to=899)
	# u'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_5_9) AppleWebKit/5361 (KHTML, like Gecko) Chrome/22.0.803.0 Safari/5361'

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

	fake.safari()
	# u'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_11_7 rv:3.0; fur-IT) AppleWebKit/534.33.3 (KHTML, like Gecko) Version/4.0.3 Safari/534.33.3'
