
Language zh_CN
===============

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

::

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

	fake.street_name()
	# u'\u5f20\u8857'

	fake.address()
	# u'\u6ce2\u5e02\u7ba1\u8857l\u5ea7 838009'

	fake.street_address()
	# u'\u90d1\u8857J\u5ea7'

	fake.postcode()
	# u'956047'

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

	fake.country()
	# u'\u7259\u4e70\u52a0'

	fake.city_name()
	# u'\u676d\u5dde'

	fake.street_suffix()
	# u'\u8def'

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

	fake.city_suffix()
	# u'\u5e02'

	fake.building_number()
	# u'm\u5ea7'

	fake.country_code()
	# u'BY'

	fake.city()
	# u'\u5a77\u5e02'

	fake.state()
	# u'\u5b89\u6b21\u533a'

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

::

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

	fake.ean13()
	# u'6102497176641'

	fake.ean8()
	# u'56056693'

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

::

	fake.rgb_css_color()
	# u'rgb(139,162,228)'

	fake.color_name()
	# u'Beige'

	fake.rgb_color_list()
	# (141, 220, 16)

	fake.rgb_color()
	# u'195,53,245'

	fake.safe_hex_color()
	# u'#cc8800'

	fake.safe_color_name()
	# u'navy'

	fake.hex_color()
	# u'#a7a756'

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

::

	fake.company_suffix()
	# u'\u4fe1\u606f\u6709\u9650\u516c\u53f8'

	fake.company()
	# u'\u548c\u6cf0\u7f51\u7edc\u6709\u9650\u516c\u53f8'

	fake.company_prefix()
	# u'\u6069\u608c'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'JCB 16 digit\n\u67f3 \u535e\n3112205866169463 08/17\nCVC: 234\n'

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

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

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

::

	fake.currency_code()
	# 'AMD'

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

::

	fake.date_time_ad()
	# datetime.datetime(1502, 9, 11, 17, 4, 34)

	fake.month()
	# '10'

	fake.am_pm()
	# 'PM'

	fake.timezone()
	# u'Africa/Nouakchott'

	fake.iso8601()
	# '1986-05-15T23:22:10'

	fake.date_time()
	# datetime(1977, 2, 18, 2, 11, 40)

	fake.month_name()
	# 'January'

	fake.date_time_this_year(before_now=True, after_now=False)
	# datetime(2015, 4, 19, 22, 17, 3)

	fake.unix_time()
	# 752586412

	fake.day_of_week()
	# 'Saturday'

	fake.day_of_month()
	# '10'

	fake.time(pattern="%H:%M:%S")
	# '14:05:10'

	fake.date_time_between(start_date="-30y", end_date="now")
	# datetime(1993, 2, 7, 21, 9, 50)

	fake.date_time_this_month(before_now=True, after_now=False)
	# datetime(2015, 11, 2, 23, 57, 42)

	fake.year()
	# '1992'

	fake.date_time_between_dates(datetime_start=None, datetime_end=None)
	# datetime(2015, 11, 5, 8, 51, 56)

	fake.date_time_this_century(before_now=True, after_now=False)
	# datetime(2010, 7, 19, 18, 46, 50)

	fake.date_time_this_decade(before_now=True, after_now=False)
	# datetime(2015, 3, 29, 2, 30, 3)

	fake.century()
	# u'XIV'

	fake.date(pattern="%Y-%m-%d")
	# '2012-05-15'

	fake.time_delta()
	# datetime.timedelta(14761, 43067)

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

::

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

	fake.file_name(category=None, extension=None)
	# u'sit.jpg'

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

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

::

	fake.ipv4()
	# u'118.101.40.38'

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

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

	fake.uri()
	# u'http://www..com/faq.htm'

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

	fake.image_url(width=None, height=None)
	# u'http://dummyimage.com/190x714'

	fake.tld()
	# u'com'

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

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

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

	fake.domain_name()
	# u'.org'

	fake.uri_extension()
	# u'.html'

	fake.ipv6()
	# u'f5dd:93f1:8c85:76a0:30d7:90ef:95e2:df19'

	fake.safe_email()
	# u'.@example.com'

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

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

	fake.email()
	# u'.@.org'

	fake.uri_page()
	# u'faq'

	fake.mac_address()
	# u'57:d9:5b:b9:98:6e'

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

::

	fake.job()
	# 'Social worker'

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

::

	fake.text(max_nb_chars=200)
	# u'Libero repellendus atque et soluta. Repudiandae repellat ullam aut unde nemo vero. Ut sed non ipsa ea est. Aut molestiae quia officia sunt velit molestiae est vel.'

	fake.sentence(nb_words=6, variable_nb_words=True)
	# u'Ducimus ab nulla recusandae aut.'

	fake.word()
	# u'laborum'

	fake.paragraphs(nb=3)
	# [   u'Eveniet molestiae reiciendis occaecati. Beatae maxime consequuntur voluptatibus assumenda qui sint vel. Magnam est dolorem enim magni atque dolor. Iusto deserunt et quam dolores quas.',
	#     u'Amet ipsum voluptatibus ut illo rem beatae minus. Porro ad eum pariatur nihil iste. Ad non dicta ex vel.',
	#     u'Delectus qui ea sed. Ipsum nemo dolore consequatur aliquam necessitatibus enim est. Sit dolorem deserunt tempore est quo ut quisquam. Et enim molestiae nihil nostrum dolores nihil ut at.']

	fake.words(nb=3)
	# [u'molestiae', u'molestiae', u'ut']

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True)
	# u'Occaecati quia qui earum sint illo ipsum molestiae. Iure blanditiis cum molestiae esse voluptas facere accusamus. Id voluptates ut dolor esse culpa consectetur illum. Magni neque cupiditate voluptas iusto.'

	fake.sentences(nb=3)
	# [   u'A nesciunt error enim porro error illo nostrum.',
	#     u'Ducimus pariatur similique nihil illum eos quasi.',
	#     u'Minus ullam quasi animi eligendi a.']

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'%r7ktqF%^p'

	fake.locale()
	# u'fr_MT'

	fake.md5(raw_output=False)
	# '8807d7a32966ac9f246c4c1e225e4264'

	fake.sha1(raw_output=False)
	# 'bc2fc114d165c2a0c9833c02c3b63b0276edaa85'

	fake.null_boolean()
	# True

	fake.sha256(raw_output=False)
	# '0f657fc7a8f99271059602c175a61c612f0d3b4efaaadb1607bd6150876387cf'

	fake.uuid4()
	# 'c61d0a12-7d89-497c-a9d2-4a0310bf351f'

	fake.language_code()
	# u'pt'

	fake.boolean(chance_of_getting_true=50)
	# True

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

::

	fake.last_name_male()
	# u'\u5bb6'

	fake.name_female()
	# u'\u95e8\u6770'

	fake.prefix_male()
	# ''

	fake.prefix()
	# ''

	fake.name()
	# u'\u6641\u7ea2\u6885'

	fake.suffix_female()
	# ''

	fake.name_male()
	# u'\u5085\u9f99'

	fake.first_name()
	# u'\u4e3d\u534e'

	fake.suffix_male()
	# ''

	fake.suffix()
	# ''

	fake.first_name_male()
	# u'\u79c0\u82f1'

	fake.first_name_female()
	# u'\u5175'

	fake.last_name_female()
	# u'\u95fb'

	fake.last_name()
	# u'\u72c4'

	fake.prefix_female()
	# ''

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

::

	fake.phone_number()
	# u'13755682835'

	fake.phonenumber_prefix()
	# 157

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

::

	fake.simple_profile()
	# {   'address': u'\u5e06\u5e02\u5357\u8857N\u5ea7 835258',
	#     'birthdate': '1979-09-20',
	#     'mail': u'.@gmail.com',
	#     'name': u'\u5e7f\u6167',
	#     'sex': 'M',
	#     'username': u'h'}

	fake.profile(fields=None)
	# {   'address': u'\u5ca9\u5e02\u9146\u8defn\u5ea7 571248',
	#     'birthdate': '2002-09-11',
	#     'blood_group': 'A-',
	#     'company': u'\u65f6\u7a7a\u76d2\u6570\u5b57\u4f20\u5a92\u6709\u9650\u516c\u53f8',
	#     'current_location': (Decimal('-85.4639775'), Decimal('14.187230')),
	#     'job': 'Accountant, chartered',
	#     'mail': u'.@hotmail.com',
	#     'name': u'\u7518\u6b23',
	#     'residence': u'\u6797\u5e02\u67e5\u8defa\u5ea7 846818',
	#     'sex': 'M',
	#     'ssn': u'771-39-3332',
	#     'username': u'.',
	#     'website': [   u'http://.net/',
	#                    u'http://.com/',
	#                    u'http://www..info/',
	#                    u'http://.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([5715, 7170, u'Dolorem ad qui eum.', 4840, u'Cum aut dicta vel.', u'Labore non rerum.', 2379, u'.@hotmail.com', datetime(1973, 2, 26, 6, 31, 29), u'Doloremque aperiam.', 7091, u'Est beatae quia est.', u'Et dolor ipsam quas.', Decimal('94954538.9157')])

	fake.pystr(max_chars=20)
	# u'Et sequi magni.'

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'.@yahoo.com',
	#         u'Velit officiis id.',
	#         u'Quibusdam quod.',
	#         3748,
	#         u'Enim sed voluptatem.',
	#         u'Suscipit itaque.',
	#         1,
	#         3218,
	#         Decimal('5376162805.7'),
	#         u'Dolorum porro.'],
	#     {   u'aut': 2544,
	#         u'eveniet': 8941,
	#         u'nihil': u'Doloribus qui et.',
	#         u'pariatur': 7773,
	#         u'praesentium': u'41@.com',
	#         u'qui': Decimal('-61425395481.9'),
	#         u'sed': Decimal('8.80098511844E+12'),
	#         u'sunt': u'Tempora ipsum.',
	#         u'ut': u'http://.org/'},
	#     {   u'ab': {   7: u'Voluptatem quia.',
	#                    8: [Decimal('-3.1447866319E+14'), 811, 4808],
	#                    9: {   7: u'.@gmail.com',
	#                           8: u'Ratione esse non.',
	#                           9: [u'Aspernatur vitae.', u'Placeat ipsam.']}},
	#         u'aperiam': {   3: u'61@.com',
	#                         4: [   u'Voluptatibus veniam.',
	#                                u'http://www..net/app/categories/home.html',
	#                                478],
	#                         5: {   3: u'Repellat architecto.',
	#                                4: 4306,
	#                                5: [   Decimal('-25625.3159739'),
	#                                       u'Sint eligendi.']}},
	#         u'distinctio': {   9: u'Neque dolor aut est.',
	#                            10: [   u'Dignissimos quo.',
	#                                    u'Facere laudantium.',
	#                                    u'Sit rerum.'],
	#                            11: {   9: datetime(1975, 8, 29, 2, 56, 59),
	#                                    10: datetime(2010, 7, 28, 18, 38, 37),
	#                                    11: [   u'Quisquam ipsa ab.',
	#                                            u'Consequatur ducimus.']}},
	#         u'ipsa': {   2: datetime(1988, 10, 31, 17, 50, 20),
	#                      3: [   u'http://100.com/index.php',
	#                             25616081595209.9,
	#                             u'Recusandae et et.'],
	#                      4: {   2: 7026,
	#                             3: u'Quod maxime commodi.',
	#                             4: [u'http://.net/register.php', u'f@.net']}},
	#         u'nisi': {   5: Decimal('-6.67949821863E+13'),
	#                      6: [   5070,
	#                             u'Incidunt soluta.',
	#                             datetime(1978, 7, 22, 22, 47, 56)],
	#                      7: {   5: u'43@.info',
	#                             6: Decimal('-27972992.6929'),
	#                             7: [   Decimal('-9.8500310183E+12'),
	#                                    datetime(2004, 6, 23, 14, 37, 52)]}},
	#         u'non': {   4: u'Sed non magni.',
	#                     5: [   datetime(1988, 12, 28, 15, 3, 22),
	#                            u'Pariatur est.',
	#                            u'Et non dolores sed.'],
	#                     6: {   4: u'Enim sunt eum.',
	#                            5: Decimal('90.395'),
	#                            6: [1424, datetime(1978, 7, 26, 7, 3, 22)]}},
	#         u'quam': {   6: u'.@.com',
	#                      7: [   u'Ut est ut aut.',
	#                             u'http://.com/',
	#                             datetime(1987, 3, 15, 15, 41, 3)],
	#                      8: {   6: u'Quod repellendus.',
	#                             7: 2414228.99,
	#                             8: [   Decimal('3.68428366275E+12'),
	#                                    Decimal('62529007463.6')]}},
	#         u'qui': {   8: datetime(1983, 6, 27, 4, 52, 34),
	#                     9: [   u'http://www..com/',
	#                            datetime(1988, 6, 17, 0, 32, 18),
	#                            1024],
	#                     10: {   8: u'Et nam libero.',
	#                             9: 97042433082.401,
	#                             10: [Decimal('11531107.4395'), 6289]}},
	#         u'rem': {   0: 9650.7805,
	#                     1: [u'Aut qui ut.', 51542.1, u'Molestiae accusamus.'],
	#                     2: {   0: datetime(1987, 11, 12, 1, 41, 1),
	#                            1: datetime(1987, 3, 3, 16, 25, 40),
	#                            2: [u'Nostrum eum quaerat.', u'.@.com']}}})

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   8794,
	#     21.4781369261,
	#     u'Molestiae a.',
	#     5640,
	#     u'Ipsam ab cupiditate.',
	#     u'v@.com',
	#     u'http://www..biz/app/list/tag/post.php',
	#     Decimal('-5.49180288751E+14')]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'.@.biz',
	#     u'k@.com',
	#     u'Qui enim nesciunt.',
	#     u'Incidunt itaque.',
	#     95694.0,
	#     3409,
	#     u'http://.com/category/search/about/',
	#     537.899119985,
	#     u'Sed sed non labore.')

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([datetime(1999, 12, 13, 0, 16, 19), u'Deserunt laudantium.', u'Quos consequatur.', datetime(2007, 7, 31, 20, 51, 27), datetime(1972, 7, 9, 13, 51, 40), u'Quos pariatur.', 6575, u'Libero non maxime.', u'99@yahoo.com', 6556397431461.64, Decimal('14915356.412'), u'23@.com', u'Dolorem delectus.', u'Iste consequuntur.'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'dolor': 1629,
	#     u'et': u'Consequatur et est.',
	#     u'fugiat': datetime(2007, 1, 5, 13, 44, 40),
	#     u'illo': -8796.7,
	#     u'ipsum': 71731.7,
	#     u'laborum': Decimal('27648188.5818'),
	#     u'molestiae': 60409.112,
	#     u'odit': u'Quod ipsum modi.',
	#     u'sunt': -551366395.8,
	#     u'totam': datetime(1970, 9, 6, 13, 35, 3)}

	fake.pyint()
	# 1767

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

::

	fake.ssn()
	# u'424-45-9391'

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

::

	fake.mac_processor()
	# u'U; PPC'

	fake.firefox()
	# u'Mozilla/5.0 (Windows NT 6.2; it-IT; rv:1.9.0.20) Gecko/2015-08-28 13:10:09 Firefox/3.8'

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

	fake.opera()
	# u'Opera/9.39.(Windows 98; Win 9x 4.90; sl-SI) Presto/2.9.182 Version/10.00'

	fake.windows_platform_token()
	# u'Windows 98; Win 9x 4.90'

	fake.internet_explorer()
	# u'Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.1; Trident/5.0)'

	fake.user_agent()
	# u'Mozilla/5.0 (X11; Linux i686) AppleWebKit/5332 (KHTML, like Gecko) Chrome/15.0.892.0 Safari/5332'

	fake.chrome()
	# u'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5332 (KHTML, like Gecko) Chrome/14.0.829.0 Safari/5332'

	fake.linux_processor()
	# u'i686'

	fake.mac_platform_token()
	# u'Macintosh; Intel Mac OS X 10_6_5'

	fake.safari()
	# u'Mozilla/5.0 (Windows; U; Windows 98; Win 9x 4.90) AppleWebKit/531.49.2 (KHTML, like Gecko) Version/4.0.1 Safari/531.49.2'
