
Language el_GR
===============

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

::

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

	fake.region()
	# u'\u0388\u03b2\u03c1\u03bf\u03c2'

	fake.address()
	# u'\u03a0\u03b1\u03c1\u03b1\u03bc\u03ad\u03c1\u03bf\u03c5 4,\n\u03a4\u039a 96152 \u0393\u03c1\u03b5\u03b2\u03b5\u03bd\u03ac'

	fake.street_address()
	# u'\u03a0\u03bb\u03b1\u03c4\u03b1\u03bd\u03cc\u03b2\u03c1\u03c5\u03c3\u03b7\u03c2 9'

	fake.postcode()
	# u'57664'

	fake.street_name()
	# u'\u039b\u03b5\u03c0\u03c4\u03b9\u03bd\u03af\u03bf\u03c5'

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

	fake.country()
	# u'\u039c\u03bf\u03b6\u03b1\u03bc\u03b2\u03af\u03ba\u03b7'

	fake.street_prefix()
	# u'\u03a0\u03ac\u03c1\u03bf\u03b4\u03bf\u03c2'

	fake.street_suffix()
	# u'Street'

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

	fake.street()
	# u'\u039a\u03b1\u03bd\u03b1\u03bb\u03af\u03c9\u03bd'

	fake.city_suffix()
	# u'Ville'

	fake.building_number()
	# u'87-46'

	fake.country_code()
	# u'AR'

	fake.line_address()
	# u'\u039a\u03bf\u03c1\u03b1\u03ba\u03b9\u03ac\u03bd\u03b1\u03c2 9, \u03a4\u039a 189 48 \u039b\u03b9\u03b2\u03b1\u03b4\u03b9\u03ac'

	fake.latlng()
	# (38.13023, 22.596804)

	fake.city()
	# u'\u039a\u03b1\u03c1\u03b4\u03af\u03c4\u03c3\u03b1'

	fake.street_prefix_long()
	# u'\u03a0\u03bb\u03b1\u03c4\u03b5\u03af\u03b1'

	fake.street_prefix_short()
	# u'\u03a0\u03bb.'

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

::

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

	fake.ean13()
	# u'1426682506996'

	fake.ean8()
	# u'05896554'

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

::

	fake.rgb_css_color()
	# u'rgb(58,178,187)'

	fake.color_name()
	# u'RoyalBlue'

	fake.rgb_color_list()
	# (19, 82, 78)

	fake.rgb_color()
	# u'200,74,13'

	fake.safe_hex_color()
	# u'#ee8800'

	fake.safe_color_name()
	# u'teal'

	fake.hex_color()
	# u'#de5abf'

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

::

	fake.company()
	# u'\u03a3\u03b5\u03b2\u03b1\u03c3\u03c4\u03bf\u03cd, \u03a0\u03b1\u03c5\u03bb\u03ae and \u0392\u03b1\u03bd\u03b4\u03ce\u03c1\u03bf\u03c2'

	fake.company_suffix()
	# u'Group'

	fake.catch_phrase()
	# u'Total bottom-line adapter'

	fake.bs()
	# u'implement robust methodologies'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'JCB 15 digit\n\u0393\u03bb\u03c5\u03ba\u03b5\u03c1\u03af\u03b1 \u03a3\u03cd\u03ba\u03b1\u03c2\n210063552661328 01/19\nCVC: 414\n'

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

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

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

::

	fake.currency_code()
	# 'MGA'

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

::

	fake.date_time_ad()
	# datetime.datetime(299, 3, 25, 14, 41, 39)

	fake.month()
	# '05'

	fake.am_pm()
	# 'PM'

	fake.timezone()
	# u'Australia/Brisbane'

	fake.iso8601()
	# '1976-07-19T23:26:19'

	fake.date_time()
	# datetime(2003, 5, 7, 0, 14, 14)

	fake.month_name()
	# 'January'

	fake.date_time_this_year(before_now=True, after_now=False)
	# datetime(2015, 4, 23, 21, 44, 37)

	fake.unix_time()
	# 272078684

	fake.day_of_week()
	# 'Wednesday'

	fake.day_of_month()
	# '24'

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

	fake.date_time_between(start_date="-30y", end_date="now")
	# datetime(1989, 7, 11, 21, 33, 20)

	fake.date_time_this_month(before_now=True, after_now=False)
	# datetime(2015, 11, 3, 13, 27, 41)

	fake.year()
	# '1981'

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

	fake.date_time_this_century(before_now=True, after_now=False)
	# datetime(2015, 8, 29, 10, 39, 16)

	fake.date_time_this_decade(before_now=True, after_now=False)
	# datetime(2011, 6, 3, 17, 55, 52)

	fake.century()
	# u'XX'

	fake.date(pattern="%Y-%m-%d")
	# '1983-03-27'

	fake.time_delta()
	# datetime.timedelta(8337, 73321)

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

::

	fake.mime_type(category=None)
	# u'multipart/alternative'

	fake.file_name(category=None, extension=None)
	# u'qui.csv'

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

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

::

	fake.ipv4()
	# u'33.7.183.171'

	fake.url()
	# u'http://tziova.gr/'

	fake.company_email()
	# u'fdoulgeraki@grigoriou-mamala.gr'

	fake.uri()
	# u'http://www.giannes-giannelos.org/faq/'

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

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

	fake.tld()
	# u'com'

	fake.free_email()
	# u'patroklos33@googlemail.gr'

	fake.slug(*args, **kwargs)
	# u'dolor-quis-velit'

	fake.free_email_domain()
	# u'hol.gr'

	fake.domain_name()
	# u'drakaki-kritselis.net'

	fake.uri_extension()
	# u'.jsp'

	fake.ipv6()
	# u'e820:96c1:60a0:f4b7:bfb9:075b:aeb5:24c9'

	fake.safe_email()
	# u'christodoulou.eufrosyni@example.org'

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

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

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

	fake.uri_page()
	# u'search'

	fake.mac_address()
	# u'1e:0b:a7:2e:de:5b'

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

::

	fake.job()
	# 'Information officer'

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

::

	fake.text(max_nb_chars=200)
	# u'\u0388\u03c7\u03c9 \u03c0\u03bb\u03ad\u03bf\u03bd \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03bf\u03cd\u03bd \u03ac\u03c1\u03b1 \u03bf\u03b9 \u03c0\u03b5\u03c4\u03bf\u03cd\u03bd. \u03a0\u03b7\u03b3\u03b1\u03af\u03bf\u03c5 \u03c4\u03b1 \u03c0\u03b5\u03c1\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5\u03bd \u03b1\u03c0\u03cc \u03c0\u03b1\u03af\u03c1\u03bd\u03bf\u03c5\u03bd \u03b5\u03b9\u03ba\u03cc\u03bd\u03b5\u03c2 \u03ad\u03c3\u03c4\u03b5\u03bb\u03bd\u03b5. \u03a0\u03b1\u03c1\u03ac\u03b4\u03b5\u03b9\u03b3\u03bc\u03b1 \u03c4\u03b7\u03bd \u03c3\u03c4\u03b1 \u03c0\u03bf\u03c5 \u03af\u03b4\u03b9\u03bf \u03b1\u03bd\u03ac \u03bc\u03ad\u03c7\u03c1\u03b9 \u03c3\u03b7\u03bc\u03b5\u03af\u03b1. \u0398\u03b1 \u03c4\u03b1 \u03b4\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae\u03c2 \u03c7\u03ce\u03c1\u03bf\u03c5 \u03bd\u03b1 \u03c0\u03b9\u03bf \u03ad\u03bb\u03b5\u03b3\u03c7\u03bf\u03c2 \u03c0\u03b5\u03c1\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5\u03bd \u03c3\u03c5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2.'

	fake.sentence(nb_words=6, variable_nb_words=True)
	# u'\u03a4\u03b9\u03c2 \u03ba\u03b1\u03bd\u03cc\u03bd\u03b1 \u03b1\u03bd\u03b1\u03c6\u03ad\u03c1\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c3\u03b7\u03bc\u03b1\u03bd\u03c4\u03b9\u03ba\u03cc \u03ba\u03ac\u03bd\u03b5 \u03bc\u03b5 \u03bc\u03b9\u03b1 \u03b1\u03c0\u03af\u03c3\u03c4\u03b5\u03c5\u03c4\u03b1.'

	fake.word()
	# u'\u03c0\u03c1\u03bf\u03c3\u03bf\u03c7\u03ae'

	fake.paragraphs(nb=3)
	# [   u'\u038c\u03c7\u03b9 \u03c4\u03bf \u03c3\u03c4\u03b1\u03bc\u03b1\u03c4\u03ac\u03c2 \u03c3\u03c0\u03af\u03c4\u03b9 \u03c4\u03bf\u03bd. \u039c\u03b9\u03b1 \u03b4\u03c9\u03c1\u03bf\u03b4\u03bf\u03ba\u03b7\u03b8\u03bf\u03cd\u03bd \u03c0\u03bf\u03bb\u03cd \u03bc\u03ad\u03c7\u03c1\u03b9 \u03c0\u03bf\u03bb\u03cd. \u038c\u03c7\u03b9 \u03c4\u03b7 \u03c3\u03b5 \u03b3\u03b9\u03b1 \u03b1\u03bd \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae\u03c2. \u03a3\u03c0\u03af\u03c4\u03b9 \u03b3\u03ad\u03bb\u03b1\u03c3\u03b1\u03bd \u03c4\u03c1\u03cc\u03c0\u03bf \u03c3\u03c4\u03b1. \u03a3\u03b5 \u03c4\u03cd\u03c0\u03bf\u03c5 \u03ba\u03b1\u03bd\u03b5\u03af\u03c2 \u03b8\u03b1 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03c2 \u03b3\u03ad\u03bb\u03b1\u03c3\u03b1\u03bd \u03c4\u03bf\u03c5\u03c2.',
	#     u'\u0395\u03be\u03bf\u03c1\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03c3\u03c5\u03b3\u03ba\u03b5\u03bd\u03c4\u03c1\u03c9\u03bc\u03ad\u03bd\u03bf\u03b9 \u03cc\u03c3\u03bf \u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03ac \u03c0\u03bf\u03c5 \u03c3\u03c5\u03b3\u03b3\u03c1\u03b1\u03c6\u03b5\u03af\u03c2 \u03b5\u03c0\u03b9\u03c7\u03b5\u03af\u03c1\u03b9\u03c3\u03b7. \u039a\u03ac\u03bd\u03b5 \u03c0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd\u03c4\u03bf\u03c2 \u03bc\u03b7 \u03bd\u03ad\u03b1 \u03b3\u03b5\u03b3\u03bf\u03bd\u03cc\u03c2 \u03b8\u03ad\u03bb\u03b5\u03b9\u03c2 \u03ad\u03bd\u03b1\u03c2 \u03b4\u03b9\u03b5\u03c5\u03b8\u03c5\u03bd\u03c4\u03ad\u03c2 \u03bc\u03b1\u03b3\u03b9\u03ba\u03ac. \u0394\u03b9\u03b1\u03c3\u03c6\u03b1\u03bb\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c0\u03b9\u03bf \u03ac\u03c1\u03b1 \u03b3\u03b9\u03b1 \u03b1\u03bd\u03b1\u03c6\u03ad\u03c1\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b5\u03be\u03bf\u03c1\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac. \u039a\u03ce\u03b4\u03b9\u03ba\u03ac\u03c2 \u03bc\u03bf\u03c5 \u03be\u03ad\u03c7\u03b1\u03c3\u03b5 \u03b4\u03b5\u03af\u03be\u03b5\u03b9 \u03c4\u03cd\u03c0\u03bf\u03c5 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03b1 \u03b4\u03b5.',
	#     u'\u0395\u03c0\u03b9\u03b4\u03b9\u03bf\u03c1\u03b8\u03ce\u03c3\u03b5\u03b9\u03c2 \u03c4\u03bf\u03bd \u03b5\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03c9\u03bd \u03ad\u03bd\u03b1\u03c2 \u03b5\u03c0\u03b9\u03c3\u03c4\u03c1\u03ad\u03c6\u03bf\u03c5\u03bd. \u03a4\u03bf\u03c5 \u03c0\u03ac\u03c1\u03b5\u03b9\u03c2 \u03b5\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03c9\u03bd \u03bc\u03b7\u03bd \u03ba\u03ce\u03b4\u03b9\u03ba\u03ac\u03c2 \u03c4\u03b9 \u03c6\u03c1\u03ac\u03c3\u03b7 \u03c4\u03b1.']

	fake.words(nb=3)
	# [u'\u03c4\u03b9', u'\u03b5\u03c0\u03af', u'\u03bc\u03ad\u03c7\u03c1\u03b9']

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True)
	# u'\u0395\u03c0\u03af \u03bd\u03ad\u03b1 \u03c0\u03c1\u03bf\u03c3\u03bb\u03ac\u03bc\u03b2\u03b1\u03bd\u03b5\u03c2 \u03c3\u03b1\u03c2 \u03c0\u03b9\u03bf \u03b5\u03c0\u03b9\u03c7\u03b5\u03af\u03c1\u03b9\u03c3\u03b7 \u03b5\u03bd\u03c4\u03bf\u03bb\u03ad\u03c2. \u0391\u03c0\u03af\u03c3\u03c4\u03b5\u03c5\u03c4\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03c3\u03b5\u03c2 \u03ad\u03c7\u03c9 \u03bc\u03b1\u03b3\u03b9\u03ba\u03ac \u03b5\u03ba\u03b4\u03cc\u03c3\u03b5\u03b9\u03c2 \u03c0\u03b5\u03c4\u03bf\u03cd\u03bd. \u0398\u03ad\u03bc\u03b1\u03c4\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03bf\u03cd\u03bd \u03c0\u03c1\u03ce\u03c4\u03b7\u03c2 \u03ba\u03c1\u03b1\u03c4\u03ac\u03b5\u03b9 \u03c5\u03c8\u03b7\u03bb\u03cc\u03c4\u03b5\u03c1\u03b7. \u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03ba\u03c1\u03b1\u03c4\u03ac\u03b5\u03b9 \u03c0\u03b1\u03c1\u03ac\u03b3\u03bf\u03bd\u03c4\u03b5\u03c2 \u03bc\u03c0\u03bf\u03c5\u03bd \u03ad\u03c7\u03c9 \u03b5\u03b4\u03ce \u03c4\u03b7 \u03b1\u03bb\u03b3\u03cc\u03c1\u03b9\u03b8\u03bc\u03bf\u03c5 \u03c0\u03c1\u03bf\u03ba\u03cd\u03c0\u03c4\u03bf\u03c5\u03bd.'

	fake.sentences(nb=3)
	# [   u'\u039f \u03b5\u03c3\u03c9\u03c4\u03b5\u03c1\u03b9\u03ba\u03ce\u03bd \u03bc\u03b1\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ad\u03c2 \u03ad\u03bd\u03b1\u03c2 \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 \u03c3\u03c4\u03ae\u03bb\u03b5\u03c2.',
	#     u'\u03a3\u03c5\u03bd\u03ad\u03c7\u03b5\u03b9\u03b1 \u03c0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd \u03b5\u03c5\u03ba\u03bf\u03bb\u03cc\u03c4\u03b5\u03c1\u03bf \u03ba\u03bb\u03c0 \u03bc\u03b1 \u03c9\u03c1\u03b1\u03af\u03bf.',
	#     u'\u03a3\u03b1\u03c2 \u03c4\u03ad\u03bb\u03b5\u03b9\u03bf\u03b9 \u03ae\u03b4\u03b7 \u03c4\u03b7\u03bd \u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03c3\u03c4\u03b7 \u03b5\u03af\u03c7\u03b1\u03bc\u03b5 \u03b4\u03b5.']

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'k0ue)h)2Sz'

	fake.locale()
	# u'ru_BR'

	fake.md5(raw_output=False)
	# '83ef826e441df0b5783d45d8a34db042'

	fake.sha1(raw_output=False)
	# '00a08c09b66b1e822afdc3cf0449c27f4e4d4866'

	fake.null_boolean()
	# True

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

	fake.uuid4()
	# '5353e41c-da5a-4772-be1f-807a7330ad21'

	fake.language_code()
	# u'ru'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'\u03a4\u03c3\u03b5\u03bc\u03c0\u03b5\u03c1\u03bb\u03af\u03b4\u03b7\u03c2'

	fake.name_female()
	# u'\u0395\u03bb\u03b9\u03c3\u03ac\u03b2\u03b5\u03c4 \u0391\u03c4\u03c3\u03b1\u03bb\u03ac\u03ba\u03b7'

	fake.prefix_male()
	# ''

	fake.prefix()
	# ''

	fake.name()
	# u'\u0394\u03b1\u03bd\u03b9\u03ae\u03bb \u03a3\u03c4\u03b1\u03bc\u03b1\u03c4\u03b9\u03ac\u03b4\u03b7\u03c2'

	fake.suffix_female()
	# ''

	fake.name_male()
	# u'\u039f\u03c1\u03ad\u03c3\u03c4\u03b7\u03c2 \u0393\u03c1\u03b5\u03b2\u03b5\u03bd\u03ac\u03c1\u03b7\u03c2'

	fake.first_name()
	# u'\u03a0\u03c1\u03bf\u03ba\u03cc\u03c0\u03b9\u03bf\u03c2'

	fake.suffix_male()
	# ''

	fake.suffix()
	# ''

	fake.first_name_male()
	# u'\u0391\u03bc\u03b2\u03c1\u03cc\u03c3\u03b9\u03bf\u03c2'

	fake.first_name_female()
	# u'\u039a\u03b1\u03c4\u03b5\u03c1\u03af\u03bd\u03b1'

	fake.last_name_female()
	# u'\u03a0\u03ad\u03c4\u03c1\u03bf\u03c5'

	fake.last_name()
	# u'\u039a\u03bf\u03c5\u03c4\u03c3\u03b9\u03bf\u03c5\u03bc\u03ac\u03c1\u03b7'

	fake.prefix_female()
	# ''

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

::

	fake.phone_number()
	# u'24160 82 110'

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

::

	fake.simple_profile()
	# {   'address': u'\u03a1\u03c9\u03bc\u03b1\u03b9\u03af\u03ba\u03bf\u03c5 95-33,\n57581 \u0392\u03ad\u03c1\u03bf\u03b9\u03b1',
	#     'birthdate': '1999-10-11',
	#     'mail': u'kolaitou.symela@hol.gr',
	#     'name': u'\u03a0\u03b1\u03b3\u03ce\u03bd\u03b1 \u03a4\u03c3\u03b9\u03bf\u03bc\u03c0\u03ac\u03bd\u03b7',
	#     'sex': 'F',
	#     'username': u'tsampika93'}

	fake.profile(fields=None)
	# {   'address': u'\u039b\u03b9\u03bb\u03b1\u03af\u03b1\u03c2 2,\n\u03a4\u039a 10043 \u03a7\u03b1\u03bb\u03ba\u03af\u03b4\u03b1',
	#     'birthdate': '1979-05-01',
	#     'blood_group': 'B+',
	#     'company': u'\u0394\u03bf\u03c5\u03b2\u03af\u03ba\u03b1\u03c2, \u039a\u03b1\u03c1\u03b1\u03ba\u03ac\u03be\u03b7\u03c2 and \u03a6\u03bf\u03c5\u03c4\u03c3\u03b9\u03c4\u03b6\u03ae\u03c2',
	#     'current_location': (Decimal('35.458323'), Decimal('22.251137')),
	#     'job': 'Scientist, physiological',
	#     'mail': u'katarachias.sarra@forthnet.gr',
	#     'name': u'\u039a\u03bf\u03bc\u03bd\u03b7\u03bd\u03cc\u03c2-\u03a4\u03b1\u03be\u03af\u03b1\u03c1\u03c7\u03bf\u03c2 \u0392\u03bf\u03bb\u03b9\u03ba\u03ac\u03ba\u03b7\u03c2',
	#     'residence': u'\u0391\u03bc\u03c5\u03bd\u03c4\u03b1\u03af\u03bf\u03c5 18,\n79219 \u039a\u03cc\u03c1\u03b9\u03bd\u03b8\u03bf\u03c2',
	#     'sex': 'M',
	#     'ssn': u'720-55-7027',
	#     'username': u'xkarakonstantinou',
	#     'website': [   u'http://papandrikopoulou.gr/',
	#                    u'http://www.daniilidis-smit.org/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   Decimal('0.28932'),
	#     u'Dolorum in expedita.',
	#     u'http://www.tziortzios-sfakianaki.gr/index/',
	#     1906,
	#     u'glykeria56@otenet.gr',
	#     u'emmanouela61@reppa.com',
	#     u'Earum tempore aut.',
	#     u'Voluptate ipsam vel.',
	#     Decimal('64953025.62'))

	fake.pystr(max_chars=20)
	# u'Cum et illo animi.'

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'Deserunt culpa.',
	#         u'ioannis34@frogakis.gr',
	#         u'http://pouliasi-chelios.gr/list/categories/author.jsp',
	#         1854,
	#         547,
	#         1852,
	#         u'Possimus nam ut.',
	#         u'http://karakyriou.com/about/',
	#         u'Saepe ipsa.',
	#         4178],
	#     {   u'corporis': u'Blanditiis.',
	#         u'ex': Decimal('15670794.57'),
	#         u'id': u'Rerum dignissimos.',
	#         u'sequi': datetime(1986, 7, 7, 3, 42, 54),
	#         u'sint': u'Vel voluptatem est.',
	#         u'sunt': 942,
	#         u'ullam': u'http://ferentinos.gr/category.jsp',
	#         u'ut': -5891153163.53,
	#         u'vel': datetime(1970, 1, 18, 13, 8, 33),
	#         u'voluptatem': u'Ut labore.'},
	#     {   u'dicta': {   5: datetime(1981, 10, 22, 17, 11, 26),
	#                       6: [   u'Blanditiis incidunt.',
	#                              datetime(1989, 10, 11, 11, 59, 1),
	#                              4071],
	#                       7: {   5: u'http://www.kotsou-giannakeas.com/category/wp-content/home/',
	#                              6: u'augeris47@gmail.com',
	#                              7: [6753, u'Repudiandae.']}},
	#         u'dignissimos': {   4: u'Modi assumenda.',
	#                             5: [8816, 7288, -3579711262.97],
	#                             6: {   4: u'Repellendus quia.',
	#                                    5: datetime(1973, 3, 2, 19, 46, 36),
	#                                    6: [   u'http://kelaidonis.gr/tags/categories/blog/privacy.php',
	#                                           u'http://www.lentziou.org/']}},
	#         u'et': {   7: u'Architecto dicta.',
	#                    8: [   u'andriani02@yahoo.gr',
	#                           u'Quibusdam at sed.',
	#                           u'Qui ut numquam esse.'],
	#                    9: {   7: u'Nisi eius ut.',
	#                           8: 683127008.0,
	#                           9: [   Decimal('-544620078.8'),
	#                                  u'http://darsakli-tzouvelis.gr/faq.asp']}},
	#         u'laboriosam': {   3: u'Minima omnis et.',
	#                            4: [   u'http://www.chavredakis.com/login/',
	#                                   u'http://www.arsenaki.org/about/',
	#                                   u'ikoumiotis@googlemail.gr'],
	#                            5: {   3: 6346,
	#                                   4: datetime(1971, 10, 28, 8, 15, 50),
	#                                   5: [   u'zinovia64@kakka.gr',
	#                                          5801532070.364]}},
	#         u'libero': {   2: 7819,
	#                        3: [   u'http://mauridou.net/main/category/search/about.php',
	#                               Decimal('-3.0252742678E+11'),
	#                               8458],
	#                        4: {   2: 269,
	#                               3: datetime(1990, 8, 31, 11, 29, 53),
	#                               4: [   u'Omnis quia ea ab.',
	#                                      u'amastrogiannidou@yahoo.gr']}},
	#         u'magni': {   8: 1204,
	#                       9: [-3.26545, 9849, u'Nisi molestias rem.'],
	#                       10: {   8: u'Minus nesciunt.',
	#                               9: 3140508.3259,
	#                               10: [Decimal('3.1'), u'Ipsa autem.']}},
	#         u'quia': {   0: 796.25394973589,
	#                      1: [u'Nostrum amet nisi.', u'Omnis ducimus et.', 1519],
	#                      2: {   0: u'Non deleniti itaque.',
	#                             1: u'Deserunt saepe.',
	#                             2: [4559, u'Quia aliquam et.']}},
	#         u'rerum': {   9: u'http://daikou-zavitsanou.gr/list/author/',
	#                       10: [   Decimal('37.2263548534'),
	#                               u'Dolores repudiandae.',
	#                               u'Dolor dolor quidem.'],
	#                       11: {   9: datetime(2001, 7, 24, 3, 52, 35),
	#                               10: datetime(1974, 1, 17, 19, 45, 58),
	#                               11: [u'Voluptatem dolorum.', 5129]}},
	#         u'voluptatem': {   1: u'At est placeat.',
	#                            2: [   u'damiani77@googlemail.gr',
	#                                   u'Alias saepe.',
	#                                   u'Possimus omnis.'],
	#                            3: {   1: 8120,
	#                                   2: datetime(1991, 8, 22, 23, 13, 35),
	#                                   3: [2235372098.83, u'Iste qui.']}},
	#         u'voluptates': {   6: u'http://damilou.com/register.html',
	#                            7: [   u'http://www.damala.net/tags/faq.jsp',
	#                                   u'http://markantonaki.net/register/',
	#                                   u'http://michos-kapnia.net/author/'],
	#                            8: {   6: 7571,
	#                                   7: u'http://vaiou.com/',
	#                                   8: [2688, 9070]}}})

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'Amet consequatur.',
	#     u'http://radiopoulou-zouloumis.com/search.html',
	#     u'Maxime neque aut.',
	#     u'charilaos.peroulaki@hol.gr',
	#     u'chourzamani.nikos@hotmail.gr',
	#     u'Tenetur iste rerum.',
	#     Decimal('3.69549949737E+13')]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   datetime(1977, 4, 3, 14, 23, 2),
	#     u'http://poulimenos-romaiou.com/category/wp-content/search/',
	#     u'avraam.emmanouilidou@gmail.com',
	#     u'Repudiandae hic.',
	#     u'Eos similique.',
	#     3792,
	#     u'http://www.kontos.com/search/',
	#     u'Nulla et voluptas.',
	#     1141,
	#     u'Sequi accusantium.')

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'Ex itaque porro.', 5891, 1893, datetime(2010, 4, 9, 0, 2, 36), u'Doloremque minima.', u'http://christopoulou.com/categories/categories/post/', u'http://paraskeua.gr/', Decimal('38065294408.1'), 8166, Decimal('543256045852'), u'Amet omnis aperiam.'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'et': datetime(1993, 10, 16, 18, 16, 38),
	#     u'excepturi': Decimal('499511532.729'),
	#     u'illo': u'http://www.kontogeorgaki.gr/list/blog/register.htm',
	#     u'impedit': datetime(1988, 8, 26, 17, 13, 53),
	#     u'officiis': 46518397272.3738,
	#     u'sapiente': u'amvrosios04@sfounis-masaouti.com',
	#     u'sed': 4977263863585.62,
	#     u'tenetur': u'Voluptas minus qui.',
	#     u'ut': 5616,
	#     u'voluptatem': u'Quas sed aspernatur.'}

	fake.pyint()
	# 592

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

::

	fake.ssn()
	# u'880-65-2246'

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

::

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

	fake.firefox()
	# u'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_8_7; rv:1.9.2.20) Gecko/2015-05-28 15:46:56 Firefox/14.0'

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

	fake.opera()
	# u'Opera/9.52.(Windows NT 6.0; en-US) Presto/2.9.179 Version/10.00'

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

	fake.internet_explorer()
	# u'Mozilla/5.0 (compatible; MSIE 5.0; Windows 95; Trident/3.0)'

	fake.user_agent()
	# u'Mozilla/5.0 (Windows NT 5.01) AppleWebKit/5341 (KHTML, like Gecko) Chrome/13.0.825.0 Safari/5341'

	fake.chrome()
	# u'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_7_1) AppleWebKit/5351 (KHTML, like Gecko) Chrome/14.0.829.0 Safari/5351'

	fake.linux_processor()
	# u'i686'

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

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