
Language fi_FI
===============

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

::

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

	fake.street_name()
	# u'Limkvattitie'

	fake.address()
	# u'Kirsikkaluumukuja 59\n02014 \xc4\xe4nekoski'

	fake.street_address()
	# u'Mangostaanipolku 50'

	fake.postcode()
	# u'76419'

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

	fake.country()
	# u'Komorit'

	fake.city_name()
	# u'H\xe4meenlinna'

	fake.fruit()
	# u'Keltainen'

	fake.street_suffix()
	# u'polku'

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

	fake.city_suffix()
	# u'Ville'

	fake.building_number()
	# u'4'

	fake.country_code()
	# u'SO'

	fake.city()
	# u'Joensuu'

	fake.state()
	# u'Pohjanmaan l\xe4\xe4ni'

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

::

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

	fake.ean13()
	# u'2571067739007'

	fake.ean8()
	# u'45317293'

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

::

	fake.rgb_css_color()
	# u'rgb(124,20,59)'

	fake.color_name()
	# u'Violet'

	fake.rgb_color_list()
	# (47, 42, 78)

	fake.rgb_color()
	# u'181,219,27'

	fake.safe_hex_color()
	# u'#cc2200'

	fake.safe_color_name()
	# u'fuchsia'

	fake.hex_color()
	# u'#49b6a8'

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

::

	fake.company_vat()
	# u'FI84069506'

	fake.company_suffix()
	# u'ry'

	fake.company()
	# u'Matinsalo Yliniemi Tmi'

	fake.company_business_id()
	# u'2775467-0'

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

::

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

	fake.credit_card_provider(card_type=None)
	# u'Voyager'

	fake.credit_card_full(card_type=None)
	# u'JCB 16 digit\nP\xe4ivikki Lumme\n3088656156502849 05/18\nCVC: 790\n'

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

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

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

::

	fake.currency_code()
	# 'BHD'

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

::

	fake.date_time_ad()
	# datetime.datetime(571, 10, 15, 17, 19, 52)

	fake.month()
	# '09'

	fake.am_pm()
	# 'PM'

	fake.timezone()
	# u'Europe/Athens'

	fake.iso8601()
	# '2013-07-05T11:29:09'

	fake.date_time()
	# datetime(2008, 2, 24, 15, 55, 13)

	fake.month_name()
	# 'September'

	fake.date_time_this_year(before_now=True, after_now=False)
	# datetime(2015, 4, 30, 10, 13, 12)

	fake.unix_time()
	# 748536059

	fake.day_of_week()
	# 'Thursday'

	fake.day_of_month()
	# '22'

	fake.time(pattern="%H:%M:%S")
	# '11:25:48'

	fake.date_time_between(start_date="-30y", end_date="now")
	# datetime(2010, 9, 29, 3, 0, 25)

	fake.date_time_this_month(before_now=True, after_now=False)
	# datetime(2015, 11, 1, 8, 54, 47)

	fake.year()
	# '1984'

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

	fake.date_time_this_century(before_now=True, after_now=False)
	# datetime(2012, 7, 14, 17, 40, 47)

	fake.date_time_this_decade(before_now=True, after_now=False)
	# datetime(2010, 3, 27, 4, 47, 32)

	fake.century()
	# u'XIX'

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

	fake.time_delta()
	# datetime.timedelta(5170, 62815)

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

::

	fake.mime_type(category=None)
	# u'multipart/form-data'

	fake.file_name(category=None, extension=None)
	# u'nulla.avi'

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

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

::

	fake.ipv4()
	# u'41.49.36.22'

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

	fake.company_email()
	# u'ptimonen@ahokas.fi'

	fake.uri()
	# u'http://ahde.com/index.jsp'

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

	fake.image_url(width=None, height=None)
	# u'http://www.lorempixel.com/945/532'

	fake.tld()
	# u'net'

	fake.free_email()
	# u'erissanen@luukku.com'

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

	fake.free_email_domain()
	# u'surffi.net'

	fake.domain_name()
	# u'salminen.com'

	fake.uri_extension()
	# u'.asp'

	fake.ipv6()
	# u'9289:9b0b:6ae9:c5e0:71ae:4449:e540:bf45'

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

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

	fake.uri_path(deep=None)
	# u'tag/list'

	fake.email()
	# u'vissakainen@hotmail.com'

	fake.uri_page()
	# u'faq'

	fake.mac_address()
	# u'a0:6b:db:8d:12:e6'

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

::

	fake.job()
	# 'Theatre director'

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

::

	fake.text(max_nb_chars=200)
	# u'Magni ut voluptatem voluptatum eos distinctio qui et. Ut repudiandae quam molestiae officiis in asperiores eum. Rerum corrupti nihil minima. Accusantium sit molestiae optio ut culpa et ullam.'

	fake.sentence(nb_words=6, variable_nb_words=True)
	# u'Est quis aliquam nam iste perspiciatis est sunt voluptas.'

	fake.word()
	# u'natus'

	fake.paragraphs(nb=3)
	# [   u'Dolores enim placeat sed. Vero nam voluptas neque facere quisquam ab est. Asperiores enim provident officiis.',
	#     u'Sunt neque illo eaque tempore. Hic quam modi totam adipisci neque. Aut tempore impedit et omnis libero optio rerum.',
	#     u'Qui numquam modi non illum. Quibusdam animi eos natus consequatur doloremque magni.']

	fake.words(nb=3)
	# [u'eaque', u'amet', u'quia']

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True)
	# u'Qui repellat quia ea delectus et. Quis delectus quam voluptatem est delectus ut dignissimos veniam. Quo in dolorum repellat perferendis consequatur modi sed cumque. Ea esse sed deserunt vitae.'

	fake.sentences(nb=3)
	# [   u'Enim et impedit ea omnis vero quibusdam.',
	#     u'Quia maxime sit qui nemo sapiente.',
	#     u'Quam odio est et ipsam voluptates.']

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'4&j0uAfcG$'

	fake.locale()
	# u'fr_QA'

	fake.md5(raw_output=False)
	# '5230a03361435b8a3f265e4f63d95679'

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

	fake.null_boolean()
	# False

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

	fake.uuid4()
	# 'f60508df-42a0-45cb-b961-dd73fe483d99'

	fake.language_code()
	# u'ru'

	fake.boolean(chance_of_getting_true=50)
	# True

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

::

	fake.last_name_male()
	# u'Koivula'

	fake.name_female()
	# u'Eelis Iivonen'

	fake.prefix_male()
	# u'Rouva'

	fake.prefix()
	# u'hra'

	fake.name()
	# u'Johannes J\xe4ntti'

	fake.suffix_female()
	# u'BSc'

	fake.name_male()
	# u'Helka Mustonen'

	fake.first_name()
	# u'Sakari'

	fake.suffix_male()
	# u'MSc'

	fake.suffix()
	# u'DI'

	fake.first_name_male()
	# u'Joni'

	fake.first_name_female()
	# u'Taina'

	fake.last_name_female()
	# u'Kemppainen'

	fake.last_name()
	# u'Anttonen'

	fake.prefix_female()
	# u'tri'

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

::

	fake.phone_number()
	# u'0046960362'

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

::

	fake.simple_profile()
	# {   'address': u'Mandariinikatu 46\n03778 Jakobstad',
	#     'birthdate': '1974-10-22',
	#     'mail': u'virpi39@suomi24.fi',
	#     'name': u'Maija-Liisa Viitala',
	#     'sex': 'M',
	#     'username': u'jenni49'}

	fake.profile(fields=None)
	# {   'address': u'Galiamelonitie 0\n19207 Harjavalta',
	#     'birthdate': '1988-11-10',
	#     'blood_group': 'AB-',
	#     'company': u'Immonen Vitikka Tmi',
	#     'current_location': (Decimal('64.4477735'), Decimal('-48.301948')),
	#     'job': 'Theme park manager',
	#     'mail': u'onerva.luostarinen@suomi24.fi',
	#     'name': u'Liikanen, Anttoni',
	#     'residence': u'Annoonabulevardi 17\n47130 Sein\xe4joki',
	#     'sex': 'M',
	#     'ssn': u'080654-360J',
	#     'username': u'pelkonen.tilda',
	#     'website': [u'http://www.jalava.org/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   6884,
	#     425867.51,
	#     u'eija49@hotmail.com',
	#     u'krantanen@kuusela.com',
	#     2192,
	#     7985,
	#     1906,
	#     3.86952398,
	#     u'http://kinnunen.org/faq.html')

	fake.pystr(max_chars=20)
	# u'Rerum in ex.'

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

	fake.pystruct(count=10, *value_types)
	# (   [   56083.479047,
	#         7608,
	#         Decimal('9124.21'),
	#         u'Occaecati voluptas.',
	#         datetime(1987, 5, 9, 20, 4, 33),
	#         599,
	#         u'http://www.martikainen.com/',
	#         838,
	#         u'Quos ut magnam.',
	#         u'Quisquam optio.'],
	#     {   u'ab': u'http://sillanp.fi/list/main/app/search.php',
	#         u'cum': u'zernamo@kolumbus.fi',
	#         u'et': u'http://www.salminen.fi/post.asp',
	#         u'illo': Decimal('-24311968.6838'),
	#         u'illum': 3570,
	#         u'impedit': u'xpesonen@hirvel.fi',
	#         u'modi': u'http://www.kallio.com/faq.html',
	#         u'molestias': u'kijas@outila.org',
	#         u'placeat': Decimal('-14922684.468'),
	#         u'vero': u'Minus suscipit.'},
	#     {   u'atque': {   1: Decimal('-245449046.0'),
	#                       2: [5415, datetime(1982, 10, 9, 17, 11, 47), 380],
	#                       3: {   1: u'http://mattila.com/search/wp-content/author.php',
	#                              2: 8415,
	#                              3: [u'Distinctio tempore.', u'Fugiat magnam.']}},
	#         u'aut': {   3: u'http://jntti.fi/',
	#                     4: [   u'uusitalo.pietari@surffi.net',
	#                            8597,
	#                            u'Illo ut quisquam.'],
	#                     5: {   3: 8014,
	#                            4: u'Est exercitationem.',
	#                            5: [u'dposo@kolumbus.fi', u'Quibusdam odit.']}},
	#         u'dolorem': {   5: 6345.4,
	#                         6: [   u'http://isokallio.fi/',
	#                                datetime(1990, 8, 31, 4, 9, 22),
	#                                datetime(2009, 12, 19, 14, 24, 32)],
	#                         7: {   5: u'Dignissimos.',
	#                                6: u'http://setl.net/main/tag/terms.htm',
	#                                7: [u'Deleniti molestiae.', -72.981253592]}},
	#         u'dolores': {   2: Decimal('100654298362'),
	#                         3: [   u'sanni.ruutu@inkinen.com',
	#                                -95515818983889.0,
	#                                u'Minima sed.'],
	#                         4: {   2: u'Soluta occaecati.',
	#                                3: u'vjussila@huotari.com',
	#                                4: [4458, 5819]}},
	#         u'eos': {   0: Decimal('-82487943.5'),
	#                     1: [   u'Quo quidem quia.',
	#                            u'eevi.tuomioja@suomi24.fi',
	#                            u'http://parviainen.com/search/explore/index.php'],
	#                     2: {   0: -15305028.17786,
	#                            1: 7793,
	#                            2: [u'Et a quo quis.', 1098]}},
	#         u'quia': {   6: 5652,
	#                      7: [   u'Qui veniam aut.',
	#                             u'Sunt et porro.',
	#                             u'Reiciendis.'],
	#                      8: {   6: u'Sit repellendus.',
	#                             7: u'http://puikkonen.com/',
	#                             8: [u'eeli37@surffi.net', 7483]}},
	#         u'rerum': {   7: u'http://yrjn.org/',
	#                       8: [   u'fjarvinen@nikkola.com',
	#                              u'qriihijarvi@hotmail.com',
	#                              u'Fugiat vel ipsum ut.'],
	#                       9: {   7: u'http://huusko.org/about.php',
	#                              8: u'saisio.arja@eskelinen.com',
	#                              9: [   u'Voluptate in qui.',
	#                                     u'jooseppi54@hotmail.com']}},
	#         u'sint': {   8: Decimal('86673862206.0'),
	#                      9: [   Decimal('-30301.4797808'),
	#                             -321614484.5,
	#                             u'Aperiam et alias.'],
	#                      10: {   8: u'Voluptatem et.',
	#                              9: u'Quos accusamus quia.',
	#                              10: [919, datetime(1993, 3, 11, 0, 21, 33)]}},
	#         u'sit': {   4: u'http://tuuri.org/posts/about/',
	#                     5: [8207, u'http://jalonen.net/', u'janina78@gmail.com'],
	#                     6: {   4: 8584,
	#                            5: u'Dicta est accusamus.',
	#                            6: [   u'Aperiam omnis quo.',
	#                                   datetime(1987, 8, 4, 1, 30, 1)]}},
	#         u'sunt': {   9: u'Vel vero sapiente.',
	#                      10: [   5326,
	#                              u'http://www.jylh.org/home/',
	#                              Decimal('873198650131')],
	#                      11: {   9: Decimal('7703141959.94'),
	#                              10: u'Repellat et.',
	#                              11: [343.980603701, u'Ad rerum aut ut non.']}}})

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   Decimal('-6.83367711793E+13'),
	#     -7954363.99505,
	#     u'In quia debitis.',
	#     datetime(1975, 9, 11, 5, 27, 56),
	#     u'anja.tiihonen@pesonen.com',
	#     4819,
	#     281319484014.77,
	#     u'Error omnis aperiam.',
	#     u'Consequuntur est.',
	#     943387976354331.0]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'ihamaki.aliisa@harju.com',
	#     8.28,
	#     -52122135562293.0,
	#     8454,
	#     3657,
	#     3467,
	#     u'http://lahtinen.fi/terms.html',
	#     u'http://saarela.fi/tags/blog/home.html',
	#     u'Sed quia tempore ab.',
	#     datetime(2007, 7, 24, 23, 22, 46),
	#     u'hely.pelkonen@rannisto.com',
	#     u'Dolorum provident.')

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'Mollitia voluptatem.', u'viljo19@rautavaara.net', 902, u'Ipsa maiores.', 9.0, u'Quis beatae ea qui.', u'Adipisci possimus.', u'Quibusdam sed.', u'Reprehenderit odit.', u'Non voluptas.', -24078592581.0, u'Eligendi tempora.', Decimal('17371.1482'), u'Dolor similique.'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'dicta': Decimal('-5922.0'),
	#     u'eaque': u'Saepe et maxime.',
	#     u'eos': u'Natus laboriosam.',
	#     u'ipsum': u'http://www.jntti.org/register/',
	#     u'nisi': u'Sed quis quia eos.',
	#     u'perspiciatis': 8254,
	#     u'porro': u'Earum qui.',
	#     u'quis': datetime(1986, 8, 2, 21, 24, 40),
	#     u'sed': u'aapeli05@ylikoski.net',
	#     u'similique': u'Amet fuga.',
	#     u'voluptas': u'Et voluptatem et.'}

	fake.pyint()
	# 6978

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

::

	fake.ssn()
	# u'201252-6277'

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

::

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

	fake.firefox()
	# u'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_8_3; rv:1.9.3.20) Gecko/2011-08-15 23:13:29 Firefox/3.6.8'

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

	fake.opera()
	# u'Opera/9.86.(Windows 95; it-IT) Presto/2.9.186 Version/10.00'

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

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

	fake.user_agent()
	# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 4_3 like Mac OS X; it-IT) AppleWebKit/532.8.7 (KHTML, like Gecko) Version/3.0.5 Mobile/8B113 Safari/6532.8.7'

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

	fake.linux_processor()
	# u'i686'

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

	fake.safari()
	# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_0 like Mac OS X; it-IT) AppleWebKit/533.44.7 (KHTML, like Gecko) Version/3.0.5 Mobile/8B113 Safari/6533.44.7'
