
Language he_IL
===============

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

::

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

	fake.street_name()
	# u'\u05e9\u05e8\u05d9\u05d2'

	fake.address()
	# u'\u05e1\u05de \u05de\u05d0\u05dc\u05d4 29, \u05e0\u05d5\u05e8\u05d3\u05d9\u05d4, 6510930'

	fake.street_address()
	# u"\u05d4\u05d0\u05d7\u05d9\u05dd \u05d1\u05d6'\u05e8\u05e0\u05d5 75"

	fake.postcode()
	# u'8070895'

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

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

	fake.country()
	# u'Iran'

	fake.city_name()
	# u'\u05d2\u05d1\u05e2\u05ea \u05db"\u05d7'

	fake.street_suffix()
	# u'Street'

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

	fake.city_suffix()
	# u'Ville'

	fake.building_number()
	# u'59'

	fake.street_title()
	# u'\u05d4\u05de\u05e4\u05e8\u05e9'

	fake.city()
	# u'\u05d0\u05d5\u05e8\u05d8\u05dc'

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

::

	fake.license_plate()
	# u'46Q T40'

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

::

	fake.bban()
	# 'TAAF1214274398260'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB21SFJH1624488190619'

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

::

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

	fake.ean13()
	# u'2327198153904'

	fake.ean8()
	# u'32039207'

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

::

	fake.rgb_css_color()
	# u'rgb(143,161,4)'

	fake.color_name()
	# u'Plum'

	fake.rgb_color()
	# u'210,149,174'

	fake.safe_hex_color()
	# u'#dd6600'

	fake.safe_color_name()
	# u'teal'

	fake.hex_color()
	# u'#55de83'

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

::

	fake.company()
	# u'\u05e4\u05e0\u05d7\u05e1, \u05d0\u05d1\u05d5 \u05e8\u05d0\u05e1 and \u05e8\u05d7\u05de\u05d9\u05dd'

	fake.company_suffix()
	# u'and Sons'

	fake.catch_phrase()
	# u'Quality-focused foreground leverage'

	fake.bs()
	# u'e-enable revolutionary convergence'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'Mastercard\n\u05d0\u05d5\u05e8\u05d9\u05d0\u05df \u05d9\u05e9\u05e8\u05d0\u05dc\u05d9\n5231036001368277 04/24\nCVV: 220\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'TIT'

	fake.currency_code()
	# 'TTD'

	fake.currency_name()
	# 'Gibraltar pound'

	fake.cryptocurrency_name()
	# 'Feathercoin'

	fake.cryptocurrency()
	# ('AMP', 'AMP')

	fake.currency()
	# ('GTQ', 'Guatemalan quetzal')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 8, 30, 19, 36, 53)

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

	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(2007, 2, 2, 12, 52, 53)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2013, 9, 5)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 1, 0, 44, 46)

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

	fake.day_of_week()
	# 'Thursday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2013, 3, 22, 19, 44, 13)

	fake.date_between(start_date="-30y", end_date="today")
	# datetime.date(1996, 9, 23)

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 5, 29, 17, 54, 54)

	fake.date(pattern="%Y-%m-%d", end_datetime=None)
	# '2006-07-11'

	fake.am_pm()
	# 'PM'

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

	fake.date_object(end_datetime=None)
	# datetime.date(1995, 12, 10)

	fake.date_this_year(before_today=True, after_today=False)
	# datetime.date(2018, 4, 28)

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '2014-10-29T08:04:08'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2018, 6, 13)

	fake.month()
	# '12'

	fake.year()
	# '1997'

	fake.day_of_month()
	# '05'

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

	fake.timezone()
	# u'Asia/Baghdad'

	fake.century()
	# u'VI'

	fake.date_of_birth(tzinfo=None, minimum_age=0, maximum_age=115)
	# datetime.date(1961, 9, 17)

	fake.time_object(end_datetime=None)
	# datetime.time(17, 31, 47)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 4, 2, 23, 16, 55)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1992, 6, 10, 22, 21, 37)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '07:51:48'

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 7, 28, 13, 22, 48)

	fake.month_name()
	# 'March'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(1516, 4, 3, 17, 21, 49)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(16069, 37152)

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

::

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

	fake.mime_type(category=None)
	# u'video/x-ms-wmv'

	fake.file_path(depth=1, category=None, extension=None)
	# u'/\u05d4\u05d1\u05e7\u05d9\u05e5/\u05ea\u05e8\u05d1\u05e0\u05da.html'

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

	fake.file_name(category=None, extension=None)
	# u'\u05d5\u05de\u05e8\u05d2\u05e9\u05d7.tiff'

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

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

::

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

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

	fake.tld()
	# u'com'

	fake.email(*args, **kwargs)
	# u'bnymynmykl@yahoo.com'

	fake.url(schemes=None)
	# u'https://www.khlyl.com/'

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

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

	fake.uri_extension()
	# u'.htm'

	fake.uri_page()
	# u'author'

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

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

	fake.ascii_email(*args, **kwargs)
	# 'ulby@dhry-khn.com'

	fake.ipv4_network_class()
	# u'c'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'nvr13@qsm.biz'

	fake.domain_name(*args, **kwargs)
	# u'lybvbyts-vd.com'

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

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

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

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

	fake.company_email(*args, **kwargs)
	# u'blvmly@brvk.com'

	fake.uri()
	# u'https://www.nkhvm.com/'

	fake.ipv6(network=False)
	# 'ade:33ae:a978:64a0:fedd:2cf:f350:2c93'

	fake.free_email(*args, **kwargs)
	# u'tlyh79@gmail.com'

	fake.ascii_safe_email(*args, **kwargs)
	# 'wrkhmym@example.org'

	fake.mac_address()
	# u'4a:df:c7:04:b3:14'

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

::

	fake.isbn10(separator="-")
	# u'0-8400-4897-1'

	fake.isbn13(separator="-")
	# u'978-0-8156-6917-3'

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

::

	fake.job()
	# 'Neurosurgeon'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'\u05d1\u05dc\u05d9\u05e0\u05d3\u05d5 \u05d5\u05de\u05e2\u05d9\u05d5\u05d8 \u05d4\u05e9\u05de\u05d4 \u05ea\u05e8\u05d1\u05e0\u05da \u05de\u05d5\u05e0\u05d7\u05e3 \u05d5\u05dc\u05d7\u05ea \u05ea\u05e8\u05d1\u05e0\u05da. \u05d0\u05d0\u05d5\u05d2\u05d5 \u05dc\u05de\u05e8\u05e7\u05dc \u05e1\u05d9\u05d8 \u05d4\u05e9\u05de\u05d4 \u05d5\u05ea\u05dc\u05d1\u05e8\u05d5. \u05d7\u05e9\u05dc\u05d5 \u05d0\u05dc\u05d9\u05ea \u05db\u05dc\u05e8\u05e9\u05d8.\n\u05dc\u05d9\u05d1\u05dd \u05d4\u05e9\u05de\u05d4 \u05e9\u05e0\u05e8\u05d0 \u05dc\u05de\u05d8\u05db\u05d9\u05df \u05e1\u05d0\u05e4\u05d9\u05d0\u05df. \u05d3\u05d9\u05d0\u05dd \u05de\u05d0 \u05d3\u05d5\u05dc \u05dc\u05de\u05e8\u05e7\u05d5\u05d7.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'\u05dc\u05e4\u05e8\u05d9\u05e7\u05da \u05e9\u05e2\u05e8\u05e9 \u05d5\u05dc\u05ea\u05d9\u05e2\u05dd \u05d0\u05d0\u05d5\u05d2\u05d5 \u05e0\u05d5\u05d1\u05e9 \u05d3\u05d6. \u05d1\u05e8\u05d9\u05e7\u05e0\u05d4 \u05e9\u05dc\u05d5\u05e9\u05e2 \u05d7\u05e9\u05dc\u05d5 \u05d5\u05d5\u05d0\u05dc \u05e1\u05ea\u05e9\u05dd \u05d0\u05d9\u05e3 \u05e9\u05e2\u05d5\u05ea\u05dc\u05e9\u05da. \u05d1\u05e2\u05dc\u05d9\u05e7 \u05e7\u05e8\u05d0\u05e1 \u05e7\u05d5\u05e0\u05d3\u05d9\u05de\u05e0\u05d8\u05d5\u05dd \u05ea\u05e6\u05d8\u05e0\u05e4\u05dc \u05e8\u05d5\u05d2\u05e6\u05d4 \u05d2\u05d3\u05d3\u05d9\u05e9 \u05d0\u05dc\u05d9\u05ea.',
	#     u'\u05ea\u05e8\u05d1\u05e0\u05da \u05d0\u05e4\u05d0\u05d7 \u05d1\u05d5\u05e8\u05e7? \u05d5\u05d7\u05d0\u05d9\u05ea \u05e9\u05d1\u05e6\u05e7. \u05d0\u05d9\u05e3 \u05e1\u05d5\u05dc\u05d2\u05e7 \u05dc\u05ea\u05d9\u05d2 \u05d1\u05e2\u05dc\u05d9\u05e7 \u05d4\u05d5\u05e2\u05e0\u05d9\u05d1.',
	#     u'\u05e6\u05d5\u05d8 \u05de\u05d5\u05e0\u05e4\u05e8\u05e8 \u05ea\u05d5\u05e7 \u05d0\u05d9\u05e3 \u05de\u05e8\u05d2\u05e9\u05d9 \u05e1\u05db\u05e2\u05d9\u05d8 \u05de\u05d5\u05e0\u05e4\u05e8\u05d3 \u05e0\u05d9\u05e6\u05d0\u05d7\u05d5. \u05d0\u05d9\u05d0\u05e7\u05d5\u05dc\u05d9\u05e1 \u05e1\u05ea \u05dc\u05d5\u05e8\u05dd \u05e0\u05d5\u05e0\u05e1\u05d8\u05d9 \u05d5\u05d5\u05dc\u05d5\u05e4\u05d8\u05d4 \u05dc\u05d9\u05e5 \u05d4\u05d5\u05e2\u05e0\u05d9\u05d1. \u05d1\u05e2\u05e8\u05d9\u05e8 \u05e1\u05d9\u05dc\u05e7\u05d5\u05e3 \u05d0\u05e7\u05d5\u05d5\u05d6\u05de\u05df \u05dc\u05d5\u05e8\u05dd \u05de\u05e0\u05d5\u05e8\u05da \u05dc\u05de\u05d8\u05db\u05d9\u05df.']

	fake.words(nb=3, ext_word_list=None)
	# [   u'\u05e7\u05dc\u05d5\u05d1\u05e8',
	#     u'\u05e0\u05d5\u05dc\u05d5\u05dd',
	#     u'\u05dc\u05d9\u05d1\u05dd']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'\u05de\u05d2\u05de\u05e9 \u05db\u05d0\u05e0\u05d4 \u05e0\u05d9\u05e1\u05d9 \u05d4\u05d5\u05e2\u05e0\u05d9\u05d1 \u05e9\u05e2\u05e8\u05e9 \u05e0\u05d9\u05e6\u05d0\u05d7\u05d5 \u05dc\u05de\u05e8\u05e7\u05d5\u05d7.',
	#     u'\u05d5\u05e1\u05ea\u05e2\u05d3 \u05d0\u05d9\u05d1\u05df \u05d0\u05d9\u05e3 \u05d2\u05d5\u05dc\u05e8 \u05e1\u05ea\u05e9\u05dd.',
	#     u'\u05dc\u05db\u05e0\u05d5\u05e5 \u05d1\u05e2\u05dc\u05d9\u05e7 \u05d0\u05e1 \u05d1\u05d5\u05e8\u05e7? \u05e0\u05d9\u05d1\u05d0\u05d4.']

	fake.word(ext_word_list=None)
	# u'\u05d9\u05e9\u05d1\u05e2\u05e1'

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'\u05d1\u05dc\u05d9\u05e0\u05da \u05de\u05e0\u05e7 \u05dc\u05de\u05e8\u05e7\u05d5\u05d7 \u05e7\u05d5\u05d5\u05d9\u05e1 \u05d3\u05d5\u05dc\u05d5\u05e8 \u05e9\u05e2\u05e8\u05e9 \u05e6\u05d5\u05e8\u05e7 \u05e0\u05de\u05e8\u05d2\u05d9. \u05d2\u05d3\u05d3\u05d9\u05e9 \u05ea\u05e6\u05d8\u05e0\u05e4\u05dc \u05d4\u05db\u05d9\u05d9\u05e8 \u05e9\u05de\u05d7\u05d5\u05d9\u05d8 \u05d0\u05d8 \u05dc\u05ea\u05d9\u05d2. \u05de\u05d9\u05d7\u05d5\u05e6\u05d9\u05dd \u05e6\u05d5\u05d8 \u05d3\u05d6 \u05dc\u05d9\u05e5 \u05d3\u05d6 \u05d2\u05d3\u05d3\u05d9\u05e9.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'\u05db\u05d0\u05e0\u05d4 \u05db\u05dc\u05e8\u05e9\u05d8 \u05dc\u05db\u05e0\u05d5 \u05d0\u05d9\u05d0\u05e7\u05d5\u05dc\u05d9\u05e1 \u05e7\u05d5\u05e0\u05d3\u05d9\u05de\u05e0\u05d8\u05d5\u05dd \u05de\u05e0\u05e7 \u05e7\u05d5\u05e0\u05e1\u05e7\u05d8\u05d5\u05e8\u05e8.'

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

::

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

	fake.locale()
	# u'ne_NP'

	fake.binary(length=1048576)
	# bytearray(b'\x11\x16\xe8/\xc7<\xf1\x89\x88 &\x12\n\xdf\x06P\xe3\xe0\xb7P5\xe6(\x0c\x17O\x118\xa3\x0b\x1cCZ:4\xc0\x0f\xe0\x80~\x8cNd\x04\xd540nX\x02\xce\xe2\xe0\xdd\x9c\xa4yf\x1a\xb2\x9c\xb1y\x88\x059K\xd9\xd6\xa7/\x96I\xe5\xfe\xf5\'\x04\xe8G\x83\xe8\xb3\xb1\xda\xba\x86.\xc7`+\x91\xc7T9\xf1n\x19t\xc6\xb0\x96\x98\x17\rN\x93g\xdc\xaa\xbd\xcf\x8d\xa1Q\x88]{P\xc8X\xa5VT\xa3\x8c\xb5\xd9\x0eH\xbb\x06b! \xec\xf1 A\xad\xe6\xae.\xb4~\x86@Md\x1d\x8c\xf5a\xa8\n\n\xc7.N\xd6\xdb\x18yM?I\x90A\xe2 g\n\xeb\xd1\xd0\x13\xd8p\xe9\xa9\xc2\xfc\x0f\xf0\x0f\xc2\x88\xda8\x9dQ-\x08\x89\xe6$\x127l\x16\x01Y$\x0f\xf7\x80\xdc\x86\x16s\xc1N\x84M\x16\x86d-\xdfm\xc8\xad\xa9\xbf\x1aKkBE8\x9a`\xdf\x90\xe7\xc3He\x95\xf3\x9c\xd7`\xd8\x02\x84\x97X|\xe3\xfb\xf2\xa3\xd0\xcap\x1dY\xd4^\x96\xdd\x95h@\x17\xfe\xd4\x06\xe2ou\xa6jgms\n\x0c\xe4\x90H\xa7\xd2\x83\x9a6\xe1\xa5\xe0\xf7\xc7x\x05\xe4cO\x02m`h?\x9c\xee&^\x82\x8a\x81\x1b\x1f}\x8cM\xa1\xf4\x1fR\xc6q\rcC\xc5\x82k\x1d;\xef\xd2\xbe6p6\xfb\xd4\xd0\xf3 \xcd\x9e\xe0V\xf7w(\xe3U\xb8\xd6e\x186V\xe4\x95\x95\xc14\x8e\x85\x7fo\x9d\xb3\x97\x14Oa\xa6\x14\xc2\\4\xee\xf8\x99\xfc>L\xaf\xc2\xe4\xa5\xbdQ2Aw)L\xeefg\x08G\xc0\xbd\xa2i"\x87H\xdd\xc9\xf7\x1cI\x0e\xe1\xe5):\xba\xb4\x90U0\xe6\xc7"O6}\xc0,n\x7f\xb2\xab6\xca\x95e\xa6l0\x87\xa3\x82\x10\x99E[\x8d^,x\x9f\\\xbe\x07\x18\xe2T\x8f\xef<$Ti\xad\xa4\xb3&=\xa9\x8f\xb9\xddDZ\x9c\xfcLa\x83\xe3\xfd\xb6\x99/}\xd4-\xec\xd8=\xcb6\x124\x14\xb6a\x13\x8b\xa2\xe2F\xf2\xf5\xc0\xa9\xad\xceB\xaf\xc5Ir\x08\xd1J&\x00w.\x16j\xc9S;\xaa\x8f\xbd\xb78W\x1f\xaf\xf4\x14q\xf5\xc0xR\xcc1\xf0\x15\xe3\xaef\x98\xa3%\xd2\x8bl\x16<\xf5]\x06\xc4g\xb6\xe3Y\xb8f\xc0\xf0.\xe5\x99n\x1a\xc0\x10.\xed\xcc\x9a\x1c(\x04n\xdf\xd3d8\xba\xc5\xd1C\x07\xae\x10\xa3\xc7\xc4\xa2\x03\xdeV\xb1\x84q\t\xf4\xfd\xd8iZ\x00\xf7Iz`\x98\xd9a\x9e\xf2\x07\x9e\xbd\xf0-\x8bw\xb7\x01\x08(\xcfI\x9f\x05}\xca\xbcX\x118\r\xd4H\xd8\x13\x99\\\xbd\x9f`\xc1\xbc\x19\x0e\xc1^\x9d\x0eje{\xb25\x0b\xab\xb2\x05\x136\xec\xfc\x1df\xc06\xf8#\xae\xc7i\xdd\x17\x1aH8V\xf3Y\x1f\x87\\\xdev1\xd5W\xa07\x14Qu\xc9\x86hW\xfcI\x07\xdc\xcaG\xb1 \xee\x91t\xa0{\x93\xa4U/CB\x16\t\xd71\xa9\xe5\xc4\xda/\xf1\x18\x81\xddb]w\xc4\x92\x82\xd7\x9b(Y\xa2C\xd9W\xce_\xbe\xf4,\xab\x10\x13\xba\xf3PW\xd0\xe1\xc6\xc6\xf0\xf3\x10\x87\x03aFX s\x0b\xb9]F?\n"\x15\xef\x88\x1fG\xa1\x14\x93\xf1q\x87>\x90\x97\xea\x8cx\x8cT\xf4\xddm\xcaQ\rP\xec\x8a\x9a-\x11$H\xe6\xf3\xb1\x94\x1d\xb6\x93\xb02\x9a =C\x9dgl!Bh\xad[\xfc\x03\xc4\x82\xffG\x875\xad\xa6\xda\xe8d\x1a\xbe=\xd4\xa9W\x8dH\xb6+D\xefq\xfd\xeaQ\x0fU\x16\x8e]\xfe\x9b\xd4\xa0\xf5&\x1eI\xd5\xe48{\xffY/\xdc\xe8$\xc71E\x8d\x8f\xda\xe9\r\xb1\xc1\xb9\xb9\xfa\x1e\x06V\xa1\xf1\xcbt_<\xf4D\xe7\xb2KJS\xa8\xecj\xbbb\xd48\xed\x897Q\xc33\xc1mt\x8e5\x04\xce]\xe0\xc8\x83\xe4GD\xd4\xe5A\xb0\x9b\xac\x90\xc5\x18-\xf7\xa4\xd9\xec\x9bc\xa0\x8dY\x7f\xb6\x88\x16\'\xdeCUj\xba\xd7\xdf\x1a\xa1\x1e\xaf\x84\x9e\xf1P.\xa3\xa5\xe7(x\xb3\x08v#t[\xc1X\xcb\xccv.\xe4S\xfa\x90W\xe0\x8f~\xddtF\xc9\xf2\xb8\xd9\x9cB\xbb\xf4\xf5\x86\x1e`')

	fake.md5(raw_output=False)
	# '94bbd3097c40b233cb9f06a12cf0344b'

	fake.sha1(raw_output=False)
	# '7dc3ebe600ef2b3308e8b7fc3fdc80d81750fe2f'

	fake.null_boolean()
	# True

	fake.sha256(raw_output=False)
	# '5d2a5d01edf0f3b85d9aa62728ad7bddecaff0d019c488a5ff3fd75b4df76902'

	fake.uuid4()
	# 'ed44a3d0-108e-7ba4-fcdd-aa8374914fe2'

	fake.language_code()
	# u'iw'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'\u05d3\u05d5\u05d3'

	fake.name_female()
	# u'\u05e1\u05dc\u05de\u05d0 \u05e1\u05dc\u05e2'

	fake.prefix_male()
	# u''

	fake.prefix()
	# u''

	fake.name()
	# u'\u05d6\u05d9\u05d5 \u05db\u05d4\u05df'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'\u05d0\u05d5\u05e8\u05d9\u05d4 \u05d6\u05d5\u05e2\u05d1\u05d9'

	fake.first_name()
	# u'\u05d9\u05d4\u05dc\u05d9'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'\u05d0\u05d1\u05d9\u05e2\u05d3'

	fake.first_name_female()
	# u'\u05d9\u05d4\u05d5\u05d3\u05d9\u05ea'

	fake.last_name_female()
	# u'\u05dc\u05e8\u05e0\u05e8'

	fake.last_name()
	# u'\u05e2\u05d9\u05e1\u05d0'

	fake.prefix_female()
	# u''

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

::

	fake.phone_number()
	# u'046808668'

	fake.msisdn()
	# '0645602176380'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'\u05d0\u05d9\u05de\u05d1\u05e8 97, \u05d1\u05d0\u05e8 \u05de\u05d9\u05dc\u05db\u05d4, 6352863',
	#     'birthdate': datetime.date(1994, 11, 12),
	#     'mail': u'prtsmtnyh@hotmail.com',
	#     'name': u'\u05d9\u05d4\u05d5\u05d3\u05d9\u05ea \u05d0\u05d2\u05d1\u05d0\u05e8\u05d9\u05d4',
	#     'sex': 'F',
	#     'username': u'gyddvn'}

	fake.profile(fields=None, sex=None)
	# {   'address': u"\u05d0\u05dc-\u05d8'\u05d4\u05e8\u05d4 \u05e1\u05de7 68, \u05d0\u05d5\u05d3\u05dd, 2313475",
	#     'birthdate': datetime.date(1984, 10, 2),
	#     'blood_group': 'A+',
	#     'company': u'\u05e2\u05de\u05e8, \u05e4\u05dc\u05d2 and \u05e8\u05d5\u05d8\u05e0\u05d1\u05e8\u05d2',
	#     'current_location': (Decimal('29.6036015'), Decimal('-36.044598')),
	#     'job': 'Ship broker',
	#     'mail': u'myyn32@hotmail.com',
	#     'name': u'\u05e8\u05d5\u05e0\u05d9 \u05d3\u05e0\u05d9\u05d0\u05dc',
	#     'residence': u'\u05e1\u05de \u05e2\u05d9\u05df \u05d2\u05e0\u05d9\u05dd 63, \u05d9\u05d3 \u05e8\u05de\u05d1"\u05dd, 9739286',
	#     'sex': 'F',
	#     'ssn': '133462739',
	#     'username': u'mnsvrmvkhmd',
	#     'website': [u'https://tsrpty.info/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   datetime.datetime(2012, 8, 30, 13, 48, 22),
	#     u'oHTkIHFXwdsLUCGmwknE',
	#     u'BELUySVqZkjjMJRKhQEF',
	#     5867304.0,
	#     -6600351.56,
	#     -331208304073.35,
	#     4479)

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

	fake.pystruct(count=10, *value_types)
	# (   [   datetime.datetime(1979, 7, 14, 6, 27, 49),
	#         datetime.datetime(1999, 8, 26, 18, 53, 1),
	#         3264,
	#         Decimal('421430212.152'),
	#         datetime.datetime(1982, 10, 17, 13, 57, 30),
	#         Decimal('3252267363.38'),
	#         u'kWCVtTuSftSLNhDZWTiK',
	#         u'umyKbmGSLjjYPfOAsOxF',
	#         Decimal('1413402770.0'),
	#         u'https://pry.com/post/'],
	#     {   u'\u05d0\u05d2\u05ea': u'http://yprkh.com/wp-content/wp-content/categories/privacy.php',
	#         u'\u05d3\u05dc\u05d0\u05de\u05ea': u'zstRYRpnVdmVGQcpSjld',
	#         u'\u05d5\u05dc\u05ea\u05d9\u05e2\u05dd': u'MfOgehLeBhRrtecxxoks',
	#         u'\u05d5\u05de\u05e8\u05d2\u05e9\u05d7': datetime.datetime(2005, 12, 2, 6, 32, 36),
	#         u'\u05d6\u05d5\u05ea\u05d4': u'http://www.mr.org/home/',
	#         u'\u05e0\u05d5\u05dc\u05d5\u05dd': Decimal('-4.06898167465E+13'),
	#         u'\u05e1\u05d9\u05d8': u'RyrnoZnJBtSpEuurzDZE',
	#         u'\u05e7\u05dc\u05d0\u05e6\u05d9': -7.4651568429,
	#         u'\u05e7\u05dc\u05d5\u05d1\u05e8': u'http://www.zvhr.org/wp-content/tag/privacy.html',
	#         u'\u05ea\u05e6\u05d8\u05e0\u05e4\u05dc': u'sqabdkqTMeLFRiyIVYHF'},
	#     {   u'\u05d0\u05d0\u05d5\u05d2\u05d5': {   6: u'xRneFBHdqVhjmvxHWCUh',
	#                                                7: [   u'tlyn35@hotmail.com',
	#                                                       u'ylykhn@gmail.com',
	#                                                       4622],
	#                                                8: {   6: 5741.243203,
	#                                                       7: datetime.datetime(1986, 7, 30, 23, 15, 41),
	#                                                       8: [   u'ldKQfvdYZMKqGLVwWAtm',
	#                                                              269]}},
	#         u'\u05d0\u05d9\u05e3': {   5: u'uUjydqeGSwxXyeDzHJSK',
	#                                    6: [   u'gXiMahljKdFXbreJBJbR',
	#                                           u'XyRyhUBXkwijbngHICLg',
	#                                           datetime.datetime(1978, 6, 7, 11, 9, 52)],
	#                                    7: {   5: u'http://tsdvq.com/privacy/',
	#                                           6: u'vUhJRMlJlIYllRUXaEYE',
	#                                           7: [   u'pOStApHmOSyjqZbvCpEI',
	#                                                  3930]}},
	#         u'\u05d1\u05e8\u05e9\u05d2': {   3: -18295425733.0,
	#                                          4: [   6228,
	#                                                 Decimal('-3.06573096295E+13'),
	#                                                 u'sgkUKhkIDRFQqXRJLvhs'],
	#                                          5: {   3: u'klevPUgkbVRAnxAghkKY',
	#                                                 4: -1.62859889,
	#                                                 5: [   u'PBnZOIQwEhfOHQLVHgXT',
	#                                                        6169257152.0]}},
	#         u'\u05d5\u05de\u05e2\u05d9\u05d5\u05d8': {   9: u'http://gvldmn.com/login.html',
	#                                                      10: [   u'AURbxAMLEpoIrTbOeRLr',
	#                                                              u'http://gvldbrg.info/',
	#                                                              u'cuYCfngrIbivcIGCSWjk'],
	#                                                      11: {   9: u'IOaiAzmhudoXirPubdbB',
	#                                                              10: Decimal('-6.45340798136E+14'),
	#                                                              11: [   u'QNIzuRDNmjuiRlChCXaw',
	#                                                                      u'qGLFHyFAxSTMjfokxAPJ']}},
	#         u'\u05d9\u05d4\u05d5\u05dc': {   2: u'GbplWNyDBJiBgCzKlpxK',
	#                                          3: [   8498,
	#                                                 u'IeofSCVHLeKihtagHQBx',
	#                                                 -73.14],
	#                                          4: {   2: u'http://www.zbrgh.biz/',
	#                                                 3: u'OaCUNjAindYlAsDMUGyh',
	#                                                 4: [   Decimal('419218507.435'),
	#                                                        u'krueIBzoyIOHYGbuqbuX']}},
	#         u'\u05de\u05e8\u05d2\u05e9\u05d9': {   7: u'TVoAtPTmgvubMuLsqmHl',
	#                                                8: [   8199509788.4,
	#                                                       5769,
	#                                                       u'tfpBhnpdDRDqsKXKuBZF'],
	#                                                9: {   7: u'ANksJkgVawRENAJIlCRQ',
	#                                                       8: u'wspyr@gmail.com',
	#                                                       9: [   8885,
	#                                                              u'FqPkzdhcFEikooVehuWt']}},
	#         u'\u05e0\u05d5\u05d1\u05e9': {   4: u'QBhFNzuPIFZxYuYXDTdl',
	#                                          5: [   Decimal('-1977725.6'),
	#                                                 u'tCROQisWwBNBhoAlbzoM',
	#                                                 u'https://shqd-gvln.com/register.php'],
	#                                          6: {   4: u'https://www.lvy.com/categories/author.htm',
	#                                                 5: datetime.datetime(2016, 12, 30, 12, 7, 49),
	#                                                 6: [   u'dmkwNsAMMugUYJxgupVg',
	#                                                        u'lyhkts@yahoo.com']}},
	#         u'\u05e1\u05d9\u05dc\u05e7\u05d5\u05e3': {   1: u'https://www.mmn-lvyn.biz/list/tag/main/',
	#                                                      2: [   259,
	#                                                             Decimal('9668985.13481'),
	#                                                             8741],
	#                                                      3: {   1: 8974,
	#                                                             2: u'https://sl-hll.org/login.html',
	#                                                             3: [   3699,
	#                                                                    u'bkhn@gvln.com']}},
	#         u'\u05e1\u05db\u05e2\u05d9\u05d8': {   0: u'fiSBxwvunKIhTymDQgvC',
	#                                                1: [   u'AOtZluEOXsqeIwmIBvEp',
	#                                                       756113962606.133,
	#                                                       u'nvrshvvrts@prts-brvk.com'],
	#                                                2: {   0: 5610,
	#                                                       1: u'pbhwajnIrgVazvpADXoA',
	#                                                       2: [9183, 8012]}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   3281,
	#     u'fIQpDeNDqZBubthGyEzU',
	#     5399,
	#     5854,
	#     u'CVwpxrOsSRVjoHmYVpQU',
	#     u'bOZUusQASbnOUvwpdvLQ',
	#     9938,
	#     u'FhycHczwLWDtiFNQFCyS',
	#     2182,
	#     2076,
	#     413.64,
	#     Decimal('206314.569228')]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'ytn07@khn.com',
	#     665561569.3,
	#     u'http://www.qsm.net/homepage/',
	#     6852,
	#     Decimal('6512.3580977'),
	#     u'gfwERoYnoojYByAtkreb',
	#     8080,
	#     u'rQOujPDBmGddbsFcdtKb')

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'hIMMZLfeHqvvpGieLGBU', 9508, 111783.13, u'http://www.hrvn.com/posts/register.htm', Decimal('-1.67786558548E+13'), u'cFdrQYlsJPjVjaLwWyIF', u'oxuqlhCqaLQAdZGfhYdW', datetime.datetime(1999, 3, 2, 18, 5, 49), u'wogmrxYRodDyrqzDuURO', Decimal('-3617390.26253')])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'\u05d0\u05d9\u05e4\u05e1\u05d5\u05dd': u'uNmBOGwpClHOEnMrnOyD',
	#     u'\u05de\u05d5\u05e1\u05df': u'FgqDgFvADWXEruOfhoqD',
	#     u'\u05de\u05e0\u05d5\u05e8\u05da': u'CYeLqBsuarJRYczFeFYm',
	#     u'\u05de\u05e0\u05ea': u'SHPtWfIovsldfdoKAmeB',
	#     u'\u05e0\u05d5\u05d1\u05e9': datetime.datetime(1979, 8, 20, 5, 28, 21),
	#     u'\u05e0\u05d5\u05df': u'trtPcLxwxHNZiooXgVin',
	#     u'\u05e0\u05e9\u05d5\u05d0\u05d9': datetime.datetime(1977, 12, 17, 16, 45, 7),
	#     u'\u05ea\u05e6\u05d8\u05e8\u05d9\u05e7': u'noQwiAfEviyxuIKPRymz'}

	fake.pyint()
	# 9266

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

::

	fake.ssn()
	# '698743531'

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

::

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

	fake.firefox()
	# u'Mozilla/5.0 (Windows NT 5.1; vi-VN; rv:1.9.0.20) Gecko/2014-01-27 00:07:16 Firefox/3.8'

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

	fake.opera()
	# u'Opera/8.79.(Windows CE; om-KE) Presto/2.9.188 Version/10.00'

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

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

	fake.user_agent()
	# u'Mozilla/5.0 (Windows NT 6.2) AppleWebKit/5330 (KHTML, like Gecko) Chrome/61.0.850.0 Safari/5330'

	fake.linux_processor()
	# u'i686'

	fake.chrome(version_from=13, version_to=63, build_from=800, build_to=899)
	# u'Mozilla/5.0 (X11; Linux i686) AppleWebKit/5351 (KHTML, like Gecko) Chrome/39.0.810.0 Safari/5351'

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

	fake.safari()
	# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_2 like Mac OS X; ro-RO) AppleWebKit/531.22.4 (KHTML, like Gecko) Version/4.0.5 Mobile/8B112 Safari/6531.22.4'
