
Language la
============

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

::

	fake.longitude()
	# Decimal('-151.850076')

	fake.building_number()
	# u'87595'

	fake.street_address()
	# u'9252 Byron Way Suite 784'

	fake.postalcode_plus4()
	# u'15140-0099'

	fake.city_prefix()
	# u'Lake'

	fake.military_ship()
	# u'USNS'

	fake.country_code()
	# u'SL'

	fake.city()
	# u'West Lydiachester'

	fake.zipcode_plus4()
	# u'74357-1740'

	fake.state_abbr()
	# u'PW'

	fake.latitude()
	# Decimal('-71.468491')

	fake.street_suffix()
	# u'Corner'

	fake.city_suffix()
	# u'mouth'

	fake.military_dpo()
	# u'Unit 1200 Box 1655'

	fake.country()
	# u'Lebanon'

	fake.secondary_address()
	# u'Suite 207'

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

	fake.postalcode()
	# u'90382'

	fake.address()
	# u'190 Bednar Crescent Apt. 424\nNorth Winnifredland, AK 84210-7582'

	fake.state()
	# u'Arizona'

	fake.military_state()
	# u'AA'

	fake.street_name()
	# u'Altenwerth Stream'

	fake.zipcode()
	# u'93109'

	fake.postcode()
	# u'61716-4400'

	fake.military_apo()
	# u'PSC 8136, Box 9480'

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

::

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

	fake.ean13()
	# u'8654990201507'

	fake.ean8()
	# u'17562133'

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

::

	fake.rgb_css_color()
	# u'rgb(30,140,201)'

	fake.color_name()
	# u'PapayaWhip'

	fake.rgb_color_list()
	# (81, 166, 240)

	fake.rgb_color()
	# u'173,155,213'

	fake.safe_hex_color()
	# u'#ccaa00'

	fake.safe_color_name()
	# u'maroon'

	fake.hex_color()
	# u'#21b343'

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

::

	fake.company()
	# u'Leannon-Pfannerstill'

	fake.company_suffix()
	# u'and Sons'

	fake.catch_phrase()
	# u'Focused actuating budgetary management'

	fake.bs()
	# u'iterate vertical e-commerce'

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

::

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

	fake.credit_card_provider(card_type=None)
	# u'Diners Club / Carte Blanche'

	fake.credit_card_full(card_type=None)
	# u'JCB 15 digit\nLacie Jast\n180021038299358 11/23\nCVC: 687\n'

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

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

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

::

	fake.currency_code()
	# 'SZL'

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

::

	fake.date_time_ad()
	# datetime.datetime(1435, 6, 8, 23, 22, 49)

	fake.month()
	# '01'

	fake.am_pm()
	# 'AM'

	fake.timezone()
	# u'Atlantic/Reykjavik'

	fake.iso8601()
	# '1992-09-13T00:07:36'

	fake.date_time()
	# datetime(1992, 9, 10, 2, 4, 26)

	fake.month_name()
	# 'October'

	fake.date_time_this_year(before_now=True, after_now=False)
	# datetime(2015, 1, 24, 8, 45, 2)

	fake.unix_time()
	# 744461783

	fake.day_of_week()
	# 'Monday'

	fake.day_of_month()
	# '09'

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

	fake.date_time_between(start_date="-30y", end_date="now")
	# datetime(2013, 11, 4, 4, 26, 42)

	fake.date_time_this_month(before_now=True, after_now=False)
	# datetime(2015, 11, 18, 19, 6, 35)

	fake.year()
	# '2007'

	fake.date_time_between_dates(datetime_start=None, datetime_end=None)
	# datetime(2015, 11, 30, 15, 31, 26)

	fake.date_time_this_century(before_now=True, after_now=False)
	# datetime(2014, 11, 19, 18, 18, 57)

	fake.date_time_this_decade(before_now=True, after_now=False)
	# datetime(2011, 8, 13, 6, 51, 18)

	fake.century()
	# u'IX'

	fake.date(pattern="%Y-%m-%d")
	# '1990-10-31'

	fake.time_delta()
	# datetime.timedelta(6647, 58933)

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

::

	fake.mime_type(category=None)
	# u'model/x3d+xml'

	fake.file_name(category=None, extension=None)
	# u'nobis.wav'

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

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

::

	fake.ipv4()
	# u'52.174.143.189'

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

	fake.company_email()
	# u'aferry@farrell.info'

	fake.uri()
	# u'http://www.gutkowski.com/list/homepage/'

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

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

	fake.tld()
	# u'biz'

	fake.free_email()
	# u'lettie49@hotmail.com'

	fake.slug(*args, **kwargs)
	# u'et-rerum-nihil'

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

	fake.domain_name()
	# u'stark.info'

	fake.uri_extension()
	# u'.jsp'

	fake.ipv6()
	# u'2421:d0e3:9ece:5748:a9fd:7aad:6703:b4d2'

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

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

	fake.uri_path(deep=None)
	# u'wp-content/blog'

	fake.email()
	# u'coralie.grant@hotmail.com'

	fake.uri_page()
	# u'faq'

	fake.mac_address()
	# u'1a:5b:d5:64:36:a9'

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

::

	fake.job()
	# 'Therapist, art'

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

::

	fake.text(max_nb_chars=200)
	# u'Et magni cum illum veniam aut. Est aut consequatur inventore voluptas. Quo aut tenetur consequuntur saepe ut non aut. Molestias ut quisquam soluta consequatur neque asperiores.'

	fake.sentence(nb_words=6, variable_nb_words=True)
	# u'Officia sed voluptates ipsa.'

	fake.word()
	# u'eligendi'

	fake.paragraphs(nb=3)
	# [   u'Aut similique quam velit consequatur fuga consequatur. Voluptatem velit velit cupiditate in minus asperiores. Corporis aliquam eligendi et nesciunt.',
	#     u'Perspiciatis vel neque aut voluptate cumque quia. Nulla delectus molestiae ex omnis eveniet cum. Quos aut voluptatum dolor sit est voluptate eum.',
	#     u'Ratione ut voluptas perspiciatis. Dolore rerum eos provident temporibus porro. Suscipit repudiandae recusandae est necessitatibus deserunt numquam incidunt. Perspiciatis quaerat consequatur et consequatur.']

	fake.words(nb=3)
	# [u'corporis', u'ab', u'corporis']

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True)
	# u'Consequatur quod culpa dolores magni odit. Animi ratione ad qui mollitia veritatis quia corporis. Corrupti ut non sunt recusandae perferendis aut aspernatur. Sint optio corporis similique voluptatem consequatur.'

	fake.sentences(nb=3)
	# [   u'Et natus dolores asperiores modi.',
	#     u'At voluptatem earum assumenda nemo dolor qui autem.',
	#     u'Harum voluptas cumque esse ab amet cupiditate.']

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'eqLONUN*Ld'

	fake.locale()
	# u'ru_AD'

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

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

	fake.null_boolean()
	# True

	fake.sha256(raw_output=False)
	# 'f8d780270a65e3d5117b1fcbc900a67e80113ac5aadf05d88d51fb2f5aa6ad77'

	fake.uuid4()
	# '47fc5325-097f-473c-bdf5-acdeed1d3c62'

	fake.language_code()
	# u'en'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'Langosh'

	fake.name_female()
	# u'Frida Quigley DDS'

	fake.prefix_male()
	# u'Mr.'

	fake.prefix()
	# u'Dr.'

	fake.name()
	# u'Timmothy Hegmann'

	fake.suffix_female()
	# u'DDS'

	fake.name_male()
	# u'Solomon Mayer'

	fake.first_name()
	# u'Colt'

	fake.suffix_male()
	# u'PhD'

	fake.suffix()
	# u'DVM'

	fake.first_name_male()
	# u'Gilmer'

	fake.first_name_female()
	# u'Marianita'

	fake.last_name_female()
	# u'Schultz'

	fake.last_name()
	# u'Boyle'

	fake.prefix_female()
	# u'Ms.'

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

::

	fake.phone_number()
	# u'061.475.1735x82825'

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

::

	fake.simple_profile()
	# {   'address': u'7171 Lyman Coves Suite 951\nIsabelleside, PR 81874-0498',
	#     'birthdate': '2014-06-07',
	#     'mail': u'hillary24@yahoo.com',
	#     'name': u'Sanjuana Moore',
	#     'sex': 'M',
	#     'username': u'boehm.sherman'}

	fake.profile(fields=None)
	# {   'address': u'72627 Lakin Pine\nLake Elonzoshire, WI 18516-1353',
	#     'birthdate': '1995-10-31',
	#     'blood_group': '0-',
	#     'company': u'Runte, Schmeler and Schowalter',
	#     'current_location': (Decimal('43.882217'), Decimal('-60.163009')),
	#     'job': 'Prison officer',
	#     'mail': u'xnader@yahoo.com',
	#     'name': u'Eustace Welch',
	#     'residence': u'07321 Mayer Villages Apt. 130\nWalkerville, ND 26599-7995',
	#     'sex': 'F',
	#     'ssn': u'268-81-8531',
	#     'username': u'simonis.wing',
	#     'website': [u'http://haag.org/', u'http://wildermanzieme.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'http://www.heller.org/search/list/tags/faq/',
	#     u'Et dolor soluta id.',
	#     u'Magnam soluta ut.',
	#     Decimal('834571.198698'),
	#     u'Eos quas atque sed.',
	#     -917.627,
	#     u'http://www.runolfsdottirspinka.biz/',
	#     5800]

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

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'Vitae amet.',
	#         Decimal('742.14916099'),
	#         u'levon92@leschlangosh.biz',
	#         u'Officiis.',
	#         u'Error illum magnam.',
	#         1243,
	#         u'jazlyn96@hotmail.com',
	#         Decimal('-7.71043190672E+14'),
	#         6586,
	#         u'Numquam voluptatem.'],
	#     {   u'architecto': u'Ut porro expedita.',
	#         u'consequuntur': datetime(1979, 7, 17, 23, 43, 14),
	#         u'ea': u'http://www.roob.info/category.html',
	#         u'et': 1109,
	#         u'molestiae': 1424,
	#         u'nemo': datetime(2006, 1, 13, 6, 33, 18),
	#         u'quisquam': u'alease.hessel@gmail.com',
	#         u'sed': u'Rem velit excepturi.',
	#         u'totam': u'At quis velit ipsa.',
	#         u'voluptatum': datetime(1996, 1, 30, 23, 27, 20)},
	#     {   u'facilis': {   1: 6102,
	#                         2: [   Decimal('-3.84647142489E+14'),
	#                                u'Est fugiat possimus.',
	#                                u'Quibusdam.'],
	#                         3: {   1: datetime(1991, 12, 24, 18, 9, 56),
	#                                2: u'Est magnam ut aut.',
	#                                3: [715, datetime(1977, 8, 1, 17, 52, 45)]}},
	#         u'impedit': {   3: u'Sed ea iusto et sit.',
	#                         4: [   datetime(1994, 1, 15, 0, 51, 43),
	#                                4564582608679.44,
	#                                u'Iure dicta.'],
	#                         5: {   3: u'Aut facilis vel.',
	#                                4: Decimal('91478348.0'),
	#                                5: [3900, u'http://johnsonhirthe.com/']}},
	#         u'in': {   8: 7571,
	#                    9: [6659, 4154, u'Quia voluptatibus.'],
	#                    10: {   8: u'Voluptas et.',
	#                            9: 3615,
	#                            10: [7866, u'dickens.rosaria@hotmail.com']}},
	#         u'odio': {   7: u'Quisquam occaecati.',
	#                      8: [   u'parisian.shirley@hotmail.com',
	#                             u'mimi11@yahoo.com',
	#                             u'Modi necessitatibus.'],
	#                      9: {   7: u'http://www.lockman.com/about/',
	#                             8: u'Rerum consequuntur.',
	#                             9: [7861, 8197]}},
	#         u'quae': {   2: u'Eum est voluptatem.',
	#                      3: [   u'Blanditiis voluptas.',
	#                             Decimal('-614083.484'),
	#                             u'Ab odio odio.'],
	#                      4: {   2: 6728,
	#                             3: u'krystin69@will.com',
	#                             4: [2530, -846.94788195]}},
	#         u'quam': {   4: 3924,
	#                      5: [1168, 8269, u'Qui unde fugiat.'],
	#                      6: {   4: u'Fugit rerum.',
	#                             5: 3936,
	#                             6: [   u'Debitis neque ut id.',
	#                                    u'Aspernatur rerum.']}},
	#         u'qui': {   5: u'Nemo molestiae.',
	#                     6: [   u'Qui culpa beatae.',
	#                            datetime(1975, 8, 12, 17, 12, 32),
	#                            u'Qui illo ex.'],
	#                     7: {   5: 3721,
	#                            6: 139,
	#                            7: [   datetime(1990, 9, 20, 2, 38, 38),
	#                                   datetime(2003, 5, 12, 2, 35, 24)]}},
	#         u'sit': {   6: 1656,
	#                     7: [2768, u'Est nemo quibusdam.', 188157120785.1],
	#                     8: {   6: Decimal('-2.02804617844E+13'),
	#                            7: u'Qui voluptatum at.',
	#                            8: [   u'schultz.alberta@bauch.info',
	#                                   u'http://www.muller.net/wp-content/category/list/register.html']}},
	#         u'totam': {   0: u'Molestiae pariatur.',
	#                       1: [   u'Dolorem officiis.',
	#                              3490,
	#                              u'Dolor quos ut odit.'],
	#                       2: {   0: u'Voluptatem.',
	#                              1: u'Non aliquam et.',
	#                              2: [   u'jordan.reynolds@willms.com',
	#                                     datetime(2004, 6, 21, 21, 50, 18)]}},
	#         u'voluptatem': {   9: u'Rerum earum ipsam.',
	#                            10: [   u'http://www.frami.biz/terms.html',
	#                                    -478.8849471251,
	#                                    datetime(1977, 8, 15, 13, 17, 37)],
	#                            11: {   9: 3024,
	#                                    10: Decimal('2.73025360605E+12'),
	#                                    11: [   u'Ut et eos explicabo.',
	#                                            u'Rerum rem.']}}})

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   Decimal('-2.08583341877E+13'),
	#     u'Repudiandae.',
	#     u'smitham.maverick@hotmail.com',
	#     datetime(2000, 10, 20, 14, 20, 20),
	#     u'Error vel veritatis.',
	#     datetime(1994, 8, 11, 5, 6, 10),
	#     u'xkunze@gmail.com',
	#     u'kunze.lim@kunze.info',
	#     datetime(1987, 4, 6, 12, 4, 51)]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   9221,
	#     Decimal('-1136404992.96'),
	#     u'Molestiae ut ab.',
	#     u'shansen@gmail.com',
	#     u'dori.jakubowski@mrazkertzmann.org',
	#     u'spencer.collie@gmail.com',
	#     938290437951822.0,
	#     u'Eligendi tenetur ea.',
	#     u'louise.barrows@ritchie.com',
	#     1651,
	#     u'Voluptatem saepe.',
	#     u'Consequatur.',
	#     u'Necessitatibus et.',
	#     datetime(1998, 11, 8, 5, 40, 27))

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'kschinner@gmail.com', u'http://turcotte.info/main/', 2440, u'Quo et natus illum.', u'halley19@hotmail.com', 5837, u'http://smithamharris.com/', u'Modi nulla nulla at.', u'http://www.beier.biz/blog/explore/blog/search.asp', u'renner.tuan@gmail.com', u'hirthe.ivey@jewess.com', Decimal('6108230451.51'), u'Iure nisi at.', u'Labore qui.'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'eius': 573,
	#     u'et': Decimal('5.68'),
	#     u'ipsa': u'fharvey@hotmail.com',
	#     u'mollitia': datetime(1978, 11, 20, 4, 37, 4),
	#     u'nam': u'Dolor harum nihil.',
	#     u'neque': u'http://reichert.com/category/',
	#     u'saepe': u'Rerum ea odio qui.',
	#     u'ut': u'waters.silvia@anderson.com'}

	fake.pyint()
	# 7988

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

::

	fake.ssn()
	# u'660-77-3105'

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

::

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

	fake.firefox()
	# u'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_9; rv:1.9.3.20) Gecko/2012-03-06 18:12:57 Firefox/3.8'

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

	fake.opera()
	# u'Opera/9.14.(Windows NT 5.01; it-IT) Presto/2.9.160 Version/10.00'

	fake.windows_platform_token()
	# u'Windows NT 5.01'

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

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

	fake.chrome()
	# u'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_6_3) AppleWebKit/5322 (KHTML, like Gecko) Chrome/14.0.870.0 Safari/5322'

	fake.linux_processor()
	# u'x86_64'

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

	fake.safari()
	# u'Mozilla/5.0 (Windows; U; Windows NT 5.01) AppleWebKit/531.10.5 (KHTML, like Gecko) Version/4.0.5 Safari/531.10.5'
