├── .bumpversion.cfg ├── .circleci └── config.yml ├── .coveragerc ├── .gitignore ├── .travis.yml ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── ISSUE_TEMPLATE.md ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── PULL_REQUEST_TEMPLATE.md ├── README.rst ├── appveyor.yml ├── docs ├── Makefile ├── coding_style.rst ├── communityproviders.rst ├── conf.py ├── index.rst ├── locales │ └── .happygit ├── make.bat └── providers │ └── .happygit ├── faker ├── __init__.py ├── __main__.py ├── build_docs.py ├── cli.py ├── compat.py ├── config.py ├── documentor.py ├── factory.py ├── generator.py ├── providers │ ├── __init__.py │ ├── address │ │ ├── __init__.py │ │ ├── cs_CZ │ │ │ └── __init__.py │ │ ├── de_AT │ │ │ └── __init__.py │ │ ├── de_DE │ │ │ └── __init__.py │ │ ├── el_GR │ │ │ └── __init__.py │ │ ├── en │ │ │ └── __init__.py │ │ ├── en_AU │ │ │ └── __init__.py │ │ ├── en_CA │ │ │ └── __init__.py │ │ ├── en_GB │ │ │ └── __init__.py │ │ ├── en_US │ │ │ └── __init__.py │ │ ├── es │ │ │ └── __init__.py │ │ ├── es_ES │ │ │ └── __init__.py │ │ ├── es_MX │ │ │ └── __init__.py │ │ ├── fa_IR │ │ │ └── __init__.py │ │ ├── fi_FI │ │ │ └── __init__.py │ │ ├── fr_CH │ │ │ └── __init__.py │ │ ├── fr_FR │ │ │ └── __init__.py │ │ ├── he_IL │ │ │ └── __init__.py │ │ ├── hi_IN │ │ │ └── __init__.py │ │ ├── hr_HR │ │ │ └── __init__.py │ │ ├── hu_HU │ │ │ └── __init__.py │ │ ├── id_ID │ │ │ └── __init__.py │ │ ├── it_IT │ │ │ └── __init__.py │ │ ├── ja_JP │ │ │ └── __init__.py │ │ ├── ka_GE │ │ │ └── __init__.py │ │ ├── ko_KR │ │ │ └── __init__.py │ │ ├── ne_NP │ │ │ └── __init__.py │ │ ├── nl_BE │ │ │ └── __init__.py │ │ ├── nl_NL │ │ │ └── __init__.py │ │ ├── no_NO │ │ │ └── __init__.py │ │ ├── pl_PL │ │ │ └── __init__.py │ │ ├── pt_BR │ │ │ └── __init__.py │ │ ├── pt_PT │ │ │ └── __init__.py │ │ ├── ru_RU │ │ │ └── __init__.py │ │ ├── sk_SK │ │ │ └── __init__.py │ │ ├── sl_SI │ │ │ └── __init__.py │ │ ├── sv_SE │ │ │ └── __init__.py │ │ ├── uk_UA │ │ │ └── __init__.py │ │ ├── zh_CN │ │ │ └── __init__.py │ │ └── zh_TW │ │ │ └── __init__.py │ ├── automotive │ │ ├── __init__.py │ │ ├── ar_JO │ │ │ └── __init__.py │ │ ├── ar_PS │ │ │ └── __init__.py │ │ ├── ar_SA │ │ │ └── __init__.py │ │ ├── de_DE │ │ │ └── __init__.py │ │ ├── en_CA │ │ │ └── __init__.py │ │ ├── en_GB │ │ │ └── __init__.py │ │ ├── en_US │ │ │ └── __init__.py │ │ ├── hu_HU │ │ │ └── __init__.py │ │ ├── id_ID │ │ │ └── __init__.py │ │ └── pt_BR │ │ │ └── __init__.py │ ├── bank │ │ ├── __init__.py │ │ ├── de_AT │ │ │ └── __init__.py │ │ ├── de_DE │ │ │ └── __init__.py │ │ ├── en_GB │ │ │ └── __init__.py │ │ ├── fr_FR │ │ │ └── __init__.py │ │ ├── it_IT │ │ │ └── __init__.py │ │ ├── nl_NL │ │ │ └── __init__.py │ │ └── no_NO │ │ │ └── __init__.py │ ├── barcode │ │ ├── __init__.py │ │ └── en_US │ │ │ └── __init__.py │ ├── color │ │ ├── __init__.py │ │ ├── ar_PS │ │ │ └── __init__.py │ │ ├── en_US │ │ │ └── __init__.py │ │ ├── fr_FR │ │ │ └── __init__.py │ │ ├── hr_HR │ │ │ └── __init__.py │ │ ├── hu_HU │ │ │ └── __init__.py │ │ ├── pt_BR │ │ │ └── __init__.py │ │ ├── ru_RU │ │ │ └── __init__.py │ │ └── uk_UA │ │ │ └── __init__.py │ ├── company │ │ ├── __init__.py │ │ ├── bg_BG │ │ │ └── __init__.py │ │ ├── cs_CZ │ │ │ └── __init__.py │ │ ├── de_DE │ │ │ └── __init__.py │ │ ├── en_US │ │ │ └── __init__.py │ │ ├── es_MX │ │ │ └── __init__.py │ │ ├── fa_IR │ │ │ └── __init__.py │ │ ├── fi_FI │ │ │ └── __init__.py │ │ ├── fr_CH │ │ │ └── __init__.py │ │ ├── fr_FR │ │ │ └── __init__.py │ │ ├── hr_HR │ │ │ └── __init__.py │ │ ├── hu_HU │ │ │ └── __init__.py │ │ ├── id_ID │ │ │ └── __init__.py │ │ ├── it_IT │ │ │ └── __init__.py │ │ ├── ja_JP │ │ │ └── __init__.py │ │ ├── ko_KR │ │ │ └── __init__.py │ │ ├── no_NO │ │ │ └── __init__.py │ │ ├── pl_PL │ │ │ └── __init__.py │ │ ├── pt_BR │ │ │ └── __init__.py │ │ ├── pt_PT │ │ │ └── __init__.py │ │ ├── ru_RU │ │ │ └── __init__.py │ │ ├── sk_SK │ │ │ └── __init__.py │ │ ├── sl_SI │ │ │ └── __init__.py │ │ ├── sv_SE │ │ │ └── __init__.py │ │ ├── zh_CN │ │ │ └── __init__.py │ │ └── zh_TW │ │ │ └── __init__.py │ ├── credit_card │ │ ├── __init__.py │ │ └── en_US │ │ │ └── __init__.py │ ├── currency │ │ ├── __init__.py │ │ └── en_US │ │ │ └── __init__.py │ ├── date_time │ │ ├── __init__.py │ │ ├── ar_AA │ │ │ └── __init__.py │ │ ├── ar_EG │ │ │ └── __init__.py │ │ ├── en_US │ │ │ └── __init__.py │ │ ├── fr_FR │ │ │ └── __init__.py │ │ ├── hr_HR │ │ │ └── __init__.py │ │ ├── hu_HU │ │ │ └── __init__.py │ │ ├── id_ID │ │ │ └── __init__.py │ │ ├── ko_KR │ │ │ └── __init__.py │ │ ├── pl_PL │ │ │ └── __init__.py │ │ ├── ru_RU │ │ │ └── __init__.py │ │ └── sl_SI │ │ │ └── __init__.py │ ├── file │ │ ├── __init__.py │ │ └── en_US │ │ │ └── __init__.py │ ├── internet │ │ ├── __init__.py │ │ ├── ar_AA │ │ │ └── __init__.py │ │ ├── bg_BG │ │ │ └── __init__.py │ │ ├── bs_BA │ │ │ └── __init__.py │ │ ├── cs_CZ │ │ │ └── __init__.py │ │ ├── de_AT │ │ │ └── __init__.py │ │ ├── de_DE │ │ │ └── __init__.py │ │ ├── el_GR │ │ │ └── __init__.py │ │ ├── en_AU │ │ │ └── __init__.py │ │ ├── en_US │ │ │ └── __init__.py │ │ ├── fa_IR │ │ │ └── __init__.py │ │ ├── fi_FI │ │ │ └── __init__.py │ │ ├── fr_CH │ │ │ └── __init__.py │ │ ├── fr_FR │ │ │ └── __init__.py │ │ ├── hr_HR │ │ │ └── __init__.py │ │ ├── hu_HU │ │ │ └── __init__.py │ │ ├── id_ID │ │ │ └── __init__.py │ │ ├── it_IT │ │ │ └── __init__.py │ │ ├── ja_JP │ │ │ └── __init__.py │ │ ├── ko_KR │ │ │ └── __init__.py │ │ ├── no_NO │ │ │ └── __init__.py │ │ ├── pl_PL │ │ │ └── __init__.py │ │ ├── pt_BR │ │ │ └── __init__.py │ │ ├── pt_PT │ │ │ └── __init__.py │ │ ├── ru_RU │ │ │ └── __init__.py │ │ ├── sk_SK │ │ │ └── __init__.py │ │ ├── sl_SI │ │ │ └── __init__.py │ │ ├── sv_SE │ │ │ └── __init__.py │ │ ├── uk_UA │ │ │ └── __init__.py │ │ ├── zh_CN │ │ │ └── __init__.py │ │ └── zh_TW │ │ │ └── __init__.py │ ├── isbn │ │ ├── __init__.py │ │ ├── en_US │ │ │ └── __init__.py │ │ ├── isbn.py │ │ └── rules.py │ ├── job │ │ ├── __init__.py │ │ ├── ar_AA │ │ │ └── __init__.py │ │ ├── en_US │ │ │ └── __init__.py │ │ ├── fa_IR │ │ │ └── __init__.py │ │ ├── fi_FI │ │ │ └── __init__.py │ │ ├── fr_CH │ │ │ └── __init__.py │ │ ├── fr_FR │ │ │ └── __init__.py │ │ ├── hr_HR │ │ │ └── __init__.py │ │ ├── hu_HU │ │ │ └── __init__.py │ │ ├── ko_KR │ │ │ └── __init__.py │ │ ├── pl_PL │ │ │ └── __init__.py │ │ ├── pt_BR │ │ │ └── __init__.py │ │ ├── ru_RU │ │ │ └── __init__.py │ │ ├── uk_UA │ │ │ └── __init__.py │ │ ├── zh_CN │ │ │ └── __init__.py │ │ └── zh_TW │ │ │ └── __init__.py │ ├── lorem │ │ ├── __init__.py │ │ ├── ar_AA │ │ │ └── __init__.py │ │ ├── el_GR │ │ │ └── __init__.py │ │ ├── en_US │ │ │ └── __init__.py │ │ ├── he_IL │ │ │ └── __init__.py │ │ ├── ja_JP │ │ │ └── __init__.py │ │ ├── la │ │ │ └── __init__.py │ │ ├── ru_RU │ │ │ └── __init__.py │ │ ├── zh_CN │ │ │ └── __init__.py │ │ └── zh_TW │ │ │ └── __init__.py │ ├── misc │ │ ├── __init__.py │ │ └── en_US │ │ │ └── __init__.py │ ├── person │ │ ├── __init__.py │ │ ├── ar_AA │ │ │ └── __init__.py │ │ ├── ar_PS │ │ │ └── __init__.py │ │ ├── ar_SA │ │ │ └── __init__.py │ │ ├── bg_BG │ │ │ └── __init__.py │ │ ├── cs_CZ │ │ │ └── __init__.py │ │ ├── de_AT │ │ │ └── __init__.py │ │ ├── de_CH │ │ │ └── __init__.py │ │ ├── de_DE │ │ │ └── __init__.py │ │ ├── dk_DK │ │ │ └── __init__.py │ │ ├── el_GR │ │ │ └── __init__.py │ │ ├── en │ │ │ └── __init__.py │ │ ├── en_GB │ │ │ └── __init__.py │ │ ├── en_TH │ │ │ └── __init__.py │ │ ├── en_US │ │ │ └── __init__.py │ │ ├── es_ES │ │ │ └── __init__.py │ │ ├── es_MX │ │ │ └── __init__.py │ │ ├── et_EE │ │ │ └── __init__.py │ │ ├── fa_IR │ │ │ └── __init__.py │ │ ├── fi_FI │ │ │ └── __init__.py │ │ ├── fr_CH │ │ │ └── __init__.py │ │ ├── fr_FR │ │ │ └── __init__.py │ │ ├── he_IL │ │ │ └── __init__.py │ │ ├── hi_IN │ │ │ └── __init__.py │ │ ├── hr_HR │ │ │ └── __init__.py │ │ ├── hu_HU │ │ │ └── __init__.py │ │ ├── id_ID │ │ │ └── __init__.py │ │ ├── it_IT │ │ │ └── __init__.py │ │ ├── ja_JP │ │ │ └── __init__.py │ │ ├── ka_GE │ │ │ └── __init__.py │ │ ├── ko_KR │ │ │ └── __init__.py │ │ ├── lt_LT │ │ │ └── __init__.py │ │ ├── lv_LV │ │ │ └── __init__.py │ │ ├── ne_NP │ │ │ └── __init__.py │ │ ├── nl_NL │ │ │ └── __init__.py │ │ ├── no_NO │ │ │ └── __init__.py │ │ ├── pl_PL │ │ │ └── __init__.py │ │ ├── pt_BR │ │ │ └── __init__.py │ │ ├── pt_PT │ │ │ └── __init__.py │ │ ├── ro_RO │ │ │ └── __init__.py │ │ ├── ru_RU │ │ │ └── __init__.py │ │ ├── sl_SI │ │ │ └── __init__.py │ │ ├── sv_SE │ │ │ └── __init__.py │ │ ├── th_TH │ │ │ └── __init__.py │ │ ├── tr_TR │ │ │ └── __init__.py │ │ ├── tw_GH │ │ │ └── __init__.py │ │ ├── uk_UA │ │ │ └── __init__.py │ │ ├── zh_CN │ │ │ └── __init__.py │ │ └── zh_TW │ │ │ └── __init__.py │ ├── phone_number │ │ ├── __init__.py │ │ ├── ar_JO │ │ │ └── __init__.py │ │ ├── ar_PS │ │ │ └── __init__.py │ │ ├── bg_BG │ │ │ └── __init__.py │ │ ├── bs_BA │ │ │ └── __init__.py │ │ ├── cs_CZ │ │ │ └── __init__.py │ │ ├── de_DE │ │ │ └── __init__.py │ │ ├── dk_DK │ │ │ └── __init__.py │ │ ├── el_GR │ │ │ └── __init__.py │ │ ├── en_AU │ │ │ └── __init__.py │ │ ├── en_CA │ │ │ └── __init__.py │ │ ├── en_GB │ │ │ └── __init__.py │ │ ├── en_US │ │ │ └── __init__.py │ │ ├── es_ES │ │ │ └── __init__.py │ │ ├── es_MX │ │ │ └── __init__.py │ │ ├── fa_IR │ │ │ └── __init__.py │ │ ├── fi_FI │ │ │ └── __init__.py │ │ ├── fr_CH │ │ │ └── __init__.py │ │ ├── fr_FR │ │ │ └── __init__.py │ │ ├── he_IL │ │ │ └── __init__.py │ │ ├── hi_IN │ │ │ └── __init__.py │ │ ├── hr_HR │ │ │ └── __init__.py │ │ ├── hu_HU │ │ │ └── __init__.py │ │ ├── id_ID │ │ │ └── __init__.py │ │ ├── it_IT │ │ │ └── __init__.py │ │ ├── ja_JP │ │ │ └── __init__.py │ │ ├── ko_KR │ │ │ └── __init__.py │ │ ├── lt_LT │ │ │ └── __init__.py │ │ ├── lv_LV │ │ │ └── __init__.py │ │ ├── ne_NP │ │ │ └── __init__.py │ │ ├── nl_BE │ │ │ └── __init__.py │ │ ├── nl_NL │ │ │ └── __init__.py │ │ ├── no_NO │ │ │ └── __init__.py │ │ ├── pl_PL │ │ │ └── __init__.py │ │ ├── pt_BR │ │ │ └── __init__.py │ │ ├── pt_PT │ │ │ └── __init__.py │ │ ├── ru_RU │ │ │ └── __init__.py │ │ ├── sk_SK │ │ │ └── __init__.py │ │ ├── sl_SI │ │ │ └── __init__.py │ │ ├── sv_SE │ │ │ └── __init__.py │ │ ├── tr_TR │ │ │ └── __init__.py │ │ ├── tw_GH │ │ │ └── __init__.py │ │ ├── uk_UA │ │ │ └── __init__.py │ │ ├── zh_CN │ │ │ └── __init__.py │ │ └── zh_TW │ │ │ └── __init__.py │ ├── profile │ │ ├── __init__.py │ │ └── en_US │ │ │ └── __init__.py │ ├── python │ │ ├── __init__.py │ │ └── en_US │ │ │ └── __init__.py │ ├── ssn │ │ ├── __init__.py │ │ ├── en_CA │ │ │ └── __init__.py │ │ ├── en_GB │ │ │ └── __init__.py │ │ ├── en_US │ │ │ └── __init__.py │ │ ├── et_EE │ │ │ └── __init__.py │ │ ├── fi_FI │ │ │ └── __init__.py │ │ ├── fr_CH │ │ │ └── __init__.py │ │ ├── he_IL │ │ │ └── __init__.py │ │ ├── hr_HR │ │ │ └── __init__.py │ │ ├── hu_HU │ │ │ └── __init__.py │ │ ├── it_IT │ │ │ └── __init__.py │ │ ├── ko_KR │ │ │ └── __init__.py │ │ ├── nl_BE │ │ │ └── __init__.py │ │ ├── nl_NL │ │ │ └── __init__.py │ │ ├── no_NO │ │ │ └── __init__.py │ │ ├── pl_PL │ │ │ └── __init__.py │ │ ├── pt_BR │ │ │ └── __init__.py │ │ ├── ru_RU │ │ │ └── __init__.py │ │ ├── sv_SE │ │ │ └── __init__.py │ │ ├── uk_UA │ │ │ └── __init__.py │ │ ├── zh_CN │ │ │ └── __init__.py │ │ └── zh_TW │ │ │ └── __init__.py │ └── user_agent │ │ ├── __init__.py │ │ └── en_US │ │ └── __init__.py └── utils │ ├── __init__.py │ ├── datasets.py │ ├── datetime_safe.py │ ├── decorators.py │ ├── distribution.py │ ├── loading.py │ └── text.py ├── readthedocs.yml ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── mymodule │ ├── __init__.py │ └── en_US │ │ └── __init__.py ├── providers │ ├── __init__.py │ ├── test_address.py │ ├── test_automotive.py │ ├── test_bank.py │ ├── test_color.py │ ├── test_company.py │ ├── test_currency.py │ ├── test_date_time.py │ ├── test_file.py │ ├── test_internet.py │ ├── test_isbn.py │ ├── test_job.py │ ├── test_person.py │ ├── test_phone_number.py │ └── test_ssn.py ├── requirements.txt ├── test_base_provider.py ├── test_factory.py ├── test_generator.py └── utils │ ├── __init__.py │ ├── random_state.json │ └── test_utils.py └── tox.ini /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/Makefile -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/README.rst -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/appveyor.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/coding_style.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/docs/coding_style.rst -------------------------------------------------------------------------------- /docs/communityproviders.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/docs/communityproviders.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/locales/.happygit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/docs/locales/.happygit -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/providers/.happygit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/docs/providers/.happygit -------------------------------------------------------------------------------- /faker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/__init__.py -------------------------------------------------------------------------------- /faker/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/__main__.py -------------------------------------------------------------------------------- /faker/build_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/build_docs.py -------------------------------------------------------------------------------- /faker/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/cli.py -------------------------------------------------------------------------------- /faker/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/compat.py -------------------------------------------------------------------------------- /faker/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/config.py -------------------------------------------------------------------------------- /faker/documentor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/documentor.py -------------------------------------------------------------------------------- /faker/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/factory.py -------------------------------------------------------------------------------- /faker/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/generator.py -------------------------------------------------------------------------------- /faker/providers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/cs_CZ/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/cs_CZ/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/de_AT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/de_AT/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/de_DE/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/de_DE/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/el_GR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/el_GR/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/en/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/en/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/en_AU/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/en_AU/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/en_CA/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/en_CA/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/en_GB/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/en_GB/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/en_US/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/en_US/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/es/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/es/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/es_ES/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/es_ES/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/es_MX/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/es_MX/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/fa_IR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/fa_IR/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/fi_FI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/fi_FI/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/fr_CH/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/fr_CH/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/fr_FR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/fr_FR/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/he_IL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/he_IL/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/hi_IN/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/hi_IN/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/hr_HR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/hr_HR/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/hu_HU/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/hu_HU/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/id_ID/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/id_ID/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/it_IT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/it_IT/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/ja_JP/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/ja_JP/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/ka_GE/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/ka_GE/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/ko_KR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/ko_KR/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/ne_NP/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/ne_NP/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/nl_BE/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/nl_BE/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/nl_NL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/nl_NL/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/no_NO/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/no_NO/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/pl_PL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/pl_PL/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/pt_BR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/pt_BR/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/pt_PT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/pt_PT/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/ru_RU/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/ru_RU/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/sk_SK/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/sk_SK/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/sl_SI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/sl_SI/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/sv_SE/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/sv_SE/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/uk_UA/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/uk_UA/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/zh_CN/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/zh_CN/__init__.py -------------------------------------------------------------------------------- /faker/providers/address/zh_TW/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/address/zh_TW/__init__.py -------------------------------------------------------------------------------- /faker/providers/automotive/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/automotive/__init__.py -------------------------------------------------------------------------------- /faker/providers/automotive/ar_JO/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/automotive/ar_JO/__init__.py -------------------------------------------------------------------------------- /faker/providers/automotive/ar_PS/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/automotive/ar_PS/__init__.py -------------------------------------------------------------------------------- /faker/providers/automotive/ar_SA/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/automotive/ar_SA/__init__.py -------------------------------------------------------------------------------- /faker/providers/automotive/de_DE/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/automotive/de_DE/__init__.py -------------------------------------------------------------------------------- /faker/providers/automotive/en_CA/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/automotive/en_CA/__init__.py -------------------------------------------------------------------------------- /faker/providers/automotive/en_GB/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/automotive/en_GB/__init__.py -------------------------------------------------------------------------------- /faker/providers/automotive/en_US/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/automotive/en_US/__init__.py -------------------------------------------------------------------------------- /faker/providers/automotive/hu_HU/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/automotive/hu_HU/__init__.py -------------------------------------------------------------------------------- /faker/providers/automotive/id_ID/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/automotive/id_ID/__init__.py -------------------------------------------------------------------------------- /faker/providers/automotive/pt_BR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/automotive/pt_BR/__init__.py -------------------------------------------------------------------------------- /faker/providers/bank/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/bank/__init__.py -------------------------------------------------------------------------------- /faker/providers/bank/de_AT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/bank/de_AT/__init__.py -------------------------------------------------------------------------------- /faker/providers/bank/de_DE/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/bank/de_DE/__init__.py -------------------------------------------------------------------------------- /faker/providers/bank/en_GB/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/bank/en_GB/__init__.py -------------------------------------------------------------------------------- /faker/providers/bank/fr_FR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/bank/fr_FR/__init__.py -------------------------------------------------------------------------------- /faker/providers/bank/it_IT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/bank/it_IT/__init__.py -------------------------------------------------------------------------------- /faker/providers/bank/nl_NL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/bank/nl_NL/__init__.py -------------------------------------------------------------------------------- /faker/providers/bank/no_NO/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/bank/no_NO/__init__.py -------------------------------------------------------------------------------- /faker/providers/barcode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/barcode/__init__.py -------------------------------------------------------------------------------- /faker/providers/barcode/en_US/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/barcode/en_US/__init__.py -------------------------------------------------------------------------------- /faker/providers/color/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/color/__init__.py -------------------------------------------------------------------------------- /faker/providers/color/ar_PS/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/color/ar_PS/__init__.py -------------------------------------------------------------------------------- /faker/providers/color/en_US/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/color/en_US/__init__.py -------------------------------------------------------------------------------- /faker/providers/color/fr_FR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/color/fr_FR/__init__.py -------------------------------------------------------------------------------- /faker/providers/color/hr_HR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/color/hr_HR/__init__.py -------------------------------------------------------------------------------- /faker/providers/color/hu_HU/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/color/hu_HU/__init__.py -------------------------------------------------------------------------------- /faker/providers/color/pt_BR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/color/pt_BR/__init__.py -------------------------------------------------------------------------------- /faker/providers/color/ru_RU/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/color/ru_RU/__init__.py -------------------------------------------------------------------------------- /faker/providers/color/uk_UA/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/color/uk_UA/__init__.py -------------------------------------------------------------------------------- /faker/providers/company/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/company/__init__.py -------------------------------------------------------------------------------- /faker/providers/company/bg_BG/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/company/bg_BG/__init__.py -------------------------------------------------------------------------------- /faker/providers/company/cs_CZ/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/company/cs_CZ/__init__.py -------------------------------------------------------------------------------- /faker/providers/company/de_DE/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/company/de_DE/__init__.py -------------------------------------------------------------------------------- /faker/providers/company/en_US/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/company/en_US/__init__.py -------------------------------------------------------------------------------- /faker/providers/company/es_MX/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/company/es_MX/__init__.py -------------------------------------------------------------------------------- /faker/providers/company/fa_IR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/company/fa_IR/__init__.py -------------------------------------------------------------------------------- /faker/providers/company/fi_FI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/company/fi_FI/__init__.py -------------------------------------------------------------------------------- /faker/providers/company/fr_CH/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/company/fr_CH/__init__.py -------------------------------------------------------------------------------- /faker/providers/company/fr_FR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/company/fr_FR/__init__.py -------------------------------------------------------------------------------- /faker/providers/company/hr_HR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/company/hr_HR/__init__.py -------------------------------------------------------------------------------- /faker/providers/company/hu_HU/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/company/hu_HU/__init__.py -------------------------------------------------------------------------------- /faker/providers/company/id_ID/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/company/id_ID/__init__.py -------------------------------------------------------------------------------- /faker/providers/company/it_IT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/company/it_IT/__init__.py -------------------------------------------------------------------------------- /faker/providers/company/ja_JP/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/company/ja_JP/__init__.py -------------------------------------------------------------------------------- /faker/providers/company/ko_KR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/company/ko_KR/__init__.py -------------------------------------------------------------------------------- /faker/providers/company/no_NO/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/company/no_NO/__init__.py -------------------------------------------------------------------------------- /faker/providers/company/pl_PL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/company/pl_PL/__init__.py -------------------------------------------------------------------------------- /faker/providers/company/pt_BR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/company/pt_BR/__init__.py -------------------------------------------------------------------------------- /faker/providers/company/pt_PT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/company/pt_PT/__init__.py -------------------------------------------------------------------------------- /faker/providers/company/ru_RU/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/company/ru_RU/__init__.py -------------------------------------------------------------------------------- /faker/providers/company/sk_SK/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/company/sk_SK/__init__.py -------------------------------------------------------------------------------- /faker/providers/company/sl_SI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/company/sl_SI/__init__.py -------------------------------------------------------------------------------- /faker/providers/company/sv_SE/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/company/sv_SE/__init__.py -------------------------------------------------------------------------------- /faker/providers/company/zh_CN/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/company/zh_CN/__init__.py -------------------------------------------------------------------------------- /faker/providers/company/zh_TW/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/company/zh_TW/__init__.py -------------------------------------------------------------------------------- /faker/providers/credit_card/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/credit_card/__init__.py -------------------------------------------------------------------------------- /faker/providers/credit_card/en_US/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/credit_card/en_US/__init__.py -------------------------------------------------------------------------------- /faker/providers/currency/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/currency/__init__.py -------------------------------------------------------------------------------- /faker/providers/currency/en_US/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/currency/en_US/__init__.py -------------------------------------------------------------------------------- /faker/providers/date_time/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/date_time/__init__.py -------------------------------------------------------------------------------- /faker/providers/date_time/ar_AA/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/date_time/ar_AA/__init__.py -------------------------------------------------------------------------------- /faker/providers/date_time/ar_EG/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/date_time/ar_EG/__init__.py -------------------------------------------------------------------------------- /faker/providers/date_time/en_US/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/date_time/en_US/__init__.py -------------------------------------------------------------------------------- /faker/providers/date_time/fr_FR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/date_time/fr_FR/__init__.py -------------------------------------------------------------------------------- /faker/providers/date_time/hr_HR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/date_time/hr_HR/__init__.py -------------------------------------------------------------------------------- /faker/providers/date_time/hu_HU/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/date_time/hu_HU/__init__.py -------------------------------------------------------------------------------- /faker/providers/date_time/id_ID/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/date_time/id_ID/__init__.py -------------------------------------------------------------------------------- /faker/providers/date_time/ko_KR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/date_time/ko_KR/__init__.py -------------------------------------------------------------------------------- /faker/providers/date_time/pl_PL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/date_time/pl_PL/__init__.py -------------------------------------------------------------------------------- /faker/providers/date_time/ru_RU/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/date_time/ru_RU/__init__.py -------------------------------------------------------------------------------- /faker/providers/date_time/sl_SI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/date_time/sl_SI/__init__.py -------------------------------------------------------------------------------- /faker/providers/file/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/file/__init__.py -------------------------------------------------------------------------------- /faker/providers/file/en_US/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/file/en_US/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/ar_AA/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/ar_AA/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/bg_BG/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/bg_BG/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/bs_BA/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/bs_BA/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/cs_CZ/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/cs_CZ/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/de_AT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/de_AT/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/de_DE/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/de_DE/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/el_GR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/el_GR/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/en_AU/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/en_AU/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/en_US/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/en_US/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/fa_IR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/fa_IR/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/fi_FI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/fi_FI/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/fr_CH/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/fr_CH/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/fr_FR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/fr_FR/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/hr_HR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/hr_HR/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/hu_HU/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/hu_HU/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/id_ID/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/id_ID/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/it_IT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/it_IT/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/ja_JP/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/ja_JP/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/ko_KR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/ko_KR/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/no_NO/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/no_NO/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/pl_PL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/pl_PL/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/pt_BR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/pt_BR/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/pt_PT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/pt_PT/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/ru_RU/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/ru_RU/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/sk_SK/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/sk_SK/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/sl_SI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/sl_SI/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/sv_SE/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/sv_SE/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/uk_UA/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/uk_UA/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/zh_CN/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/zh_CN/__init__.py -------------------------------------------------------------------------------- /faker/providers/internet/zh_TW/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/internet/zh_TW/__init__.py -------------------------------------------------------------------------------- /faker/providers/isbn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/isbn/__init__.py -------------------------------------------------------------------------------- /faker/providers/isbn/en_US/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/isbn/en_US/__init__.py -------------------------------------------------------------------------------- /faker/providers/isbn/isbn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/isbn/isbn.py -------------------------------------------------------------------------------- /faker/providers/isbn/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/isbn/rules.py -------------------------------------------------------------------------------- /faker/providers/job/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/job/__init__.py -------------------------------------------------------------------------------- /faker/providers/job/ar_AA/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/job/ar_AA/__init__.py -------------------------------------------------------------------------------- /faker/providers/job/en_US/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/job/en_US/__init__.py -------------------------------------------------------------------------------- /faker/providers/job/fa_IR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/job/fa_IR/__init__.py -------------------------------------------------------------------------------- /faker/providers/job/fi_FI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/job/fi_FI/__init__.py -------------------------------------------------------------------------------- /faker/providers/job/fr_CH/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/job/fr_CH/__init__.py -------------------------------------------------------------------------------- /faker/providers/job/fr_FR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/job/fr_FR/__init__.py -------------------------------------------------------------------------------- /faker/providers/job/hr_HR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/job/hr_HR/__init__.py -------------------------------------------------------------------------------- /faker/providers/job/hu_HU/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/job/hu_HU/__init__.py -------------------------------------------------------------------------------- /faker/providers/job/ko_KR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/job/ko_KR/__init__.py -------------------------------------------------------------------------------- /faker/providers/job/pl_PL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/job/pl_PL/__init__.py -------------------------------------------------------------------------------- /faker/providers/job/pt_BR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/job/pt_BR/__init__.py -------------------------------------------------------------------------------- /faker/providers/job/ru_RU/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/job/ru_RU/__init__.py -------------------------------------------------------------------------------- /faker/providers/job/uk_UA/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/job/uk_UA/__init__.py -------------------------------------------------------------------------------- /faker/providers/job/zh_CN/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/job/zh_CN/__init__.py -------------------------------------------------------------------------------- /faker/providers/job/zh_TW/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/job/zh_TW/__init__.py -------------------------------------------------------------------------------- /faker/providers/lorem/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/lorem/__init__.py -------------------------------------------------------------------------------- /faker/providers/lorem/ar_AA/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/lorem/ar_AA/__init__.py -------------------------------------------------------------------------------- /faker/providers/lorem/el_GR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/lorem/el_GR/__init__.py -------------------------------------------------------------------------------- /faker/providers/lorem/en_US/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/lorem/en_US/__init__.py -------------------------------------------------------------------------------- /faker/providers/lorem/he_IL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/lorem/he_IL/__init__.py -------------------------------------------------------------------------------- /faker/providers/lorem/ja_JP/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/lorem/ja_JP/__init__.py -------------------------------------------------------------------------------- /faker/providers/lorem/la/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/lorem/la/__init__.py -------------------------------------------------------------------------------- /faker/providers/lorem/ru_RU/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/lorem/ru_RU/__init__.py -------------------------------------------------------------------------------- /faker/providers/lorem/zh_CN/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/lorem/zh_CN/__init__.py -------------------------------------------------------------------------------- /faker/providers/lorem/zh_TW/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/lorem/zh_TW/__init__.py -------------------------------------------------------------------------------- /faker/providers/misc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/misc/__init__.py -------------------------------------------------------------------------------- /faker/providers/misc/en_US/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/misc/en_US/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/ar_AA/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/ar_AA/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/ar_PS/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/ar_PS/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/ar_SA/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/ar_SA/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/bg_BG/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/bg_BG/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/cs_CZ/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/cs_CZ/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/de_AT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/de_AT/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/de_CH/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/de_CH/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/de_DE/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/de_DE/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/dk_DK/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/dk_DK/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/el_GR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/el_GR/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/en/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/en/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/en_GB/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/en_GB/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/en_TH/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/en_TH/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/en_US/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/en_US/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/es_ES/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/es_ES/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/es_MX/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/es_MX/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/et_EE/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/et_EE/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/fa_IR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/fa_IR/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/fi_FI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/fi_FI/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/fr_CH/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/fr_CH/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/fr_FR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/fr_FR/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/he_IL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/he_IL/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/hi_IN/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/hi_IN/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/hr_HR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/hr_HR/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/hu_HU/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/hu_HU/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/id_ID/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/id_ID/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/it_IT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/it_IT/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/ja_JP/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/ja_JP/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/ka_GE/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/ka_GE/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/ko_KR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/ko_KR/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/lt_LT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/lt_LT/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/lv_LV/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/lv_LV/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/ne_NP/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/ne_NP/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/nl_NL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/nl_NL/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/no_NO/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/no_NO/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/pl_PL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/pl_PL/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/pt_BR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/pt_BR/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/pt_PT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/pt_PT/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/ro_RO/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/ro_RO/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/ru_RU/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/ru_RU/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/sl_SI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/sl_SI/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/sv_SE/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/sv_SE/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/th_TH/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/th_TH/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/tr_TR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/tr_TR/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/tw_GH/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/tw_GH/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/uk_UA/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/uk_UA/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/zh_CN/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/zh_CN/__init__.py -------------------------------------------------------------------------------- /faker/providers/person/zh_TW/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/person/zh_TW/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/ar_JO/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/ar_JO/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/ar_PS/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/ar_PS/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/bg_BG/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/bg_BG/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/bs_BA/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/bs_BA/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/cs_CZ/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/cs_CZ/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/de_DE/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/de_DE/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/dk_DK/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/dk_DK/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/el_GR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/el_GR/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/en_AU/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/en_AU/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/en_CA/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/en_CA/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/en_GB/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/en_GB/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/en_US/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/en_US/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/es_ES/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/es_ES/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/es_MX/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/es_MX/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/fa_IR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/fa_IR/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/fi_FI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/fi_FI/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/fr_CH/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/fr_CH/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/fr_FR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/fr_FR/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/he_IL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/he_IL/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/hi_IN/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/hi_IN/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/hr_HR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/hr_HR/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/hu_HU/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/hu_HU/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/id_ID/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/id_ID/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/it_IT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/it_IT/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/ja_JP/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/ja_JP/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/ko_KR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/ko_KR/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/lt_LT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/lt_LT/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/lv_LV/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/lv_LV/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/ne_NP/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/ne_NP/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/nl_BE/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/nl_BE/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/nl_NL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/nl_NL/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/no_NO/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/no_NO/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/pl_PL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/pl_PL/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/pt_BR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/pt_BR/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/pt_PT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/pt_PT/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/ru_RU/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/ru_RU/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/sk_SK/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/sk_SK/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/sl_SI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/sl_SI/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/sv_SE/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/sv_SE/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/tr_TR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/tr_TR/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/tw_GH/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/tw_GH/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/uk_UA/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/uk_UA/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/zh_CN/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/zh_CN/__init__.py -------------------------------------------------------------------------------- /faker/providers/phone_number/zh_TW/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/phone_number/zh_TW/__init__.py -------------------------------------------------------------------------------- /faker/providers/profile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/profile/__init__.py -------------------------------------------------------------------------------- /faker/providers/profile/en_US/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/profile/en_US/__init__.py -------------------------------------------------------------------------------- /faker/providers/python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/python/__init__.py -------------------------------------------------------------------------------- /faker/providers/python/en_US/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/python/en_US/__init__.py -------------------------------------------------------------------------------- /faker/providers/ssn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/ssn/__init__.py -------------------------------------------------------------------------------- /faker/providers/ssn/en_CA/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/ssn/en_CA/__init__.py -------------------------------------------------------------------------------- /faker/providers/ssn/en_GB/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/ssn/en_GB/__init__.py -------------------------------------------------------------------------------- /faker/providers/ssn/en_US/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/ssn/en_US/__init__.py -------------------------------------------------------------------------------- /faker/providers/ssn/et_EE/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/ssn/et_EE/__init__.py -------------------------------------------------------------------------------- /faker/providers/ssn/fi_FI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/ssn/fi_FI/__init__.py -------------------------------------------------------------------------------- /faker/providers/ssn/fr_CH/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/ssn/fr_CH/__init__.py -------------------------------------------------------------------------------- /faker/providers/ssn/he_IL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/ssn/he_IL/__init__.py -------------------------------------------------------------------------------- /faker/providers/ssn/hr_HR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/ssn/hr_HR/__init__.py -------------------------------------------------------------------------------- /faker/providers/ssn/hu_HU/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/ssn/hu_HU/__init__.py -------------------------------------------------------------------------------- /faker/providers/ssn/it_IT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/ssn/it_IT/__init__.py -------------------------------------------------------------------------------- /faker/providers/ssn/ko_KR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/ssn/ko_KR/__init__.py -------------------------------------------------------------------------------- /faker/providers/ssn/nl_BE/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/ssn/nl_BE/__init__.py -------------------------------------------------------------------------------- /faker/providers/ssn/nl_NL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/ssn/nl_NL/__init__.py -------------------------------------------------------------------------------- /faker/providers/ssn/no_NO/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/ssn/no_NO/__init__.py -------------------------------------------------------------------------------- /faker/providers/ssn/pl_PL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/ssn/pl_PL/__init__.py -------------------------------------------------------------------------------- /faker/providers/ssn/pt_BR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/ssn/pt_BR/__init__.py -------------------------------------------------------------------------------- /faker/providers/ssn/ru_RU/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/ssn/ru_RU/__init__.py -------------------------------------------------------------------------------- /faker/providers/ssn/sv_SE/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/ssn/sv_SE/__init__.py -------------------------------------------------------------------------------- /faker/providers/ssn/uk_UA/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/ssn/uk_UA/__init__.py -------------------------------------------------------------------------------- /faker/providers/ssn/zh_CN/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/ssn/zh_CN/__init__.py -------------------------------------------------------------------------------- /faker/providers/ssn/zh_TW/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/ssn/zh_TW/__init__.py -------------------------------------------------------------------------------- /faker/providers/user_agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/user_agent/__init__.py -------------------------------------------------------------------------------- /faker/providers/user_agent/en_US/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/providers/user_agent/en_US/__init__.py -------------------------------------------------------------------------------- /faker/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/utils/__init__.py -------------------------------------------------------------------------------- /faker/utils/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/utils/datasets.py -------------------------------------------------------------------------------- /faker/utils/datetime_safe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/utils/datetime_safe.py -------------------------------------------------------------------------------- /faker/utils/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/utils/decorators.py -------------------------------------------------------------------------------- /faker/utils/distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/utils/distribution.py -------------------------------------------------------------------------------- /faker/utils/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/utils/loading.py -------------------------------------------------------------------------------- /faker/utils/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/faker/utils/text.py -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/mymodule/__init__.py: -------------------------------------------------------------------------------- 1 | localized = True 2 | -------------------------------------------------------------------------------- /tests/mymodule/en_US/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/tests/mymodule/en_US/__init__.py -------------------------------------------------------------------------------- /tests/providers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/tests/providers/__init__.py -------------------------------------------------------------------------------- /tests/providers/test_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/tests/providers/test_address.py -------------------------------------------------------------------------------- /tests/providers/test_automotive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/tests/providers/test_automotive.py -------------------------------------------------------------------------------- /tests/providers/test_bank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/tests/providers/test_bank.py -------------------------------------------------------------------------------- /tests/providers/test_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/tests/providers/test_color.py -------------------------------------------------------------------------------- /tests/providers/test_company.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/tests/providers/test_company.py -------------------------------------------------------------------------------- /tests/providers/test_currency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/tests/providers/test_currency.py -------------------------------------------------------------------------------- /tests/providers/test_date_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/tests/providers/test_date_time.py -------------------------------------------------------------------------------- /tests/providers/test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/tests/providers/test_file.py -------------------------------------------------------------------------------- /tests/providers/test_internet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/tests/providers/test_internet.py -------------------------------------------------------------------------------- /tests/providers/test_isbn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/tests/providers/test_isbn.py -------------------------------------------------------------------------------- /tests/providers/test_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/tests/providers/test_job.py -------------------------------------------------------------------------------- /tests/providers/test_person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/tests/providers/test_person.py -------------------------------------------------------------------------------- /tests/providers/test_phone_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/tests/providers/test_phone_number.py -------------------------------------------------------------------------------- /tests/providers/test_ssn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/tests/providers/test_ssn.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/test_base_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/tests/test_base_provider.py -------------------------------------------------------------------------------- /tests/test_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/tests/test_factory.py -------------------------------------------------------------------------------- /tests/test_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/tests/test_generator.py -------------------------------------------------------------------------------- /tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/random_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/tests/utils/random_state.json -------------------------------------------------------------------------------- /tests/utils/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/tests/utils/test_utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyup-bot/faker/HEAD/tox.ini --------------------------------------------------------------------------------