
Language en_CA
===============

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

::

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

	fake.street_name()
	# u'Brande Brooks'

	fake.address()
	# u'21105 Alyse Via Apt. 542\nLake Ayla, NS K6C 7S1'

	fake.street_address()
	# u'74264 Smith Green'

	fake.postcode()
	# u'09330'

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

	fake.country()
	# u'Northern Mariana Islands'

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

	fake.postal_code_letter()
	# u'H'

	fake.province()
	# u'Yukon Territory'

	fake.city_prefix()
	# u'Lake'

	fake.street_suffix()
	# u'Pine'

	fake.city_suffix()
	# u'land'

	fake.building_number()
	# u'8255'

	fake.country_code()
	# u'PT'

	fake.secondary_address()
	# u'Apt. 903'

	fake.city()
	# u'New Lilyanaberg'

	fake.province_abbr()
	# u'NB'

	fake.postalcode()
	# u'B1T 2E9'

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

::

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

	fake.ean13()
	# u'4927342193008'

	fake.ean8()
	# u'70253146'

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

::

	fake.rgb_css_color()
	# u'rgb(168,193,186)'

	fake.color_name()
	# u'SandyBrown'

	fake.rgb_color_list()
	# (167, 156, 92)

	fake.rgb_color()
	# u'216,155,124'

	fake.safe_hex_color()
	# u'#555500'

	fake.safe_color_name()
	# u'navy'

	fake.hex_color()
	# u'#98a81c'

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

::

	fake.company()
	# u'Brown, Kirlin and Kulas'

	fake.company_suffix()
	# u'LLC'

	fake.catch_phrase()
	# u'Integrated interactive array'

	fake.bs()
	# u'reinvent frictionless ROI'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'JCB 16 digit\nSeneca Cummings\n3088842174629000 06/22\nCVC: 945\n'

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

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

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

::

	fake.currency_code()
	# 'HNL'

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

::

	fake.date_time_ad()
	# datetime.datetime(726, 12, 16, 9, 40, 28)

	fake.month()
	# '05'

	fake.am_pm()
	# 'PM'

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

	fake.iso8601()
	# '1975-08-16T03:37:59'

	fake.date_time()
	# datetime(2002, 3, 31, 14, 48, 44)

	fake.month_name()
	# 'March'

	fake.date_time_this_year(before_now=True, after_now=False)
	# datetime(2015, 8, 23, 4, 54, 25)

	fake.unix_time()
	# 922817057

	fake.day_of_week()
	# 'Saturday'

	fake.day_of_month()
	# '01'

	fake.time(pattern="%H:%M:%S")
	# '07:43:52'

	fake.date_time_between(start_date="-30y", end_date="now")
	# datetime(1999, 9, 29, 7, 12, 19)

	fake.date_time_this_month(before_now=True, after_now=False)
	# datetime(2015, 11, 2, 6, 54, 27)

	fake.year()
	# '2004'

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

	fake.date_time_this_century(before_now=True, after_now=False)
	# datetime(2014, 9, 11, 4, 14, 52)

	fake.date_time_this_decade(before_now=True, after_now=False)
	# datetime(2010, 5, 17, 1, 9, 54)

	fake.century()
	# u'XIX'

	fake.date(pattern="%Y-%m-%d")
	# '1979-11-29'

	fake.time_delta()
	# datetime.timedelta(16279, 490)

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

::

	fake.mime_type(category=None)
	# u'application/xhtml+xml'

	fake.file_name(category=None, extension=None)
	# u'totam.jpeg'

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

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

::

	fake.ipv4()
	# u'181.227.73.217'

	fake.url()
	# u'http://funkjerde.net/'

	fake.company_email()
	# u'darrius80@wuckert.org'

	fake.uri()
	# u'http://turcotteebert.net/wp-content/about/'

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

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

	fake.tld()
	# u'net'

	fake.free_email()
	# u'brittani89@gmail.com'

	fake.slug(*args, **kwargs)
	# u'totam-nemo-ut-error'

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

	fake.domain_name()
	# u'heidenreich.org'

	fake.uri_extension()
	# u'.htm'

	fake.ipv6()
	# u'e310:de0c:c7fc:7ed5:d982:b84f:277d:0070'

	fake.safe_email()
	# u'goldner.anabella@example.org'

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

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

	fake.email()
	# u'legros.ricardo@haag.org'

	fake.uri_page()
	# u'home'

	fake.mac_address()
	# u'fe:ea:15:a3:55:2f'

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

::

	fake.job()
	# 'Video editor'

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

::

	fake.text(max_nb_chars=200)
	# u'Aspernatur asperiores vero minima. Molestiae et doloremque et. Expedita dolore aut error sunt. Qui suscipit molestias vero nam ullam placeat esse porro.'

	fake.sentence(nb_words=6, variable_nb_words=True)
	# u'Quidem consequatur velit ab blanditiis.'

	fake.word()
	# u'eius'

	fake.paragraphs(nb=3)
	# [   u'Nam sed laborum ea minus velit incidunt. Quas suscipit omnis voluptatibus quisquam cum. Nesciunt eum dolor sit iure sed voluptas. Ut omnis quas id voluptates tempore.',
	#     u'Ut voluptatum adipisci rerum vel ratione tempora aperiam debitis. Quisquam inventore magnam aperiam in.',
	#     u'Voluptatibus magni maxime quidem aut quod vel quisquam. Et placeat aut id. Et id illo rem impedit blanditiis rerum quisquam molestiae.']

	fake.words(nb=3)
	# [u'voluptas', u'quis', u'fugiat']

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True)
	# u'Vitae molestiae dolorum enim in. Aperiam eaque provident at voluptas ratione omnis. Quas non corporis ea ipsum. Harum praesentium ad perspiciatis consequatur doloribus ipsam quos.'

	fake.sentences(nb=3)
	# [   u'Quos perspiciatis quasi dolores.',
	#     u'Eum fuga quaerat cupiditate asperiores et ipsam a et.',
	#     u'Et recusandae quod odio ducimus tenetur maxime.']

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

::

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

	fake.locale()
	# u'pt_BA'

	fake.md5(raw_output=False)
	# '66791b6662f7f9e9181e022fddf5ec0b'

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

	fake.null_boolean()
	# None

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

	fake.uuid4()
	# '7f8f8689-b1c4-42e0-895a-edc30170344b'

	fake.language_code()
	# u'pt'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'Daugherty'

	fake.name_female()
	# u'Sallie Deckow DVM'

	fake.prefix_male()
	# u'Dr.'

	fake.prefix()
	# u'Mr.'

	fake.name()
	# u'Ms. Krystina Hirthe'

	fake.suffix_female()
	# u'DVM'

	fake.name_male()
	# u'Dequan Heller'

	fake.first_name()
	# u'Hughey'

	fake.suffix_male()
	# u'Sr.'

	fake.suffix()
	# u'V'

	fake.first_name_male()
	# u'Jaren'

	fake.first_name_female()
	# u'Jamiya'

	fake.last_name_female()
	# u'Lehner'

	fake.last_name()
	# u'Fadel'

	fake.prefix_female()
	# u'Dr.'

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

::

	fake.phone_number()
	# u'1 (710) 023-4918'

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

::

	fake.simple_profile()
	# {   'address': u'0580 Tania Manors Suite 399\nPort Carinamouth, PE J9N7G7',
	#     'birthdate': '1981-04-17',
	#     'mail': u'gweber@hotmail.com',
	#     'name': u'Elwin Haley',
	#     'sex': 'M',
	#     'username': u'vemard'}

	fake.profile(fields=None)
	# {   'address': u'95334 Harlow Passage\nNew Parrishbury, NV E5A4X2',
	#     'birthdate': '2003-09-18',
	#     'blood_group': '0+',
	#     'company': u'McDermott, Stiedemann and Goodwin',
	#     'current_location': (Decimal('59.388083'), Decimal('18.086487')),
	#     'job': 'Facilities manager',
	#     'mail': u'danae.dare@hotmail.com',
	#     'name': u'Mr. Kelly McClure',
	#     'residence': u'36823 Terence Estate\nSouth Donalside, AB S2L 5B7',
	#     'sex': 'F',
	#     'ssn': u'811 046 689 ',
	#     'username': u'gtowne',
	#     'website': [   u'http://www.pfeffer.com/',
	#                    u'http://corwinyost.org/',
	#                    u'http://www.stehr.com/',
	#                    u'http://feil.info/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([datetime(1970, 2, 8, 20, 49, 6), u'Non placeat quia.', u'Ea explicabo.', 2024, 3724, datetime(2015, 6, 25, 5, 2, 37), u'Modi asperiores.', -7.72678355807, u'Nihil repudiandae.', Decimal('1.55450939027E+14'), u'http://www.skiles.com/', u'Voluptatem illum.', Decimal('-195486224.833'), u'http://www.bechtelaremard.biz/categories/faq/'])

	fake.pystr(max_chars=20)
	# u'Deleniti ab eum.'

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'Laborum iusto porro.',
	#         u'Omnis eveniet.',
	#         Decimal('199312307.4'),
	#         u'eferry@hauck.com',
	#         u'heathcote.marc@franecki.com',
	#         367587.8219,
	#         6677,
	#         u'Libero a est ut.',
	#         u'Quia id mollitia.',
	#         2095],
	#     {   u'ad': -2.0,
	#         u'commodi': -45456601.3,
	#         u'cum': 2905,
	#         u'distinctio': u'matias.beier@hotmail.com',
	#         u'et': Decimal('-1.57749637595E+14'),
	#         u'possimus': u'Hic sapiente.',
	#         u'rerum': 6.16224,
	#         u'unde': u'Eligendi ut nihil.',
	#         u'voluptatum': 516900603083.0},
	#     {   u'aliquid': {   8: 7987,
	#                         9: [   Decimal('-44583765.1266'),
	#                                8027,
	#                                u'margery.mcglynn@funk.net'],
	#                         10: {   8: u'Omnis nihil eum.',
	#                                 9: u'Qui et et.',
	#                                 10: [u'janette.hoeger@champlin.com', 4735]}},
	#         u'eaque': {   0: datetime(1973, 6, 14, 10, 53, 5),
	#                       1: [   u'Quisquam velit.',
	#                              u'http://www.wiegand.com/homepage/',
	#                              u'Consequuntur.'],
	#                       2: {   0: Decimal('73110.6'),
	#                              1: u'Culpa velit cum.',
	#                              2: [u'darwin08@gmail.com', u'Veniam a vitae.']}},
	#         u'et': {   5: 5848,
	#                    6: [   u'http://www.hilpertfisher.com/posts/homepage.htm',
	#                           datetime(1978, 3, 2, 13, 50, 27),
	#                           u'Sunt asperiores.'],
	#                    7: {   5: u'http://sengerswaniawski.biz/main.html',
	#                           6: u'Quia vitae alias.',
	#                           7: [3589477935176.0, 3972]}},
	#         u'exercitationem': {   2: u'Doloribus nihil.',
	#                                3: [   u'http://wilkinsonmaggio.biz/posts/blog/explore/category/',
	#                                       u'Omnis esse omnis.',
	#                                       1005],
	#                                4: {   2: u'Repellendus ea.',
	#                                       3: u'Eligendi provident.',
	#                                       4: [   datetime(1976, 10, 12, 9, 49, 44),
	#                                              487]}},
	#         u'modi': {   3: datetime(1991, 9, 16, 16, 11, 43),
	#                      4: [   u'itorphy@ward.com',
	#                             datetime(1980, 9, 2, 7, 5, 7),
	#                             u'Fugit similique est.'],
	#                      5: {   3: 9084,
	#                             4: 3173,
	#                             5: [   datetime(2007, 11, 9, 18, 49, 52),
	#                                    datetime(1976, 11, 14, 23, 14, 26)]}},
	#         u'necessitatibus': {   9: 710.427,
	#                                10: [   u'Quia incidunt iure.',
	#                                        5839,
	#                                        datetime(1988, 5, 20, 12, 25, 7)],
	#                                11: {   9: u'http://www.sanforddurgan.biz/',
	#                                        10: u'Totam aut aut id et.',
	#                                        11: [   u'Sed soluta et.',
	#                                                u'otromp@kreiger.info']}},
	#         u'omnis': {   1: u'Minima quia.',
	#                       2: [5021, u'Pariatur sequi.', u'Vel dolores autem.'],
	#                       3: {   1: u'Pariatur distinctio.',
	#                              2: u'hattie40@welchoconner.info',
	#                              3: [89683939.57, u'Nihil iusto et.']}},
	#         u'pariatur': {   4: u'Voluptas numquam.',
	#                          5: [u'Debitis.', u'Ea enim porro quas.', 8023],
	#                          6: {   4: 7908,
	#                                 5: u'Consectetur.',
	#                                 6: [   Decimal('-649.895753096'),
	#                                        u'Dolores ea atque.']}},
	#         u'rerum': {   6: 5031,
	#                       7: [Decimal('9693.3'), -4.1271053, 6988],
	#                       8: {   6: 544956.8965,
	#                              7: Decimal('9118021.0'),
	#                              8: [u'Nostrum ipsum.', u'Voluptatibus.']}},
	#         u'voluptas': {   7: datetime(2015, 8, 12, 14, 42, 54),
	#                          8: [   u'Iure aliquam vel.',
	#                                 u'Soluta rerum.',
	#                                 u'venice.huels@hotmail.com'],
	#                          9: {   7: 3198,
	#                                 8: -18520376.22985,
	#                                 9: [   u'kutch.roderic@hotmail.com',
	#                                        datetime(1999, 1, 31, 15, 50, 22)]}}})

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'Et est et voluptas.',
	#     u'Quidem doloremque.',
	#     datetime(2008, 10, 2, 1, 34, 3),
	#     3675,
	#     u'http://turcotte.info/index/',
	#     u'tbradtke@feeneyweber.org',
	#     u'Laudantium nesciunt.',
	#     u'Ducimus fugiat.',
	#     Decimal('-9.25759599976E+14'),
	#     u'kiara.lakin@heathcote.com']

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   4096099983.42,
	#     u'Ipsa qui adipisci.',
	#     u'Culpa numquam.',
	#     9200,
	#     u'Ut rerum optio.',
	#     datetime(2010, 4, 22, 1, 17, 50),
	#     u'Voluptas quis ut.',
	#     u'Atque in sit esse.')

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([2916, u'http://www.welchkautzer.info/login.html', Decimal('-1761829818.0'), u'Tempore fugit.', u'http://kleinspencer.info/tags/list/main.php', 98707043.4024643, u'Debitis in suscipit.', -534773.5174269, -289.69854])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'accusamus': u'Sint facere qui.',
	#     u'architecto': datetime(1997, 3, 25, 20, 25, 53),
	#     u'autem': 1069,
	#     u'dolore': 436889374432691.0,
	#     u'dolorem': u'Fugiat qui sunt.',
	#     u'earum': u'Maxime aut iusto.',
	#     u'error': Decimal('-868042457.811'),
	#     u'harum': u'deshawn.kshlerin@ornwilliamson.net',
	#     u'impedit': u'Dignissimos a vitae.',
	#     u'minima': -85.72406734231,
	#     u'officiis': u'Rerum ea cum.',
	#     u'quod': Decimal('1830602884.79'),
	#     u'voluptas': u'scorkery@hotmail.com',
	#     u'voluptates': datetime(1982, 8, 9, 15, 3, 48)}

	fake.pyint()
	# 7798

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

::

	fake.ssn()
	# u'680 182 599 '

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

::

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

	fake.firefox()
	# u'Mozilla/5.0 (Windows 98; Win 9x 4.90; en-US; rv:1.9.1.20) Gecko/2014-03-28 09:49:47 Firefox/3.8'

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

	fake.opera()
	# u'Opera/9.22.(Windows 98; Win 9x 4.90; en-US) Presto/2.9.185 Version/12.00'

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

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

	fake.user_agent()
	# u'Mozilla/5.0 (Windows NT 5.01; it-IT; rv:1.9.1.20) Gecko/2015-04-18 04:02:33 Firefox/3.6.19'

	fake.chrome()
	# u'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5312 (KHTML, like Gecko) Chrome/15.0.839.0 Safari/5312'

	fake.linux_processor()
	# u'i686'

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

	fake.safari()
	# u'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_1 rv:2.0; sl-SI) AppleWebKit/533.37.2 (KHTML, like Gecko) Version/5.1 Safari/533.37.2'
