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.
Starting from version 4.0.0, Faker dropped support for Python 2 and only supports Python
3.5 and above. If you still need Python 2 compatibility, please install version 3.0.1 in the
meantime, and please consider updating your codebase to support Python 3 so you can enjoy the
latest features Faker has to offer. Please see the extended docs for more details, especially
if you are upgrading from version 2.0.4 and below as there might be breaking changes.
This package was also previously called fake-factory which was already deprecated by the end
of 2016, and much has changed since then, so please ensure that your project and its dependencies
do not depend on the old package.
Basic Usage
Install with pip:
pip install Faker
Use faker.Faker() to create and initialize a faker
generator, which can generate data by accessing properties named after
the type of data you want.
fromfakerimportFakerfake=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).
faker.Faker can take a locale as an argument, to return localized
data. If no localized provider is found, the factory falls back to the
default en_US locale.
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. Please don't hesitate to create a localized
provider for your own locale and submit a Pull Request (PR).
faker: is the script when installed in your environment, in
development you could use python -m faker instead
-h, --help: shows a help message
--version: shows the program's version number
-o FILENAME: redirects the output to the specified filename
-l {bg_BG,cs_CZ,...,zh_CN,zh_TW}: allows use of a localized
provider
-r REPEAT: will generate a specified number of outputs
-s SEP: will generate the specified separator after each
generated output
-i {my.custom_provider other.custom_provider} list of additional custom
providers to use. Note that is the import path of the package containing
your Provider class, not the custom Provider class itself.
fake: is the name of the fake to generate an output for, such as
name, address, or text
[fake argument ...]: optional arguments to pass to the fake (e.g. the
profile fake takes an optional list of comma separated field names as the
first argument)
fromfakerimportFakerfake=Faker()
# first, import a similar Provider or use the default onefromfaker.providersimportBaseProvider# create new provider classclassMyProvider(BaseProvider):
deffoo(self):
return'bar'# then add new provider to faker instancefake.add_provider(MyProvider)
# now you can use:fake.foo()
# 'bar'
How to customize the Lorem Provider
You can provide your own sets of words if you don't want to use the
default lorem ipsum one. The following example shows how to do it with a list of words picked from cakeipsum :
fromfakerimportFakerfake=Faker()
my_word_list= [
'danish','cheesecake','sugar',
'Lollipop','wafer','Gummies',
'sesame','Jelly','beans',
'pie','bar','Ice','oat' ]
fake.sentence()
# 'Expedita at beatae voluptatibus nulla omnis.'fake.sentence(ext_word_list=my_word_list)
# 'Oat beans oat Lollipop bar cheesecake.'
How to use with Factory Boy
Factory Boy already ships with integration with Faker. Simply use the
factory.Faker method of factory_boy:
By default all generators share the same instance of random.Random, which
can be accessed with from faker.generator import random. Using this may
be useful for plugins that want to affect all faker instances.
Seeding the Generator
When using Faker for unit testing, you will often want to generate the same
data set. For convenience, the generator also provide a seed() method,
which seeds the shared random number generator. Calling the same methods with
the same version of faker and seed produces the same results.
Each generator can also be switched to its own instance of random.Random,
separate to the shared one, by using the seed_instance() method, which acts
the same way. For example:
Please note that as we keep updating datasets, results are not guaranteed to be
consistent across patch versions. If you hardcode results in your test, make sure
you pinned the version of Faker down to the patch number.
If you are using pytest, you can seed the faker fixture by defining a faker_seed
fixture. Please check out the pytest fixture docs to learn more.
wbt5/faker
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 Faker, Perl Faker, and by Ruby Faker.
Compatibility
Starting from version
4.0.0
,Faker
dropped support for Python 2 and only supports Python 3.5 and above. If you still need Python 2 compatibility, please install version3.0.1
in the meantime, and please consider updating your codebase to support Python 3 so you can enjoy the latest featuresFaker
has to offer. Please see the extended docs for more details, especially if you are upgrading from version2.0.4
and below as there might be breaking changes.This package was also previously called
fake-factory
which was already deprecated by the end of 2016, and much has changed since then, so please ensure that your project and its dependencies do not depend on the old package.Basic Usage
Install with pip:
Use
faker.Faker()
to create and initialize a faker generator, which can generate data by accessing properties named after the type of data you want.Each call to method
fake.name()
yields a different (random) result. This is because faker forwardsfaker.Generator.method_name()
calls tofaker.Generator.format(method_name)
.Pytest fixtures
Faker
also has its ownpytest
plugin which provides afaker
fixture you can use in your tests. Please check out the pytest fixture docs to learn more.Providers
Each of the generator properties (like
name
,address
, andlorem
) are called "fake". A faker generator has many of them, packaged in "providers".Check the extended docs for a list of bundled providers and a list of community providers.
Localization
faker.Faker
can take a locale as an argument, to return localized data. If no localized provider is found, the factory falls back to the default en_US locale.faker.Faker
also supports multiple locales. New in v3.0.0.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. Please don't hesitate to create a localized provider for your own locale and submit a Pull Request (PR).
Included localized providers:
Command line usage
When installed, you can invoke faker from the command-line:
Where:
faker
: is the script when installed in your environment, in development you could usepython -m faker
instead-h
,--help
: shows a help message--version
: shows the program's version number-o FILENAME
: redirects the output to the specified filename-l {bg_BG,cs_CZ,...,zh_CN,zh_TW}
: allows use of a localized provider-r REPEAT
: will generate a specified number of outputs-s SEP
: will generate the specified separator after each generated output-i {my.custom_provider other.custom_provider}
list of additional custom providers to use. Note that is the import path of the package containing your Provider class, not the custom Provider class itself.fake
: is the name of the fake to generate an output for, such asname
,address
, ortext
[fake argument ...]
: optional arguments to pass to the fake (e.g. the profile fake takes an optional list of comma separated field names as the first argument)Examples:
How to create a Provider
How to customize the Lorem Provider
You can provide your own sets of words if you don't want to use the default lorem ipsum one. The following example shows how to do it with a list of words picked from cakeipsum :
How to use with Factory Boy
Factory Boy already ships with integration with
Faker
. Simply use thefactory.Faker
method offactory_boy
:Accessing the random instance
The
.random
property on the generator returns the instance ofrandom.Random
used to generate the values:By default all generators share the same instance of
random.Random
, which can be accessed withfrom faker.generator import random
. Using this may be useful for plugins that want to affect all faker instances.Seeding the Generator
When using Faker for unit testing, you will often want to generate the same data set. For convenience, the generator also provide a
seed()
method, which seeds the shared random number generator. Calling the same methods with the same version of faker and seed produces the same results.Each generator can also be switched to its own instance of
random.Random
, separate to the shared one, by using theseed_instance()
method, which acts the same way. For example:Please note that as we keep updating datasets, results are not guaranteed to be consistent across patch versions. If you hardcode results in your test, make sure you pinned the version of
Faker
down to the patch number.If you are using
pytest
, you can seed thefaker
fixture by defining afaker_seed
fixture. Please check out the pytest fixture docs to learn more.Tests
Run tests:
Write documentation for providers:
$ python -m faker > docs.txt
Contribute
Please see CONTRIBUTING.
License
Faker is released under the MIT License. See the bundled LICENSE file for details.
Credits