Metadata-Version: 1.1
Name: fake-factory
Version: 0.4.0
Summary: Faker is a Python package that generates fake data for you.
Home-page: http://github.com/joke2k/faker
Author: joke2k
Author-email: joke2k@gmail.com
License: MIT License
Description: 	_|_|_|_|          _|
        	_|        _|_|_|  _|  _|      _|_|    _|  _|_|
        	_|_|_|  _|    _|  _|_|      _|_|_|_|  _|_|
        	_|      _|    _|  _|  _|    _|        _|
        	_|        _|_|_|  _|    _|    _|_|_|  _|
        
        
        *Faker* is a Python package that generates fake data for you. Whether you need to bootstrap your database,
        create good-looking XML documents, fill-in your persistence to stress test it, or anonymize data taken from a production service,
        Faker is for you.
        
        Faker is heavily inspired by PHP's [Faker][php-faker], Perl's [Data::Faker][perl-faker], and by ruby's [Faker][ruby-faker].
        
        [![Build Status](https://travis-ci.org/joke2k/faker.png)](https://travis-ci.org/joke2k/faker)
        [![Requirements Status](https://requires.io/github/joke2k/faker/requirements.png?branch=master)](https://requires.io/github/joke2k/faker/requirements/?branch=master)
        [![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/joke2k/faker/trend.png)](https://bitdeli.com/free "Bitdeli Badge")
        [![Coverage Status](https://coveralls.io/repos/joke2k/faker/badge.png?branch=master)](https://coveralls.io/r/joke2k/faker?branch=master)
        [![PyPI version](https://badge.fury.io/py/fake-factory.png)](http://badge.fury.io/py/fake-factory)
        [![Downloads](https://pypip.in/d/fake-factory/badge.png)](https://crate.io/packages/fake-factory)
        
        For more details, see the [extended docs](http://fake-factory.readthedocs.org/en/latest/).
        
        ## Basic Usage
        
        Install with pip:
        
            pip install fake-factory
        
        Use `faker.Factory.create()` to create and initialize a faker generator, which can generate data by accessing properties named after the type of data you want.
        
        ```python
        
            from faker import Factory
            fake = Factory.create()
        
            # OR
            from faker import Faker
            fake = Faker()
        
            fake.name()
            # 'Lucy Cechtelar'
        
            fake.address()
            # "426 Jordy Lodge
            #  Cartwrightshire, SC 88120-6700"
        
            fake.text()
            # Sint velit eveniet. Rerum atque repellat voluptatem quia rerum. Numquam excepturi
            # beatae sint laudantium consequatur. Magni occaecati itaque sint et sit tempore. Nesciunt
            # amet quidem. Iusto deleniti cum autem ad quia aperiam.
            # A consectetur quos aliquam. In iste aliquid et aut similique suscipit. Consequatur qui
            # quaerat iste minus hic expedita. Consequuntur error magni et laboriosam. Aut aspernatur
            # voluptatem sit aliquam. Dolores voluptatum est.
            # Aut molestias et maxime. Fugit autem facilis quos vero. Eius quibusdam possimus est.
            # Ea quaerat et quisquam. Deleniti sunt quam. Adipisci consequatur id in occaecati.
            # Et sint et. Ut ducimus quod nemo ab voluptatum.
        ```
        
        Each call to method `fake.name()` yields a different (random) result.
        This is because faker forwards `faker.Generator.method_name()` calls to `faker.Generator.format(method_name)`.
        
        ```python
        
        for i in range(0,10):
          print fake.name()
        
        	# Adaline Reichel
        	# Dr. Santa Prosacco DVM
        	# Noemy Vandervort V
        	# Lexi O'Conner
        	# Gracie Weber
        	# Roscoe Johns
        	# Emmett Lebsack
        	# Keegan Thiel
        	# Wellington Koelpin II
        	# Ms. Karley Kiehn V
        ```
        
        ## Providers
        
        Each of the generator properties (like `name`, `address`, and `lorem`) are called "fake".
        A faker generator has many of them, packaged in "providers". Here is a list of the bundled formatters in the default locale.
        
        ## Localization
        
        `faker.Factory` can take a locale as an argument, to return localized data.
        If no localized provider is found, the factory fallbacks to the default locale (en_EN).
        
            from faker import Factory
            fake = Factory.create('it_IT')
            for i in range(0,10):
                print fake.name()
        
            > Elda Palumbo
            > Pacifico Giordano
            > Sig. Avide Guerra
            > Yago Amato
            > Eustachio Messina
            > Dott. Violante Lombardo
            > Sig. Alighieri Monti
            > Costanzo Costa
            > Nazzareno Barbieri
            > Max Coppola
        
        You can check available Faker locales in the source code, under the providers package.
        The localization of Faker is an ongoing process, for which we need your help.
        Don't hesitate to create localized providers to your own locale and submit a PR!
        
        Included localized providers:
        
        * [cs_CZ](http://fake-factory.readthedocs.org/en/latest/locales/cs_CZ.html)
        * [de_DE](http://fake-factory.readthedocs.org/en/latest/locales/de_DE.html)
        * [dk_DK](http://fake-factory.readthedocs.org/en/latest/locales/dk_DK.html)
        * [el_GR](http://fake-factory.readthedocs.org/en/latest/locales/el_GR.html)
        * [en_CA](http://fake-factory.readthedocs.org/en/latest/locales/en_CA.html)
        * [en_GB](http://fake-factory.readthedocs.org/en/latest/locales/en_GB.html)
        * [en_US](http://fake-factory.readthedocs.org/en/latest/locales/en_US.html)
        * [es_ES](http://fake-factory.readthedocs.org/en/latest/locales/es_ES.html)
        * [es_MX](http://fake-factory.readthedocs.org/en/latest/locales/es_MX.html)
        * [fa_IR](http://fake-factory.readthedocs.org/en/latest/locales/pl_PL.html)
        * [fi_FI](http://fake-factory.readthedocs.org/en/latest/locales/fi_FI.html)
        * [fr_FR](http://fake-factory.readthedocs.org/en/latest/locales/fr_FR.html)
        * [hi_IN](http://fake-factory.readthedocs.org/en/latest/locales/hi_IN.html)
        * [it_IT](http://fake-factory.readthedocs.org/en/latest/locales/it_IT.html)
        * [ko_KR](http://fake-factory.readthedocs.org/en/latest/locales/ko_KR.html)
        * [pl_PL](http://fake-factory.readthedocs.org/en/latest/locales/pl_PL.html)
        * [pt_BR](http://fake-factory.readthedocs.org/en/latest/locales/pt_BR.html)
        * [ru_RU](http://fake-factory.readthedocs.org/en/latest/locales/ru_RU.html)
        * [zh_CN](http://fake-factory.readthedocs.org/en/latest/locales/zh_CN.html)
        
        # Using from shell
        
        In a python environment with faker installed you can use it with:
        
            python -m faker [option] [*args]
        
        [option]:
        
        *  formatter name as `text`, `address`: display result of fake
        
        [*args]: pass value to formatter (actually only strings)
        
            $ python -m faker address
            968 Bahringer Garden Apt. 722
            Kristinaland, NJ 09890
        
        
        # How to create a Provider
        
            from faker import Faker
            fake = Faker()
        
            # first, import a similar Provider or use the default one
            from faker.providers import BaseProvider
        
            # create new provider class
            class MyProvider(BaseProvider):
                def foo(self):
                    return 'bar'
        
            # then add new provider to faker instance
            fake.add_provider(MyProvider)
        
            # now you can use:
            fake.foo()
            > 'bar'
        
        
        # Seeding the Generator
        
        You may want to get always the same generated data - for instance when using Faker for unit testing purposes.
        The generator offers a `seed()` method, which seeds the random number generator.
        Calling the same script twice with the same seed produces the same results.
        
            from faker import Faker
            fake = Faker()
            fake.seed(4321)
        
            print fake.name()   # Margaret Boehm
        
        
        
        # Tests
        
        Run tests:
        
            $ python setup.py test
        
        or
        
            $ python -m unittest -v faker.tests
        
        Write documentation for providers:
        
            $ python -m faker > docs.txt
        
        
        
        ## License
        
        Faker is released under the MIT Licence. See the bundled LICENSE file for details.
        
        
        Credits
        -------
        - [FZaninotto][fzaninotto] / [Faker][php-faker]
        - [Distribute][distribute]
        - [Buildout][buildout]
        - [modern-package-template][modern-package-template]
        
        [fzaninotto]: https://github.com/fzaninotto  "F.Zaninotto"
        [php-faker]: https://github.com/fzaninotto/Faker "Php faker"
        [perl-faker]: http://search.cpan.org/~jasonk/Data-Faker-0.07/ "Perl faker"
        [ruby-faker]: http://faker.rubyforge.org/ "Ruby faker"
        [buildout]: http://www.buildout.org/
        [distribute]:  http://pypi.python.org/pypi/distribute
        [modern-package-template]: http://pypi.python.org/pypi/modern-package-template
        
        
        
        
        News
        ====
        
        0.4
        ---
        
        * Modified en_US person.py to ouput female and male names. Thanks Adrian Klaver.
        * Added SSN provider for en_US and en_CA. Thanks Scott (@milliquet).
        * Added hi_IN localized provider. Thanks Pratik Kabra.
        * Refactoring of command line
        
        0.3.2
        ---
        
        * New provider: Credit card generator
        * Improved Documentor
        
        
        0.3.1
        ---
        
        * FIX setup.py
        
        
        0.3
        ---
        
        *Release date: 18-Oct-2014*
        
        * PEP8 style conversion (old camelCased methods are deprecated!)
        * New language: pt_BR (thanks to @rvnovaes)
        * all localized provider now uses `from __future__ import unicode_literals`
        * documentor prints localized provider after all defaults
        * FIX tests for python 2.6
        
        
        0.2
        ---
        
        *Release date: 01-Dic-2012*
        
        * New providers: Python, File
        * Providers imported with __import__
        * Module is runnable with python -m faker [name] [*args]
        * Rewrite fake generator system (allow autocompletation)
        * New language: Franch
        * Rewrite module __main__ and new Documentor class
        
        0.1
        ---
        
        *Release date: 13-Nov-2012*
        
        * First release
        
        
Keywords: faker fixtures data test mock generator
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: MIT License
