
Language ko_KR
===============

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

::

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

	fake.street_name()
	# u'\ub3c4\uc2ac\ud718\ub85c'

	fake.address()
	# u'\ucda9\uccad\ub0a8\ub3c4 \uc0c1\uc758\uad70 \n \ub2e4\ub3c4\uc6c5\uad70 4549 2-4 677-717'

	fake.street_address()
	# u'\uba85\uad00\uac70\ub9ac 8712'

	fake.postcode()
	# u'541-874'

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

	fake.country()
	# u'\ud30c\ub098\ub9c8'

	fake.secondary_address()
	# u'207\ub3d9 700\ud638'

	fake.street_suffix()
	# u'\ub3d9'

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

	fake.city_suffix()
	# u'\ub9c8\uc744'

	fake.building_number()
	# u'1979'

	fake.country_code()
	# u'SL'

	fake.city()
	# u'\ud669\ubcf4\uadfc\ud658\ub9c8\uc744'

	fake.state()
	# u'\ub300\uad6c\uad11\uc5ed\uc2dc'

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

::

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

	fake.ean13()
	# u'4655107062480'

	fake.ean8()
	# u'84881823'

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

::

	fake.rgb_css_color()
	# u'rgb(171,155,117)'

	fake.color_name()
	# u'SeaShell'

	fake.rgb_color_list()
	# (222, 213, 11)

	fake.rgb_color()
	# u'152,226,130'

	fake.safe_hex_color()
	# u'#447700'

	fake.safe_color_name()
	# u'aqua'

	fake.hex_color()
	# u'#a3ef67'

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

::

	fake.company()
	# u'\ub78c\uc2b9\ucca0'

	fake.company_suffix()
	# u'(\uc720)'

	fake.catch_phrase()
	# u'\ud568\uc218 \uae30\ubc18\uc758 \ud655\uc7a5 \uc18c\ud504\ud2b8\uc6e8\uc5b4'

	fake.bs()
	# u'\uac15\ud654\ub41c \ubc18\ud22c\uba85 \uc804\uc790 \ube44\uc988\ub2c8\uc2a4'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'JCB 15 digit\n\ub1cc \uc758\n210086430750120 02/22\nCVC: 832\n'

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

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

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

::

	fake.currency_code()
	# 'LBP'

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

::

	fake.date_time_ad()
	# datetime.datetime(644, 8, 3, 12, 41, 53)

	fake.month()
	# '04'

	fake.am_pm()
	# 'AM'

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

	fake.iso8601()
	# '2008-11-14T20:28:53'

	fake.date_time()
	# datetime(2002, 11, 20, 19, 49, 13)

	fake.month_name()
	# 'April'

	fake.date_time_this_year(before_now=True, after_now=False)
	# datetime(2015, 4, 8, 18, 39, 31)

	fake.unix_time()
	# 1272822538

	fake.day_of_week()
	# 'Friday'

	fake.day_of_month()
	# '11'

	fake.time(pattern="%H:%M:%S")
	# '08:24:56'

	fake.date_time_between(start_date="-30y", end_date="now")
	# datetime(2004, 6, 7, 2, 48, 8)

	fake.date_time_this_month(before_now=True, after_now=False)
	# datetime(2015, 11, 24, 15, 3, 42)

	fake.year()
	# '1982'

	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(2010, 5, 10, 22, 43, 33)

	fake.date_time_this_decade(before_now=True, after_now=False)
	# datetime(2011, 5, 16, 0, 4, 25)

	fake.century()
	# u'XIX'

	fake.date(pattern="%Y-%m-%d")
	# '2010-01-06'

	fake.time_delta()
	# datetime.timedelta(14491, 33502)

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

::

	fake.mime_type(category=None)
	# u'image/svg+xml'

	fake.file_name(category=None, extension=None)
	# u'quia.mp4'

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

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

::

	fake.ipv4()
	# u'89.126.229.197'

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

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

	fake.uri()
	# u'http://www..net/app/main/register.php'

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

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

	fake.tld()
	# u'com'

	fake.free_email()
	# u'61@nate.com'

	fake.slug(*args, **kwargs)
	# u'ut-ad-quam-et'

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

	fake.domain_name()
	# u'.com'

	fake.uri_extension()
	# u'.html'

	fake.ipv6()
	# u'd2f9:4fd8:65ea:3b5e:e66f:fce0:93b0:c81d'

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

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

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

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

	fake.uri_page()
	# u'privacy'

	fake.mac_address()
	# u'd4:ea:d0:7e:c8:bf'

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

::

	fake.job()
	# 'Osteopath'

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

::

	fake.text(max_nb_chars=200)
	# u'In quod dolores delectus commodi vero. Praesentium itaque dolore omnis eos perspiciatis. Amet tenetur hic dolor voluptates sit.'

	fake.sentence(nb_words=6, variable_nb_words=True)
	# u'Est alias eum placeat nobis.'

	fake.word()
	# u'consequatur'

	fake.paragraphs(nb=3)
	# [   u'Repellendus nam eum rerum nulla itaque voluptas. Necessitatibus eius incidunt repudiandae veniam aut et. Accusantium deleniti eos nostrum et illum consectetur dicta. Ullam voluptatem velit aspernatur qui velit.',
	#     u'Ut voluptatem hic voluptatem inventore. Consequuntur inventore dolores vero. Hic soluta cumque consequatur est in omnis quos tempore.',
	#     u'Pariatur tempore ullam explicabo animi atque. Quisquam fugit animi ut rem qui. Explicabo praesentium assumenda et. Tempora quod delectus quis accusantium molestiae.']

	fake.words(nb=3)
	# [u'qui', u'placeat', u'labore']

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True)
	# u'Eveniet maxime id quos explicabo. Ipsum explicabo tempora enim perferendis. Omnis molestiae et eum repudiandae occaecati. Vel et exercitationem veniam sequi odit ipsa quam.'

	fake.sentences(nb=3)
	# [   u'Ipsum quo soluta in perspiciatis esse facilis qui.',
	#     u'Voluptatem quae quod consequatur iusto.',
	#     u'Accusamus sed nulla minima enim aut non.']

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'm$lgbu46LT'

	fake.locale()
	# u'fr_TL'

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

	fake.sha1(raw_output=False)
	# '547d3391fef942f25e51c9a4ca3a03d786d68dfa'

	fake.null_boolean()
	# None

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

	fake.uuid4()
	# '59a6b0a5-5ada-422c-b443-e1e9c3820781'

	fake.language_code()
	# u'pt'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'\uc8fc'

	fake.name_female()
	# u'\uc0ac\uacbd'

	fake.prefix_male()
	# ''

	fake.prefix()
	# ''

	fake.name()
	# u'\uc999\ub3c4'

	fake.suffix_female()
	# ''

	fake.name_male()
	# u'\uc1a1\ub355\uac00'

	fake.first_name()
	# u'\ud64d'

	fake.suffix_male()
	# ''

	fake.suffix()
	# ''

	fake.first_name_male()
	# u'\ubc29'

	fake.first_name_female()
	# u'\uc800'

	fake.last_name_female()
	# u'\ub824'

	fake.last_name()
	# u'\uc0c1'

	fake.prefix_female()
	# ''

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

::

	fake.phone_number()
	# u'064-745-4488'

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

::

	fake.simple_profile()
	# {   'address': u'\ucda9\uccad\ubd81\ub3c4 \ud6a8\ub3c4\uad6c \ud654\ud638\uc548\uad70 8 7-6 (104-568)',
	#     'birthdate': '2015-10-15',
	#     'mail': u'.@live.com',
	#     'name': u'\uc804\ud615\uad00',
	#     'sex': 'M',
	#     'username': u'.'}

	fake.profile(fields=None)
	# {   'address': u'\uacbd\uc0c1\ubd81\ub3c4 \ubd09\ub78c\uc6c5\uc2dc \uad6c\uc6b0\uc138\ub85c 926 (549-475)',
	#     'birthdate': '1994-01-13',
	#     'blood_group': 'B+',
	#     'company': u'\uc8fc\uc2dd\ud68c\uc0ac \uc724\uc21c\uae08',
	#     'current_location': (Decimal('-15.3876565'), Decimal('-165.915070')),
	#     'job': 'Engineer, biomedical',
	#     'mail': u'.@naver.com',
	#     'name': u'\ud6c4\uc6b1',
	#     'residence': u'\ub300\uc804\uad11\uc5ed\uc2dc \uc5fd\ud64d\uc8fc\ub9c8\uc744 \uc790\ub450\uc548\uac70\ub9ac 9 580-2 (480-308)',
	#     'sex': 'F',
	#     'ssn': u'770509-2210612',
	#     'username': u'q',
	#     'website': [u'http://.kr/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'Quos vel quia et.', datetime(1995, 4, 12, 22, 8, 22), u'Ea non assumenda.', u'Voluptate a dolorem.', 79336.94909, u'Vel eum molestias.', u'Recusandae commodi.', datetime(1992, 2, 7, 15, 50, 18), u'Assumenda unde.', 6205, datetime(1992, 11, 8, 13, 27, 45)])

	fake.pystr(max_chars=20)
	# u'Voluptas animi.'

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'Cumque consequuntur.',
	#         9977.653,
	#         Decimal('-92.185931687'),
	#         4966,
	#         0.53361833,
	#         u'http://www..org/author/',
	#         -1107746.0,
	#         datetime(1990, 7, 20, 8, 21, 46),
	#         2740,
	#         datetime(2013, 4, 15, 17, 33, 37)],
	#     {   u'at': datetime(1990, 2, 8, 9, 13, 42),
	#         u'enim': u'.@live.com',
	#         u'et': u'Non quod nisi modi.',
	#         u'maiores': 488,
	#         u'odio': 4336,
	#         u'odit': 1546,
	#         u'sapiente': u'Molestias nostrum.',
	#         u'ut': u'Vel tempora.',
	#         u'velit': 3250},
	#     {   u'consequatur': {   2: 9945,
	#                             3: [   u'Quidem et excepturi.',
	#                                    7282,
	#                                    u'http://.kr/search.jsp'],
	#                             4: {   2: -863539338424.0,
	#                                    3: u'http://.com/blog/search/category/author/',
	#                                    4: [u'Fuga alias sequi.', 6324]}},
	#         u'debitis': {   0: 7047,
	#                         1: [   Decimal('7915505.75'),
	#                                datetime(1977, 1, 11, 23, 24, 49),
	#                                7749],
	#                         2: {   0: u'.@.com',
	#                                1: u'http://.net/',
	#                                2: [   datetime(2001, 10, 29, 1, 27, 6),
	#                                       Decimal('-91.12')]}},
	#         u'et': {   7: datetime(1993, 4, 4, 8, 36, 34),
	#                    8: [   u'Consequatur at vel.',
	#                           9081,
	#                           u'http://.org/faq.html'],
	#                    9: {   7: u'Et labore et qui.',
	#                           8: 4249,
	#                           9: [-19351.369999771, 141]}},
	#         u'in': {   9: Decimal('-2.27312421698E+13'),
	#                    10: [u'Facere consectetur.', 5225, -324193305483277.0],
	#                    11: {   9: u'Deleniti.',
	#                            10: u'Officiis omnis.',
	#                            11: [   Decimal('9.68421264289E+12'),
	#                                    u'f@gmail.com']}},
	#         u'laboriosam': {   3: -190042333275530.0,
	#                            4: [   Decimal('846.7'),
	#                                   Decimal('-8.46334781065E+13'),
	#                                   datetime(1982, 5, 20, 21, 57, 25)],
	#                            5: {   3: datetime(1980, 6, 14, 17, 58, 22),
	#                                   4: u'Quia laudantium.',
	#                                   5: [   u'Consequatur ut.',
	#                                          -42291755061054.6]}},
	#         u'maxime': {   6: u'http://www..net/',
	#                        7: [Decimal('-31.55871'), 9606, u'Qui hic tempore.'],
	#                        8: {   6: 5933,
	#                               7: datetime(2000, 11, 19, 9, 24, 32),
	#                               8: [   Decimal('9274037788.69'),
	#                                      u'Iure quod assumenda.']}},
	#         u'molestiae': {   4: u'Recusandae non.',
	#                           5: [   u'Sequi consequatur.',
	#                                  u'Beatae quae.',
	#                                  22.8887517],
	#                           6: {   4: u'Est quo tenetur.',
	#                                  5: 6579,
	#                                  6: [2926, 8836]}},
	#         u'quod': {   1: u'http://.org/register.html',
	#                      2: [u'.@.net', 8951, Decimal('-8.531386')],
	#                      3: {   1: 7463,
	#                             2: u'.@gmail.com',
	#                             3: [u'Ad laudantium.', -3416641.23726408]}},
	#         u'rerum': {   8: u'http://.com/',
	#                       9: [4868, 2771, u'Quasi enim pariatur.'],
	#                       10: {   8: u'Totam tempora aut.',
	#                               9: Decimal('-708.558859'),
	#                               10: [   Decimal('390903820.195'),
	#                                       u'Cum magni totam.']}}})

	fake.pydecimal(left_digits=None, right_digits=None, positive=False)
	# Decimal('-2.80903558179E+14')

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   1821,
	#     9654,
	#     6975,
	#     u'Eos quaerat ut.',
	#     78776989198940.4,
	#     u'Minus aut aperiam.',
	#     datetime(2006, 4, 8, 13, 53, 24),
	#     u'Dolores qui.']

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   datetime(2010, 3, 1, 0, 12, 53),
	#     u'Vitae qui soluta.',
	#     40989337503103.0,
	#     datetime(1999, 8, 29, 1, 59, 42),
	#     26074.869304877,
	#     8268,
	#     -779.6215,
	#     datetime(2000, 4, 4, 21, 59, 51),
	#     -93061488539.0,
	#     Decimal('-3.84002610738E+14'),
	#     u'Ipsa maxime dolorem.',
	#     u'04@naver.com',
	#     u'.@gmail.com',
	#     u'http://www..net/register.jsp')

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'http://www..com/search/register.php', u'd@hotmail.com', u'Quia dolores.', -482.3, 2576, u'Aut quia occaecati.', -55288187.24, u'http://.com/list/tag/homepage/', Decimal('7.48322739979E+13'), u'http://.com/terms/', u'Vel exercitationem.'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'animi': 1643,
	#     u'autem': u'Quidem aut.',
	#     u'commodi': -8356.828149,
	#     u'dignissimos': u'Ducimus amet et.',
	#     u'in': u'Exercitationem.',
	#     u'iste': -550940541235668.0,
	#     u'minima': datetime(1995, 3, 20, 23, 43, 42),
	#     u'nemo': u'Consequatur ut.',
	#     u'quibusdam': 3822,
	#     u'quos': Decimal('97129660227.0'),
	#     u'similique': 7277,
	#     u'ut': u'Distinctio quia sit.',
	#     u'vitae': u'http://.com/'}

	fake.pyint()
	# 6039

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

::

	fake.ssn()
	# u'590418-2503375'

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

::

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

	fake.firefox()
	# u'Mozilla/5.0 (Windows NT 5.0; it-IT; rv:1.9.1.20) Gecko/2015-06-26 18:47:51 Firefox/3.8'

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

	fake.opera()
	# u'Opera/9.95.(Windows NT 6.2; en-US) Presto/2.9.173 Version/11.00'

	fake.windows_platform_token()
	# u'Windows 95'

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

	fake.user_agent()
	# u'Mozilla/5.0 (Windows NT 4.0; en-US; rv:1.9.2.20) Gecko/2013-10-15 21:15:53 Firefox/3.8'

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

	fake.linux_processor()
	# u'i686'

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

	fake.safari()
	# u'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_7_0 rv:5.0; en-US) AppleWebKit/535.38.7 (KHTML, like Gecko) Version/4.1 Safari/535.38.7'
