
Language cs_CZ
===============

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

::

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

	fake.street_name()
	# u'Kr\xe1tk\xfd L\xe1n'

	fake.address()
	# u'M\xedlovsk\xe1 2/0\n473 95 Vejprty'

	fake.street_address()
	# u'Do Zahr\xe1dek Ii 512'

	fake.postcode()
	# u'994 65'

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

	fake.country()
	# u'Dominika'

	fake.city_name()
	# u'P\u0159ibyslav'

	fake.street_suffix_long()
	# u'n\xe1m\u011bst\xed'

	fake.street_suffix()
	# u'Street'

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

	fake.city_suffix()
	# u'Ville'

	fake.building_number()
	# u'6/2'

	fake.country_code()
	# u'AD'

	fake.street_suffix_short()
	# u'n\xe1m.'

	fake.city()
	# u'Suchdol nad Lu\u017enic\xed'

	fake.state()
	# u'Kraj Vyso\u010dina'

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

::

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

	fake.ean13()
	# u'0673795257289'

	fake.ean8()
	# u'69172533'

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

::

	fake.rgb_css_color()
	# u'rgb(144,50,106)'

	fake.color_name()
	# u'DarkOliveGreen'

	fake.rgb_color_list()
	# (247, 205, 166)

	fake.rgb_color()
	# u'69,153,182'

	fake.safe_hex_color()
	# u'#eedd00'

	fake.safe_color_name()
	# u'silver'

	fake.hex_color()
	# u'#22060f'

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

::

	fake.company()
	# u'Bla\u017eek s.r.o.'

	fake.company_suffix()
	# u'a.s.'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'VISA 16 digit\nVendula \u0160imek\n4131327539321217 05/24\nCVC: 972\n'

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

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

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

::

	fake.currency_code()
	# 'EGP'

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

::

	fake.date_time_ad()
	# datetime.datetime(293, 12, 1, 22, 19, 48)

	fake.month()
	# '11'

	fake.am_pm()
	# 'AM'

	fake.timezone()
	# u'Africa/Nairobi'

	fake.iso8601()
	# '1991-05-11T21:49:29'

	fake.date_time()
	# datetime(2010, 4, 29, 10, 2, 17)

	fake.month_name()
	# 'November'

	fake.date_time_this_year(before_now=True, after_now=False)
	# datetime(2015, 7, 16, 21, 27, 46)

	fake.unix_time()
	# 396840137

	fake.day_of_week()
	# 'Tuesday'

	fake.day_of_month()
	# '27'

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

	fake.date_time_between(start_date="-30y", end_date="now")
	# datetime(1985, 12, 29, 12, 53, 27)

	fake.date_time_this_month(before_now=True, after_now=False)
	# datetime(2015, 11, 16, 20, 9, 56)

	fake.year()
	# '1991'

	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(2010, 11, 27, 14, 24, 36)

	fake.date_time_this_decade(before_now=True, after_now=False)
	# datetime(2013, 10, 25, 23, 32, 11)

	fake.century()
	# u'VIII'

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

	fake.time_delta()
	# datetime.timedelta(7136, 25426)

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

::

	fake.mime_type(category=None)
	# u'message/partial'

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

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

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

::

	fake.ipv4()
	# u'207.223.153.7'

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

	fake.company_email()
	# u'ruzicka.radim@tpnek.cz'

	fake.uri()
	# u'http://markov.cz/home/'

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

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

	fake.tld()
	# u'cz'

	fake.free_email()
	# u'cermak.vilem@post.cz'

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

	fake.free_email_domain()
	# u'email.cz'

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

	fake.uri_extension()
	# u'.jsp'

	fake.ipv6()
	# u'4739:cdc5:5823:911c:3aa3:5c3a:2dcb:1f92'

	fake.safe_email()
	# u'mala.bozena@example.com'

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

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

	fake.email()
	# u'cerna.miroslava@centrum.cz'

	fake.uri_page()
	# u'post'

	fake.mac_address()
	# u'04:fb:55:bc:80:95'

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

::

	fake.job()
	# 'Mudlogger'

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

::

	fake.text(max_nb_chars=200)
	# u'Officiis doloribus expedita nisi. Et totam et quibusdam rerum. Doloribus rerum impedit vel aliquam suscipit. Dolores porro velit eos corrupti in et hic.'

	fake.sentence(nb_words=6, variable_nb_words=True)
	# u'Nemo impedit officia ea neque mollitia reprehenderit.'

	fake.word()
	# u'ipsa'

	fake.paragraphs(nb=3)
	# [   u'Quia impedit ut ducimus sed odio. Dicta dolore rerum consequatur reprehenderit. Quo eos iste iusto et saepe porro. Sunt fuga quis iusto at autem eaque.',
	#     u'Repudiandae accusamus temporibus rerum et sit. Id iste sed vitae cupiditate assumenda esse est. Sint voluptas incidunt animi voluptatem.',
	#     u'Architecto quia fugiat magnam. Vel eum nostrum delectus iure. Sunt eveniet quia quia. Aperiam tempore numquam maxime est corrupti velit.']

	fake.words(nb=3)
	# [u'consequatur', u'nobis', u'dolorum']

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True)
	# u'Architecto esse alias eveniet dolorem. Temporibus quam voluptatum eveniet tempora earum autem id. Fugit quisquam doloribus quis. Incidunt porro distinctio dicta temporibus et labore ratione.'

	fake.sentences(nb=3)
	# [   u'Harum harum omnis dolore minus quia.',
	#     u'Enim consequatur et dolorem.',
	#     u'Nihil minima ex ipsum.']

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

::

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

	fake.locale()
	# u'es_MD'

	fake.md5(raw_output=False)
	# '2692c17752ab163a2666bbc31dd7dd03'

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

	fake.null_boolean()
	# False

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

	fake.uuid4()
	# '07f7ab46-3863-40ca-ac18-077272b56678'

	fake.language_code()
	# u'cn'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'H\xe1jek'

	fake.name_female()
	# u'Iveta Krej\u010dov\xe1'

	fake.prefix_male()
	# u'RNDr.'

	fake.prefix()
	# u'MUDr.'

	fake.name()
	# u'Emilie \u0160t\u011bp\xe1nkov\xe1'

	fake.suffix_female()
	# u'CSc.'

	fake.name_male()
	# u'Ane\u017eka Machov\xe1'

	fake.first_name()
	# u'Ludmila'

	fake.suffix_male()
	# u'Th.D.'

	fake.suffix()
	# u'Th.D.'

	fake.first_name_male()
	# u'Radom\xedr'

	fake.first_name_female()
	# u'Bla\u017eena'

	fake.last_name_female()
	# u'Kadlecov\xe1'

	fake.last_name()
	# u'Holub'

	fake.prefix_female()
	# u'JUDr.'

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

::

	fake.phone_number()
	# u'770 095 202'

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

::

	fake.simple_profile()
	# {   'address': u'Vyhl\xeddkova 7/4\n034 72 Pot\u0161t\xe1t',
	#     'birthdate': '1988-09-03',
	#     'mail': u'xruzickova@chello.cz',
	#     'name': u'Denisa \u010cern\xe1',
	#     'sex': 'M',
	#     'username': u'viktorie78'}

	fake.profile(fields=None)
	# {   'address': u'Africk\xe1 945\n722 72 M\xfdto',
	#     'birthdate': '1995-12-07',
	#     'blood_group': 'AB-',
	#     'company': u'Nov\xe1k',
	#     'current_location': (Decimal('37.647041'), Decimal('64.803594')),
	#     'job': 'Solicitor',
	#     'mail': u'kristina96@seznam.cz',
	#     'name': u'RNDr. \u0160imon Van\u011bk',
	#     'residence': u'Na Cik\xe1nce 5\n753 66 Vala\u0161sk\xe9 Klobouky',
	#     'sex': 'F',
	#     'ssn': u'865-46-8085',
	#     'username': u'riha.david',
	#     'website': [   u'http://astn.cz/',
	#                    u'http://www.pospil.com/',
	#                    u'http://www.sedlkov.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'Iusto perspiciatis.', 9798, u'http://www.blha.cz/category/explore/author/', u'dvorak.jaromir@volny.cz', u'Molestiae.', u'In et molestiae qui.', Decimal('83.81'), -685596894161336.0, 9480])

	fake.pystr(max_chars=20)
	# u'Itaque nesciunt et.'

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'Et sint molestiae.',
	#         u'pospisil.ivan@chello.cz',
	#         19030869884.9664,
	#         u'Aut dolorem.',
	#         5425,
	#         -8353216.0,
	#         u'Ex expedita quia.',
	#         u'bohuslav.krejci@volny.cz',
	#         u'anna.beranova@chello.cz',
	#         617291149.0],
	#     {   u'adipisci': 1000,
	#         u'asperiores': u'http://k.cz/home.html',
	#         u'doloremque': u'http://www.markov.cz/categories/posts/index/',
	#         u'explicabo': u'Corrupti sit maxime.',
	#         u'ipsam': u'Sit qui blanditiis.',
	#         u'laborum': u'http://sedlek.com/homepage.jsp',
	#         u'nisi': 2832,
	#         u'perspiciatis': 7700,
	#         u'tempore': Decimal('-83.560240216')},
	#     {   u'cum': {   0: 5447,
	#                     1: [951424450695.0, -88.0, u'soukup.vilem@post.cz'],
	#                     2: {   0: u'http://www.prochzka.cz/',
	#                            1: u'At amet qui a aut.',
	#                            2: [u'Et est adipisci.', 4860]}},
	#         u'labore': {   1: 318,
	#                        2: [   datetime(1983, 6, 26, 18, 12, 28),
	#                               u'Ut perferendis ea.',
	#                               Decimal('-2.0')],
	#                        3: {   1: datetime(1972, 1, 21, 2, 56, 35),
	#                               2: u'Nam vel ut quas.',
	#                               3: [   u'http://kol.cz/',
	#                                      u'krizova.magdalena@email.cz']}},
	#         u'maiores': {   3: u'Enim ut amet quidem.',
	#                         4: [   9857,
	#                                datetime(1979, 8, 2, 17, 35, 52),
	#                                u'Aliquid illo sequi.'],
	#                         5: {   3: -27370665974083.9,
	#                                4: 571646529913.3,
	#                                5: [   u'kzeman@volny.cz',
	#                                       u'Non et voluptates.']}},
	#         u'nesciunt': {   2: u'Maxime ut error.',
	#                          3: [   u'Sunt eum ipsam qui.',
	#                                 u'Culpa culpa atque.',
	#                                 2672],
	#                          4: {   2: u'jticha@seznam.cz',
	#                                 3: Decimal('74289878280.8'),
	#                                 4: [   u'Vel ut veritatis.',
	#                                        u'Sapiente facilis.']}},
	#         u'nostrum': {   6: u'Ut cupiditate.',
	#                         7: [   Decimal('1.8314757108'),
	#                                u'libor.kriz@chello.cz',
	#                                -706.80922428],
	#                         8: {   6: u'http://www.zeman.cz/',
	#                                7: 3137,
	#                                8: [   u'dvorakova.miroslava@gmail.com',
	#                                       Decimal('146962061791')]}},
	#         u'quo': {   8: u'iveta.bartosova@seznam.cz',
	#                     9: [   datetime(2000, 4, 25, 13, 36, 52),
	#                            u'http://www.vesel.cz/homepage.html',
	#                            7793.6],
	#                     10: {   8: 37796691.555525,
	#                             9: u'Amet aut ipsum hic.',
	#                             10: [u'Ut est sapiente.', 4968]}},
	#         u'rerum': {   7: u'Labore deserunt sit.',
	#                       8: [   u'Non expedita.',
	#                              u'Ut qui iure et ut.',
	#                              u'Illo harum fugiat.'],
	#                       9: {   7: 2071,
	#                              8: u'In dolor.',
	#                              9: [u'Quia qui harum.', 249]}},
	#         u'sint': {   9: datetime(1993, 5, 6, 7, 34, 46),
	#                      10: [   6919,
	#                              Decimal('1.52469379512E+12'),
	#                              datetime(1983, 6, 12, 0, 15, 3)],
	#                      11: {   9: 7875,
	#                              10: u'martin.bartos@seznam.cz',
	#                              11: [   u'lukas.jelinek@seznam.cz',
	#                                      datetime(1970, 9, 27, 7, 57, 52)]}},
	#         u'ut': {   4: u'Deserunt laborum.',
	#                    5: [   u'nikol.stepankova@centrum.cz',
	#                           4579,
	#                           u'Incidunt rerum.'],
	#                    6: {   4: Decimal('12473926.33'),
	#                           5: Decimal('29508619347.5'),
	#                           6: [   u'Ipsum et quo veniam.',
	#                                  u'Vel doloribus sed.']}},
	#         u'voluptatem': {   5: u'jbartosova@email.cz',
	#                            6: [   u'Cupiditate impedit.',
	#                                   527,
	#                                   datetime(2002, 11, 13, 7, 21, 1)],
	#                            7: {   5: u'Perspiciatis et aut.',
	#                                   6: Decimal('-445188095364'),
	#                                   7: [   datetime(2012, 1, 22, 8, 13, 21),
	#                                          2602]}}})

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'Consequatur.',
	#     u'Aut dicta suscipit.',
	#     u'Modi rem sit.',
	#     9829,
	#     datetime(1996, 9, 29, 7, 35, 37),
	#     1283,
	#     u'Sapiente earum.',
	#     u'Nobis nesciunt.']

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   Decimal('-98478584.55'),
	#     u'Eveniet consequatur.',
	#     Decimal('-6108209.3274'),
	#     646183.0,
	#     u'Consectetur vitae.',
	#     u'Ratione fugit.',
	#     u'Porro quod unde.',
	#     u'Vitae optio eum et.',
	#     -57707329.384187,
	#     u'Labore.',
	#     u'Occaecati quo.',
	#     u'Est rerum odit in.',
	#     Decimal('4233.8798872'))

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([7648, u'Ut id facere.', -169859.14434849, 5667, u'xjandova@volny.cz', u'Voluptas unde ut et.', datetime(1998, 9, 1, 19, 30, 10), u'http://rikov.cz/main/blog/app/index.htm', u'http://imkov.cz/category.htm', u'Aut dolorum laborum.', -3461.1388, u'Sit facilis ipsa.'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'consequatur': Decimal('7.48056938265E+14'),
	#     u'debitis': u'petr.kadlec@centrum.cz',
	#     u'in': 1285339.0,
	#     u'iusto': datetime(2015, 5, 7, 3, 43, 48),
	#     u'laborum': 3920,
	#     u'mollitia': u'Quis ad aut ex vel.',
	#     u'possimus': u'http://nmec.com/homepage/',
	#     u'sed': u'bohumil.vanek@centrum.cz'}

	fake.pyint()
	# 8450

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

::

	fake.ssn()
	# u'189-52-8437'

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

::

	fake.mac_processor()
	# u'PPC'

	fake.firefox()
	# u'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_8_3; rv:1.9.2.20) Gecko/2012-02-15 09:24:16 Firefox/3.8'

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

	fake.opera()
	# u'Opera/8.50.(Windows 98; Win 9x 4.90; sl-SI) Presto/2.9.186 Version/12.00'

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

	fake.internet_explorer()
	# u'Mozilla/5.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Trident/3.0)'

	fake.user_agent()
	# u'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_9 rv:3.0; it-IT) AppleWebKit/533.39.1 (KHTML, like Gecko) Version/5.0.5 Safari/533.39.1'

	fake.chrome()
	# u'Mozilla/5.0 (X11; Linux i686) AppleWebKit/5340 (KHTML, like Gecko) Chrome/13.0.889.0 Safari/5340'

	fake.linux_processor()
	# u'i686'

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

	fake.safari()
	# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_1 like Mac OS X; en-US) AppleWebKit/534.27.5 (KHTML, like Gecko) Version/4.0.5 Mobile/8B113 Safari/6534.27.5'
